5263 lines
2.7 MiB
5263 lines
2.7 MiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>leaflet</title>
|
|
<style type="text/css">@layer htmltools {
|
|
.html-fill-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
min-height: 0;
|
|
min-width: 0;
|
|
}
|
|
.html-fill-container > .html-fill-item {
|
|
|
|
flex: 1 1 auto;
|
|
min-height: 0;
|
|
min-width: 0;
|
|
}
|
|
.html-fill-container > :not(.html-fill-item) {
|
|
|
|
flex: 0 0 auto;
|
|
}
|
|
}
|
|
</style>
|
|
<script>(function() {
|
|
// If window.HTMLWidgets is already defined, then use it; otherwise create a
|
|
// new object. This allows preceding code to set options that affect the
|
|
// initialization process (though none currently exist).
|
|
window.HTMLWidgets = window.HTMLWidgets || {};
|
|
|
|
// See if we're running in a viewer pane. If not, we're in a web browser.
|
|
var viewerMode = window.HTMLWidgets.viewerMode =
|
|
/\bviewer_pane=1\b/.test(window.location);
|
|
|
|
// See if we're running in Shiny mode. If not, it's a static document.
|
|
// Note that static widgets can appear in both Shiny and static modes, but
|
|
// obviously, Shiny widgets can only appear in Shiny apps/documents.
|
|
var shinyMode = window.HTMLWidgets.shinyMode =
|
|
typeof(window.Shiny) !== "undefined" && !!window.Shiny.outputBindings;
|
|
|
|
// We can't count on jQuery being available, so we implement our own
|
|
// version if necessary.
|
|
function querySelectorAll(scope, selector) {
|
|
if (typeof(jQuery) !== "undefined" && scope instanceof jQuery) {
|
|
return scope.find(selector);
|
|
}
|
|
if (scope.querySelectorAll) {
|
|
return scope.querySelectorAll(selector);
|
|
}
|
|
}
|
|
|
|
function asArray(value) {
|
|
if (value === null)
|
|
return [];
|
|
if ($.isArray(value))
|
|
return value;
|
|
return [value];
|
|
}
|
|
|
|
// Implement jQuery's extend
|
|
function extend(target /*, ... */) {
|
|
if (arguments.length == 1) {
|
|
return target;
|
|
}
|
|
for (var i = 1; i < arguments.length; i++) {
|
|
var source = arguments[i];
|
|
for (var prop in source) {
|
|
if (source.hasOwnProperty(prop)) {
|
|
target[prop] = source[prop];
|
|
}
|
|
}
|
|
}
|
|
return target;
|
|
}
|
|
|
|
// IE8 doesn't support Array.forEach.
|
|
function forEach(values, callback, thisArg) {
|
|
if (values.forEach) {
|
|
values.forEach(callback, thisArg);
|
|
} else {
|
|
for (var i = 0; i < values.length; i++) {
|
|
callback.call(thisArg, values[i], i, values);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Replaces the specified method with the return value of funcSource.
|
|
//
|
|
// Note that funcSource should not BE the new method, it should be a function
|
|
// that RETURNS the new method. funcSource receives a single argument that is
|
|
// the overridden method, it can be called from the new method. The overridden
|
|
// method can be called like a regular function, it has the target permanently
|
|
// bound to it so "this" will work correctly.
|
|
function overrideMethod(target, methodName, funcSource) {
|
|
var superFunc = target[methodName] || function() {};
|
|
var superFuncBound = function() {
|
|
return superFunc.apply(target, arguments);
|
|
};
|
|
target[methodName] = funcSource(superFuncBound);
|
|
}
|
|
|
|
// Add a method to delegator that, when invoked, calls
|
|
// delegatee.methodName. If there is no such method on
|
|
// the delegatee, but there was one on delegator before
|
|
// delegateMethod was called, then the original version
|
|
// is invoked instead.
|
|
// For example:
|
|
//
|
|
// var a = {
|
|
// method1: function() { console.log('a1'); }
|
|
// method2: function() { console.log('a2'); }
|
|
// };
|
|
// var b = {
|
|
// method1: function() { console.log('b1'); }
|
|
// };
|
|
// delegateMethod(a, b, "method1");
|
|
// delegateMethod(a, b, "method2");
|
|
// a.method1();
|
|
// a.method2();
|
|
//
|
|
// The output would be "b1", "a2".
|
|
function delegateMethod(delegator, delegatee, methodName) {
|
|
var inherited = delegator[methodName];
|
|
delegator[methodName] = function() {
|
|
var target = delegatee;
|
|
var method = delegatee[methodName];
|
|
|
|
// The method doesn't exist on the delegatee. Instead,
|
|
// call the method on the delegator, if it exists.
|
|
if (!method) {
|
|
target = delegator;
|
|
method = inherited;
|
|
}
|
|
|
|
if (method) {
|
|
return method.apply(target, arguments);
|
|
}
|
|
};
|
|
}
|
|
|
|
// Implement a vague facsimilie of jQuery's data method
|
|
function elementData(el, name, value) {
|
|
if (arguments.length == 2) {
|
|
return el["htmlwidget_data_" + name];
|
|
} else if (arguments.length == 3) {
|
|
el["htmlwidget_data_" + name] = value;
|
|
return el;
|
|
} else {
|
|
throw new Error("Wrong number of arguments for elementData: " +
|
|
arguments.length);
|
|
}
|
|
}
|
|
|
|
// http://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex
|
|
function escapeRegExp(str) {
|
|
return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
|
|
}
|
|
|
|
function hasClass(el, className) {
|
|
var re = new RegExp("\\b" + escapeRegExp(className) + "\\b");
|
|
return re.test(el.className);
|
|
}
|
|
|
|
// elements - array (or array-like object) of HTML elements
|
|
// className - class name to test for
|
|
// include - if true, only return elements with given className;
|
|
// if false, only return elements *without* given className
|
|
function filterByClass(elements, className, include) {
|
|
var results = [];
|
|
for (var i = 0; i < elements.length; i++) {
|
|
if (hasClass(elements[i], className) == include)
|
|
results.push(elements[i]);
|
|
}
|
|
return results;
|
|
}
|
|
|
|
function on(obj, eventName, func) {
|
|
if (obj.addEventListener) {
|
|
obj.addEventListener(eventName, func, false);
|
|
} else if (obj.attachEvent) {
|
|
obj.attachEvent(eventName, func);
|
|
}
|
|
}
|
|
|
|
function off(obj, eventName, func) {
|
|
if (obj.removeEventListener)
|
|
obj.removeEventListener(eventName, func, false);
|
|
else if (obj.detachEvent) {
|
|
obj.detachEvent(eventName, func);
|
|
}
|
|
}
|
|
|
|
// Translate array of values to top/right/bottom/left, as usual with
|
|
// the "padding" CSS property
|
|
// https://developer.mozilla.org/en-US/docs/Web/CSS/padding
|
|
function unpackPadding(value) {
|
|
if (typeof(value) === "number")
|
|
value = [value];
|
|
if (value.length === 1) {
|
|
return {top: value[0], right: value[0], bottom: value[0], left: value[0]};
|
|
}
|
|
if (value.length === 2) {
|
|
return {top: value[0], right: value[1], bottom: value[0], left: value[1]};
|
|
}
|
|
if (value.length === 3) {
|
|
return {top: value[0], right: value[1], bottom: value[2], left: value[1]};
|
|
}
|
|
if (value.length === 4) {
|
|
return {top: value[0], right: value[1], bottom: value[2], left: value[3]};
|
|
}
|
|
}
|
|
|
|
// Convert an unpacked padding object to a CSS value
|
|
function paddingToCss(paddingObj) {
|
|
return paddingObj.top + "px " + paddingObj.right + "px " + paddingObj.bottom + "px " + paddingObj.left + "px";
|
|
}
|
|
|
|
// Makes a number suitable for CSS
|
|
function px(x) {
|
|
if (typeof(x) === "number")
|
|
return x + "px";
|
|
else
|
|
return x;
|
|
}
|
|
|
|
// Retrieves runtime widget sizing information for an element.
|
|
// The return value is either null, or an object with fill, padding,
|
|
// defaultWidth, defaultHeight fields.
|
|
function sizingPolicy(el) {
|
|
var sizingEl = document.querySelector("script[data-for='" + el.id + "'][type='application/htmlwidget-sizing']");
|
|
if (!sizingEl)
|
|
return null;
|
|
var sp = JSON.parse(sizingEl.textContent || sizingEl.text || "{}");
|
|
if (viewerMode) {
|
|
return sp.viewer;
|
|
} else {
|
|
return sp.browser;
|
|
}
|
|
}
|
|
|
|
// @param tasks Array of strings (or falsy value, in which case no-op).
|
|
// Each element must be a valid JavaScript expression that yields a
|
|
// function. Or, can be an array of objects with "code" and "data"
|
|
// properties; in this case, the "code" property should be a string
|
|
// of JS that's an expr that yields a function, and "data" should be
|
|
// an object that will be added as an additional argument when that
|
|
// function is called.
|
|
// @param target The object that will be "this" for each function
|
|
// execution.
|
|
// @param args Array of arguments to be passed to the functions. (The
|
|
// same arguments will be passed to all functions.)
|
|
function evalAndRun(tasks, target, args) {
|
|
if (tasks) {
|
|
forEach(tasks, function(task) {
|
|
var theseArgs = args;
|
|
if (typeof(task) === "object") {
|
|
theseArgs = theseArgs.concat([task.data]);
|
|
task = task.code;
|
|
}
|
|
var taskFunc = tryEval(task);
|
|
if (typeof(taskFunc) !== "function") {
|
|
throw new Error("Task must be a function! Source:\n" + task);
|
|
}
|
|
taskFunc.apply(target, theseArgs);
|
|
});
|
|
}
|
|
}
|
|
|
|
// Attempt eval() both with and without enclosing in parentheses.
|
|
// Note that enclosing coerces a function declaration into
|
|
// an expression that eval() can parse
|
|
// (otherwise, a SyntaxError is thrown)
|
|
function tryEval(code) {
|
|
var result = null;
|
|
try {
|
|
result = eval("(" + code + ")");
|
|
} catch(error) {
|
|
if (!(error instanceof SyntaxError)) {
|
|
throw error;
|
|
}
|
|
try {
|
|
result = eval(code);
|
|
} catch(e) {
|
|
if (e instanceof SyntaxError) {
|
|
throw error;
|
|
} else {
|
|
throw e;
|
|
}
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
function initSizing(el) {
|
|
var sizing = sizingPolicy(el);
|
|
if (!sizing)
|
|
return;
|
|
|
|
var cel = document.getElementById("htmlwidget_container");
|
|
if (!cel)
|
|
return;
|
|
|
|
if (typeof(sizing.padding) !== "undefined") {
|
|
document.body.style.margin = "0";
|
|
document.body.style.padding = paddingToCss(unpackPadding(sizing.padding));
|
|
}
|
|
|
|
if (sizing.fill) {
|
|
document.body.style.overflow = "hidden";
|
|
document.body.style.width = "100%";
|
|
document.body.style.height = "100%";
|
|
document.documentElement.style.width = "100%";
|
|
document.documentElement.style.height = "100%";
|
|
cel.style.position = "absolute";
|
|
var pad = unpackPadding(sizing.padding);
|
|
cel.style.top = pad.top + "px";
|
|
cel.style.right = pad.right + "px";
|
|
cel.style.bottom = pad.bottom + "px";
|
|
cel.style.left = pad.left + "px";
|
|
el.style.width = "100%";
|
|
el.style.height = "100%";
|
|
|
|
return {
|
|
getWidth: function() { return cel.getBoundingClientRect().width; },
|
|
getHeight: function() { return cel.getBoundingClientRect().height; }
|
|
};
|
|
|
|
} else {
|
|
el.style.width = px(sizing.width);
|
|
el.style.height = px(sizing.height);
|
|
|
|
return {
|
|
getWidth: function() { return cel.getBoundingClientRect().width; },
|
|
getHeight: function() { return cel.getBoundingClientRect().height; }
|
|
};
|
|
}
|
|
}
|
|
|
|
// Default implementations for methods
|
|
var defaults = {
|
|
find: function(scope) {
|
|
return querySelectorAll(scope, "." + this.name);
|
|
},
|
|
renderError: function(el, err) {
|
|
var $el = $(el);
|
|
|
|
this.clearError(el);
|
|
|
|
// Add all these error classes, as Shiny does
|
|
var errClass = "shiny-output-error";
|
|
if (err.type !== null) {
|
|
// use the classes of the error condition as CSS class names
|
|
errClass = errClass + " " + $.map(asArray(err.type), function(type) {
|
|
return errClass + "-" + type;
|
|
}).join(" ");
|
|
}
|
|
errClass = errClass + " htmlwidgets-error";
|
|
|
|
// Is el inline or block? If inline or inline-block, just display:none it
|
|
// and add an inline error.
|
|
var display = $el.css("display");
|
|
$el.data("restore-display-mode", display);
|
|
|
|
if (display === "inline" || display === "inline-block") {
|
|
$el.hide();
|
|
if (err.message !== "") {
|
|
var errorSpan = $("<span>").addClass(errClass);
|
|
errorSpan.text(err.message);
|
|
$el.after(errorSpan);
|
|
}
|
|
} else if (display === "block") {
|
|
// If block, add an error just after the el, set visibility:none on the
|
|
// el, and position the error to be on top of the el.
|
|
// Mark it with a unique ID and CSS class so we can remove it later.
|
|
$el.css("visibility", "hidden");
|
|
if (err.message !== "") {
|
|
var errorDiv = $("<div>").addClass(errClass).css("position", "absolute")
|
|
.css("top", el.offsetTop)
|
|
.css("left", el.offsetLeft)
|
|
// setting width can push out the page size, forcing otherwise
|
|
// unnecessary scrollbars to appear and making it impossible for
|
|
// the element to shrink; so use max-width instead
|
|
.css("maxWidth", el.offsetWidth)
|
|
.css("height", el.offsetHeight);
|
|
errorDiv.text(err.message);
|
|
$el.after(errorDiv);
|
|
|
|
// Really dumb way to keep the size/position of the error in sync with
|
|
// the parent element as the window is resized or whatever.
|
|
var intId = setInterval(function() {
|
|
if (!errorDiv[0].parentElement) {
|
|
clearInterval(intId);
|
|
return;
|
|
}
|
|
errorDiv
|
|
.css("top", el.offsetTop)
|
|
.css("left", el.offsetLeft)
|
|
.css("maxWidth", el.offsetWidth)
|
|
.css("height", el.offsetHeight);
|
|
}, 500);
|
|
}
|
|
}
|
|
},
|
|
clearError: function(el) {
|
|
var $el = $(el);
|
|
var display = $el.data("restore-display-mode");
|
|
$el.data("restore-display-mode", null);
|
|
|
|
if (display === "inline" || display === "inline-block") {
|
|
if (display)
|
|
$el.css("display", display);
|
|
$(el.nextSibling).filter(".htmlwidgets-error").remove();
|
|
} else if (display === "block"){
|
|
$el.css("visibility", "inherit");
|
|
$(el.nextSibling).filter(".htmlwidgets-error").remove();
|
|
}
|
|
},
|
|
sizing: {}
|
|
};
|
|
|
|
// Called by widget bindings to register a new type of widget. The definition
|
|
// object can contain the following properties:
|
|
// - name (required) - A string indicating the binding name, which will be
|
|
// used by default as the CSS classname to look for.
|
|
// - initialize (optional) - A function(el) that will be called once per
|
|
// widget element; if a value is returned, it will be passed as the third
|
|
// value to renderValue.
|
|
// - renderValue (required) - A function(el, data, initValue) that will be
|
|
// called with data. Static contexts will cause this to be called once per
|
|
// element; Shiny apps will cause this to be called multiple times per
|
|
// element, as the data changes.
|
|
window.HTMLWidgets.widget = function(definition) {
|
|
if (!definition.name) {
|
|
throw new Error("Widget must have a name");
|
|
}
|
|
if (!definition.type) {
|
|
throw new Error("Widget must have a type");
|
|
}
|
|
// Currently we only support output widgets
|
|
if (definition.type !== "output") {
|
|
throw new Error("Unrecognized widget type '" + definition.type + "'");
|
|
}
|
|
// TODO: Verify that .name is a valid CSS classname
|
|
|
|
// Support new-style instance-bound definitions. Old-style class-bound
|
|
// definitions have one widget "object" per widget per type/class of
|
|
// widget; the renderValue and resize methods on such widget objects
|
|
// take el and instance arguments, because the widget object can't
|
|
// store them. New-style instance-bound definitions have one widget
|
|
// object per widget instance; the definition that's passed in doesn't
|
|
// provide renderValue or resize methods at all, just the single method
|
|
// factory(el, width, height)
|
|
// which returns an object that has renderValue(x) and resize(w, h).
|
|
// This enables a far more natural programming style for the widget
|
|
// author, who can store per-instance state using either OO-style
|
|
// instance fields or functional-style closure variables (I guess this
|
|
// is in contrast to what can only be called C-style pseudo-OO which is
|
|
// what we required before).
|
|
if (definition.factory) {
|
|
definition = createLegacyDefinitionAdapter(definition);
|
|
}
|
|
|
|
if (!definition.renderValue) {
|
|
throw new Error("Widget must have a renderValue function");
|
|
}
|
|
|
|
// For static rendering (non-Shiny), use a simple widget registration
|
|
// scheme. We also use this scheme for Shiny apps/documents that also
|
|
// contain static widgets.
|
|
window.HTMLWidgets.widgets = window.HTMLWidgets.widgets || [];
|
|
// Merge defaults into the definition; don't mutate the original definition.
|
|
var staticBinding = extend({}, defaults, definition);
|
|
overrideMethod(staticBinding, "find", function(superfunc) {
|
|
return function(scope) {
|
|
var results = superfunc(scope);
|
|
// Filter out Shiny outputs, we only want the static kind
|
|
return filterByClass(results, "html-widget-output", false);
|
|
};
|
|
});
|
|
window.HTMLWidgets.widgets.push(staticBinding);
|
|
|
|
if (shinyMode) {
|
|
// Shiny is running. Register the definition with an output binding.
|
|
// The definition itself will not be the output binding, instead
|
|
// we will make an output binding object that delegates to the
|
|
// definition. This is because we foolishly used the same method
|
|
// name (renderValue) for htmlwidgets definition and Shiny bindings
|
|
// but they actually have quite different semantics (the Shiny
|
|
// bindings receive data that includes lots of metadata that it
|
|
// strips off before calling htmlwidgets renderValue). We can't
|
|
// just ignore the difference because in some widgets it's helpful
|
|
// to call this.renderValue() from inside of resize(), and if
|
|
// we're not delegating, then that call will go to the Shiny
|
|
// version instead of the htmlwidgets version.
|
|
|
|
// Merge defaults with definition, without mutating either.
|
|
var bindingDef = extend({}, defaults, definition);
|
|
|
|
// This object will be our actual Shiny binding.
|
|
var shinyBinding = new Shiny.OutputBinding();
|
|
|
|
// With a few exceptions, we'll want to simply use the bindingDef's
|
|
// version of methods if they are available, otherwise fall back to
|
|
// Shiny's defaults. NOTE: If Shiny's output bindings gain additional
|
|
// methods in the future, and we want them to be overrideable by
|
|
// HTMLWidget binding definitions, then we'll need to add them to this
|
|
// list.
|
|
delegateMethod(shinyBinding, bindingDef, "getId");
|
|
delegateMethod(shinyBinding, bindingDef, "onValueChange");
|
|
delegateMethod(shinyBinding, bindingDef, "onValueError");
|
|
delegateMethod(shinyBinding, bindingDef, "renderError");
|
|
delegateMethod(shinyBinding, bindingDef, "clearError");
|
|
delegateMethod(shinyBinding, bindingDef, "showProgress");
|
|
|
|
// The find, renderValue, and resize are handled differently, because we
|
|
// want to actually decorate the behavior of the bindingDef methods.
|
|
|
|
shinyBinding.find = function(scope) {
|
|
var results = bindingDef.find(scope);
|
|
|
|
// Only return elements that are Shiny outputs, not static ones
|
|
var dynamicResults = results.filter(".html-widget-output");
|
|
|
|
// It's possible that whatever caused Shiny to think there might be
|
|
// new dynamic outputs, also caused there to be new static outputs.
|
|
// Since there might be lots of different htmlwidgets bindings, we
|
|
// schedule execution for later--no need to staticRender multiple
|
|
// times.
|
|
if (results.length !== dynamicResults.length)
|
|
scheduleStaticRender();
|
|
|
|
return dynamicResults;
|
|
};
|
|
|
|
// Wrap renderValue to handle initialization, which unfortunately isn't
|
|
// supported natively by Shiny at the time of this writing.
|
|
|
|
shinyBinding.renderValue = function(el, data) {
|
|
Shiny.renderDependencies(data.deps);
|
|
// Resolve strings marked as javascript literals to objects
|
|
if (!(data.evals instanceof Array)) data.evals = [data.evals];
|
|
for (var i = 0; data.evals && i < data.evals.length; i++) {
|
|
window.HTMLWidgets.evaluateStringMember(data.x, data.evals[i]);
|
|
}
|
|
if (!bindingDef.renderOnNullValue) {
|
|
if (data.x === null) {
|
|
el.style.visibility = "hidden";
|
|
return;
|
|
} else {
|
|
el.style.visibility = "inherit";
|
|
}
|
|
}
|
|
if (!elementData(el, "initialized")) {
|
|
initSizing(el);
|
|
|
|
elementData(el, "initialized", true);
|
|
if (bindingDef.initialize) {
|
|
var rect = el.getBoundingClientRect();
|
|
var result = bindingDef.initialize(el, rect.width, rect.height);
|
|
elementData(el, "init_result", result);
|
|
}
|
|
}
|
|
bindingDef.renderValue(el, data.x, elementData(el, "init_result"));
|
|
evalAndRun(data.jsHooks.render, elementData(el, "init_result"), [el, data.x]);
|
|
};
|
|
|
|
// Only override resize if bindingDef implements it
|
|
if (bindingDef.resize) {
|
|
shinyBinding.resize = function(el, width, height) {
|
|
// Shiny can call resize before initialize/renderValue have been
|
|
// called, which doesn't make sense for widgets.
|
|
if (elementData(el, "initialized")) {
|
|
bindingDef.resize(el, width, height, elementData(el, "init_result"));
|
|
}
|
|
};
|
|
}
|
|
|
|
Shiny.outputBindings.register(shinyBinding, bindingDef.name);
|
|
}
|
|
};
|
|
|
|
var scheduleStaticRenderTimerId = null;
|
|
function scheduleStaticRender() {
|
|
if (!scheduleStaticRenderTimerId) {
|
|
scheduleStaticRenderTimerId = setTimeout(function() {
|
|
scheduleStaticRenderTimerId = null;
|
|
window.HTMLWidgets.staticRender();
|
|
}, 1);
|
|
}
|
|
}
|
|
|
|
// Render static widgets after the document finishes loading
|
|
// Statically render all elements that are of this widget's class
|
|
window.HTMLWidgets.staticRender = function() {
|
|
var bindings = window.HTMLWidgets.widgets || [];
|
|
forEach(bindings, function(binding) {
|
|
var matches = binding.find(document.documentElement);
|
|
forEach(matches, function(el) {
|
|
var sizeObj = initSizing(el, binding);
|
|
|
|
var getSize = function(el) {
|
|
if (sizeObj) {
|
|
return {w: sizeObj.getWidth(), h: sizeObj.getHeight()}
|
|
} else {
|
|
var rect = el.getBoundingClientRect();
|
|
return {w: rect.width, h: rect.height}
|
|
}
|
|
};
|
|
|
|
if (hasClass(el, "html-widget-static-bound"))
|
|
return;
|
|
el.className = el.className + " html-widget-static-bound";
|
|
|
|
var initResult;
|
|
if (binding.initialize) {
|
|
var size = getSize(el);
|
|
initResult = binding.initialize(el, size.w, size.h);
|
|
elementData(el, "init_result", initResult);
|
|
}
|
|
|
|
if (binding.resize) {
|
|
var lastSize = getSize(el);
|
|
var resizeHandler = function(e) {
|
|
var size = getSize(el);
|
|
if (size.w === 0 && size.h === 0)
|
|
return;
|
|
if (size.w === lastSize.w && size.h === lastSize.h)
|
|
return;
|
|
lastSize = size;
|
|
binding.resize(el, size.w, size.h, initResult);
|
|
};
|
|
|
|
on(window, "resize", resizeHandler);
|
|
|
|
// This is needed for cases where we're running in a Shiny
|
|
// app, but the widget itself is not a Shiny output, but
|
|
// rather a simple static widget. One example of this is
|
|
// an rmarkdown document that has runtime:shiny and widget
|
|
// that isn't in a render function. Shiny only knows to
|
|
// call resize handlers for Shiny outputs, not for static
|
|
// widgets, so we do it ourselves.
|
|
if (window.jQuery) {
|
|
window.jQuery(document).on(
|
|
"shown.htmlwidgets shown.bs.tab.htmlwidgets shown.bs.collapse.htmlwidgets",
|
|
resizeHandler
|
|
);
|
|
window.jQuery(document).on(
|
|
"hidden.htmlwidgets hidden.bs.tab.htmlwidgets hidden.bs.collapse.htmlwidgets",
|
|
resizeHandler
|
|
);
|
|
}
|
|
|
|
// This is needed for the specific case of ioslides, which
|
|
// flips slides between display:none and display:block.
|
|
// Ideally we would not have to have ioslide-specific code
|
|
// here, but rather have ioslides raise a generic event,
|
|
// but the rmarkdown package just went to CRAN so the
|
|
// window to getting that fixed may be long.
|
|
if (window.addEventListener) {
|
|
// It's OK to limit this to window.addEventListener
|
|
// browsers because ioslides itself only supports
|
|
// such browsers.
|
|
on(document, "slideenter", resizeHandler);
|
|
on(document, "slideleave", resizeHandler);
|
|
}
|
|
}
|
|
|
|
var scriptData = document.querySelector("script[data-for='" + el.id + "'][type='application/json']");
|
|
if (scriptData) {
|
|
var data = JSON.parse(scriptData.textContent || scriptData.text);
|
|
// Resolve strings marked as javascript literals to objects
|
|
if (!(data.evals instanceof Array)) data.evals = [data.evals];
|
|
for (var k = 0; data.evals && k < data.evals.length; k++) {
|
|
window.HTMLWidgets.evaluateStringMember(data.x, data.evals[k]);
|
|
}
|
|
binding.renderValue(el, data.x, initResult);
|
|
evalAndRun(data.jsHooks.render, initResult, [el, data.x]);
|
|
}
|
|
});
|
|
});
|
|
|
|
invokePostRenderHandlers();
|
|
}
|
|
|
|
|
|
function has_jQuery3() {
|
|
if (!window.jQuery) {
|
|
return false;
|
|
}
|
|
var $version = window.jQuery.fn.jquery;
|
|
var $major_version = parseInt($version.split(".")[0]);
|
|
return $major_version >= 3;
|
|
}
|
|
|
|
/*
|
|
/ Shiny 1.4 bumped jQuery from 1.x to 3.x which means jQuery's
|
|
/ on-ready handler (i.e., $(fn)) is now asyncronous (i.e., it now
|
|
/ really means $(setTimeout(fn)).
|
|
/ https://jquery.com/upgrade-guide/3.0/#breaking-change-document-ready-handlers-are-now-asynchronous
|
|
/
|
|
/ Since Shiny uses $() to schedule initShiny, shiny>=1.4 calls initShiny
|
|
/ one tick later than it did before, which means staticRender() is
|
|
/ called renderValue() earlier than (advanced) widget authors might be expecting.
|
|
/ https://github.com/rstudio/shiny/issues/2630
|
|
/
|
|
/ For a concrete example, leaflet has some methods (e.g., updateBounds)
|
|
/ which reference Shiny methods registered in initShiny (e.g., setInputValue).
|
|
/ Since leaflet is privy to this life-cycle, it knows to use setTimeout() to
|
|
/ delay execution of those methods (until Shiny methods are ready)
|
|
/ https://github.com/rstudio/leaflet/blob/18ec981/javascript/src/index.js#L266-L268
|
|
/
|
|
/ Ideally widget authors wouldn't need to use this setTimeout() hack that
|
|
/ leaflet uses to call Shiny methods on a staticRender(). In the long run,
|
|
/ the logic initShiny should be broken up so that method registration happens
|
|
/ right away, but binding happens later.
|
|
*/
|
|
function maybeStaticRenderLater() {
|
|
if (shinyMode && has_jQuery3()) {
|
|
window.jQuery(window.HTMLWidgets.staticRender);
|
|
} else {
|
|
window.HTMLWidgets.staticRender();
|
|
}
|
|
}
|
|
|
|
if (document.addEventListener) {
|
|
document.addEventListener("DOMContentLoaded", function() {
|
|
document.removeEventListener("DOMContentLoaded", arguments.callee, false);
|
|
maybeStaticRenderLater();
|
|
}, false);
|
|
} else if (document.attachEvent) {
|
|
document.attachEvent("onreadystatechange", function() {
|
|
if (document.readyState === "complete") {
|
|
document.detachEvent("onreadystatechange", arguments.callee);
|
|
maybeStaticRenderLater();
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
window.HTMLWidgets.getAttachmentUrl = function(depname, key) {
|
|
// If no key, default to the first item
|
|
if (typeof(key) === "undefined")
|
|
key = 1;
|
|
|
|
var link = document.getElementById(depname + "-" + key + "-attachment");
|
|
if (!link) {
|
|
throw new Error("Attachment " + depname + "/" + key + " not found in document");
|
|
}
|
|
return link.getAttribute("href");
|
|
};
|
|
|
|
window.HTMLWidgets.dataframeToD3 = function(df) {
|
|
var names = [];
|
|
var length;
|
|
for (var name in df) {
|
|
if (df.hasOwnProperty(name))
|
|
names.push(name);
|
|
if (typeof(df[name]) !== "object" || typeof(df[name].length) === "undefined") {
|
|
throw new Error("All fields must be arrays");
|
|
} else if (typeof(length) !== "undefined" && length !== df[name].length) {
|
|
throw new Error("All fields must be arrays of the same length");
|
|
}
|
|
length = df[name].length;
|
|
}
|
|
var results = [];
|
|
var item;
|
|
for (var row = 0; row < length; row++) {
|
|
item = {};
|
|
for (var col = 0; col < names.length; col++) {
|
|
item[names[col]] = df[names[col]][row];
|
|
}
|
|
results.push(item);
|
|
}
|
|
return results;
|
|
};
|
|
|
|
window.HTMLWidgets.transposeArray2D = function(array) {
|
|
if (array.length === 0) return array;
|
|
var newArray = array[0].map(function(col, i) {
|
|
return array.map(function(row) {
|
|
return row[i]
|
|
})
|
|
});
|
|
return newArray;
|
|
};
|
|
// Split value at splitChar, but allow splitChar to be escaped
|
|
// using escapeChar. Any other characters escaped by escapeChar
|
|
// will be included as usual (including escapeChar itself).
|
|
function splitWithEscape(value, splitChar, escapeChar) {
|
|
var results = [];
|
|
var escapeMode = false;
|
|
var currentResult = "";
|
|
for (var pos = 0; pos < value.length; pos++) {
|
|
if (!escapeMode) {
|
|
if (value[pos] === splitChar) {
|
|
results.push(currentResult);
|
|
currentResult = "";
|
|
} else if (value[pos] === escapeChar) {
|
|
escapeMode = true;
|
|
} else {
|
|
currentResult += value[pos];
|
|
}
|
|
} else {
|
|
currentResult += value[pos];
|
|
escapeMode = false;
|
|
}
|
|
}
|
|
if (currentResult !== "") {
|
|
results.push(currentResult);
|
|
}
|
|
return results;
|
|
}
|
|
// Function authored by Yihui/JJ Allaire
|
|
window.HTMLWidgets.evaluateStringMember = function(o, member) {
|
|
var parts = splitWithEscape(member, '.', '\\');
|
|
for (var i = 0, l = parts.length; i < l; i++) {
|
|
var part = parts[i];
|
|
// part may be a character or 'numeric' member name
|
|
if (o !== null && typeof o === "object" && part in o) {
|
|
if (i == (l - 1)) { // if we are at the end of the line then evalulate
|
|
if (typeof o[part] === "string")
|
|
o[part] = tryEval(o[part]);
|
|
} else { // otherwise continue to next embedded object
|
|
o = o[part];
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
// Retrieve the HTMLWidget instance (i.e. the return value of an
|
|
// HTMLWidget binding's initialize() or factory() function)
|
|
// associated with an element, or null if none.
|
|
window.HTMLWidgets.getInstance = function(el) {
|
|
return elementData(el, "init_result");
|
|
};
|
|
|
|
// Finds the first element in the scope that matches the selector,
|
|
// and returns the HTMLWidget instance (i.e. the return value of
|
|
// an HTMLWidget binding's initialize() or factory() function)
|
|
// associated with that element, if any. If no element matches the
|
|
// selector, or the first matching element has no HTMLWidget
|
|
// instance associated with it, then null is returned.
|
|
//
|
|
// The scope argument is optional, and defaults to window.document.
|
|
window.HTMLWidgets.find = function(scope, selector) {
|
|
if (arguments.length == 1) {
|
|
selector = scope;
|
|
scope = document;
|
|
}
|
|
|
|
var el = scope.querySelector(selector);
|
|
if (el === null) {
|
|
return null;
|
|
} else {
|
|
return window.HTMLWidgets.getInstance(el);
|
|
}
|
|
};
|
|
|
|
// Finds all elements in the scope that match the selector, and
|
|
// returns the HTMLWidget instances (i.e. the return values of
|
|
// an HTMLWidget binding's initialize() or factory() function)
|
|
// associated with the elements, in an array. If elements that
|
|
// match the selector don't have an associated HTMLWidget
|
|
// instance, the returned array will contain nulls.
|
|
//
|
|
// The scope argument is optional, and defaults to window.document.
|
|
window.HTMLWidgets.findAll = function(scope, selector) {
|
|
if (arguments.length == 1) {
|
|
selector = scope;
|
|
scope = document;
|
|
}
|
|
|
|
var nodes = scope.querySelectorAll(selector);
|
|
var results = [];
|
|
for (var i = 0; i < nodes.length; i++) {
|
|
results.push(window.HTMLWidgets.getInstance(nodes[i]));
|
|
}
|
|
return results;
|
|
};
|
|
|
|
var postRenderHandlers = [];
|
|
function invokePostRenderHandlers() {
|
|
while (postRenderHandlers.length) {
|
|
var handler = postRenderHandlers.shift();
|
|
if (handler) {
|
|
handler();
|
|
}
|
|
}
|
|
}
|
|
|
|
// Register the given callback function to be invoked after the
|
|
// next time static widgets are rendered.
|
|
window.HTMLWidgets.addPostRenderHandler = function(callback) {
|
|
postRenderHandlers.push(callback);
|
|
};
|
|
|
|
// Takes a new-style instance-bound definition, and returns an
|
|
// old-style class-bound definition. This saves us from having
|
|
// to rewrite all the logic in this file to accomodate both
|
|
// types of definitions.
|
|
function createLegacyDefinitionAdapter(defn) {
|
|
var result = {
|
|
name: defn.name,
|
|
type: defn.type,
|
|
initialize: function(el, width, height) {
|
|
return defn.factory(el, width, height);
|
|
},
|
|
renderValue: function(el, x, instance) {
|
|
return instance.renderValue(x);
|
|
},
|
|
resize: function(el, width, height, instance) {
|
|
return instance.resize(width, height);
|
|
}
|
|
};
|
|
|
|
if (defn.find)
|
|
result.find = defn.find;
|
|
if (defn.renderError)
|
|
result.renderError = defn.renderError;
|
|
if (defn.clearError)
|
|
result.clearError = defn.clearError;
|
|
|
|
return result;
|
|
}
|
|
})();
|
|
</script>
|
|
<script>/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */
|
|
!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}S.fn=S.prototype={jquery:f,constructor:S,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(n){return this.pushStack(S.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(S.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(S.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},S.extend=S.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(S.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||S.isPlainObject(n)?n:{},i=!1,a[t]=S.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},S.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){b(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(p(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(p(Object(e))?S.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:y}),"function"==typeof Symbol&&(S.fn[Symbol.iterator]=t[Symbol.iterator]),S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,S="sizzle"+1*new Date,p=n.document,k=0,r=0,m=ue(),x=ue(),A=ue(),N=ue(),j=function(e,t){return e===t&&(l=!0),0},D={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",F=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",B=new RegExp(M+"+","g"),$=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="<a id='"+S+"'></a><select id='"+S+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!=C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&D.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(j),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(B," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[k,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[k,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[S]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace($,"$1"));return s[S]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[k,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[S]||(e[S]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===k&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[S]&&(v=Ce(v)),y&&!y[S]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[S]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace($,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace($," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=A[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[S]?i.push(a):o.push(a);(a=A(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=k+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t==C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument==C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(k=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(k=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=S.split("").sort(j).join("")===S,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);S.find=d,S.expr=d.selectors,S.expr[":"]=S.expr.pseudos,S.uniqueSort=S.unique=d.uniqueSort,S.text=d.getText,S.isXMLDoc=d.isXML,S.contains=d.contains,S.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&S(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=S.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1<i.call(n,e)!==r}):S.filter(n,e,r)}S.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?S.find.matchesSelector(r,e)?[r]:[]:S.find.matches(e,S.grep(t,function(e){return 1===e.nodeType}))},S.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(S(e).filter(function(){for(t=0;t<r;t++)if(S.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)S.find(e,i[t],n);return 1<r?S.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&k.test(e)?S(e):e||[],!1).length}});var D,q=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(S.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&S(e);if(!k.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&S.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?S.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(S(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(S.uniqueSort(S.merge(this.get(),S(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),S.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return h(e,"parentNode")},parentsUntil:function(e,t,n){return h(e,"parentNode",n)},next:function(e){return O(e,"nextSibling")},prev:function(e){return O(e,"previousSibling")},nextAll:function(e){return h(e,"nextSibling")},prevAll:function(e){return h(e,"previousSibling")},nextUntil:function(e,t,n){return h(e,"nextSibling",n)},prevUntil:function(e,t,n){return h(e,"previousSibling",n)},siblings:function(e){return T((e.parentNode||{}).firstChild,e)},children:function(e){return T(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,"template")&&(e=e.content||e),S.merge([],e.childNodes))}},function(r,i){S.fn[r]=function(e,t){var n=S.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=S.filter(t,n)),1<this.length&&(H[r]||S.uniqueSort(n),L.test(r)&&n.reverse()),this.pushStack(n)}});var P=/[^\x20\t\r\n\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}S.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},S.each(e.match(P)||[],function(e,t){n[t]=!0}),n):S.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){S.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return S.each(arguments,function(e,t){var n;while(-1<(n=S.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<S.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},S.extend({Deferred:function(e){var o=[["notify","progress",S.Callbacks("memory"),S.Callbacks("memory"),2],["resolve","done",S.Callbacks("once memory"),S.Callbacks("once memory"),0,"resolved"],["reject","fail",S.Callbacks("once memory"),S.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return S.Deferred(function(r){S.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,R,s),l(u,o,M,s)):(u++,t.call(e,l(u,o,R,s),l(u,o,M,s),l(u,o,R,o.notifyWith))):(a!==R&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){S.Deferred.exceptionHook&&S.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==M&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(S.Deferred.getStackHook&&(t.stackTrace=S.Deferred.getStackHook()),C.setTimeout(t))}}return S.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:R,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:R)),o[2][3].add(l(0,e,m(n)?n:M))}).promise()},promise:function(e){return null!=e?S.extend(e,a):a}},s={};return S.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=S.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(I(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)I(i[t],a(t),o.reject);return o.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;S.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&W.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},S.readyException=function(e){C.setTimeout(function(){throw e})};var F=S.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),S.ready()}S.fn.ready=function(e){return F.then(e)["catch"](function(e){S.readyException(e)}),this},S.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--S.readyWait:S.isReady)||(S.isReady=!0)!==e&&0<--S.readyWait||F.resolveWith(E,[S])}}),S.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(S.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var $=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)$(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(S(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},_=/^-ms-/,z=/-([a-z])/g;function U(e,t){return t.toUpperCase()}function X(e){return e.replace(_,"ms-").replace(z,U)}var V=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function G(){this.expando=S.expando+G.uid++}G.uid=1,G.prototype={cache:function(e){var t=e[this.expando];return t||(t={},V(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[X(t)]=n;else for(r in t)i[X(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][X(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(X):(t=X(t))in r?[t]:t.match(P)||[]).length;while(n--)delete r[t[n]]}(void 0===t||S.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!S.isEmptyObject(t)}};var Y=new G,Q=new G,J=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,K=/[A-Z]/g;function Z(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(K,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:J.test(i)?JSON.parse(i):i)}catch(e){}Q.set(e,t,n)}else n=void 0;return n}S.extend({hasData:function(e){return Q.hasData(e)||Y.hasData(e)},data:function(e,t,n){return Q.access(e,t,n)},removeData:function(e,t){Q.remove(e,t)},_data:function(e,t,n){return Y.access(e,t,n)},_removeData:function(e,t){Y.remove(e,t)}}),S.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=Q.get(o),1===o.nodeType&&!Y.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=X(r.slice(5)),Z(o,r,i[r]));Y.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){Q.set(this,n)}):$(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=Q.get(o,n))?t:void 0!==(t=Z(o,n))?t:void 0;this.each(function(){Q.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){Q.remove(this,e)})}}),S.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Y.get(e,t),n&&(!r||Array.isArray(n)?r=Y.access(e,t,S.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=S.queue(e,t),r=n.length,i=n.shift(),o=S._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){S.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Y.get(e,n)||Y.access(e,n,{empty:S.Callbacks("once memory").add(function(){Y.remove(e,[t+"queue",n])})})}}),S.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?S.queue(this[0],t):void 0===n?this:this.each(function(){var e=S.queue(this,t,n);S._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&S.dequeue(this,t)})},dequeue:function(e){return this.each(function(){S.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=S.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Y.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var ee=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,te=new RegExp("^(?:([+-])=|)("+ee+")([a-z%]*)$","i"),ne=["Top","Right","Bottom","Left"],re=E.documentElement,ie=function(e){return S.contains(e.ownerDocument,e)},oe={composed:!0};re.getRootNode&&(ie=function(e){return S.contains(e.ownerDocument,e)||e.getRootNode(oe)===e.ownerDocument});var ae=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&ie(e)&&"none"===S.css(e,"display")};function se(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return S.css(e,t,"")},u=s(),l=n&&n[3]||(S.cssNumber[t]?"":"px"),c=e.nodeType&&(S.cssNumber[t]||"px"!==l&&+u)&&te.exec(S.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)S.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,S.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ue={};function le(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Y.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&ae(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ue[s])||(o=a.body.appendChild(a.createElement(s)),u=S.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ue[s]=u)))):"none"!==n&&(l[c]="none",Y.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}S.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){ae(this)?S(this).show():S(this).hide()})}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="<option></option>",y.option=!!ce.lastChild;var ge={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Y.set(e[n],"globalEval",!t||Y.get(t[n],"globalEval"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,y.option||(ge.optgroup=ge.option=[1,"<select multiple='multiple'>","</select>"]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))S.merge(p,o.nodeType?[o]:o);else if(me.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+S.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;S.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<S.inArray(o,r))i&&i.push(o);else if(l=ie(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}var be=/^([^.]*)(?:\.(.+)|)/;function we(){return!0}function Te(){return!1}function Ce(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ee(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ee(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Te;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return S().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=S.guid++)),e.each(function(){S.event.add(this,t,i,r,n)})}function Se(e,i,o){o?(Y.set(e,i,!1),S.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Y.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(S.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Y.set(this,i,r),t=o(this,i),this[i](),r!==(n=Y.get(this,i))||t?Y.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n&&n.value}else r.length&&(Y.set(this,i,{value:S.event.trigger(S.extend(r[0],S.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,i)&&S.event.add(e,i,we)}S.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.get(t);if(V(t)){n.handler&&(n=(o=n).handler,i=o.selector),i&&S.find.matchesSelector(re,i),n.guid||(n.guid=S.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof S&&S.event.triggered!==e.type?S.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(P)||[""]).length;while(l--)d=g=(s=be.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=S.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=S.event.special[d]||{},c=S.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&S.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),S.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.hasData(e)&&Y.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(P)||[""]).length;while(l--)if(d=g=(s=be.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=S.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||S.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)S.event.remove(e,d+t[l],n,r,!0);S.isEmptyObject(u)&&Y.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=S.event.fix(e),l=(Y.get(this,"events")||Object.create(null))[u.type]||[],c=S.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){a=S.event.handlers.call(this,u,l),t=0;while((i=a[t++])&&!u.isPropagationStopped()){u.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!u.isImmediatePropagationStopped())u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((S.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<S(i,this).index(l):S.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(S.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[S.expando]?e:new S.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click",we),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Y.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},S.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},S.Event=function(e,t){if(!(this instanceof S.Event))return new S.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?we:Te,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&S.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[S.expando]=!0},S.Event.prototype={constructor:S.Event,isDefaultPrevented:Te,isPropagationStopped:Te,isImmediatePropagationStopped:Te,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=we,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=we,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=we,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},S.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},S.event.addProp),S.each({focus:"focusin",blur:"focusout"},function(e,t){S.event.special[e]={setup:function(){return Se(this,e,Ce),!1},trigger:function(){return Se(this,e),!0},_default:function(){return!0},delegateType:t}}),S.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){S.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||S.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),S.fn.extend({on:function(e,t,n,r){return Ee(this,e,t,n,r)},one:function(e,t,n,r){return Ee(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,S(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Te),this.each(function(){S.event.remove(this,e,n,t)})}});var ke=/<script|<style|<link/i,Ae=/checked\s*(?:[^=]|=\s*.checked.)/i,Ne=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)S.event.add(t,i,s[i][n]);Q.hasData(e)&&(o=Q.access(e),a=S.extend({},o),Q.set(t,a))}}function He(n,r,i,o){r=g(r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Ae.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),He(t,r,i,o)});if(f&&(t=(e=xe(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=S.map(ve(e,"script"),De)).length;c<f;c++)u=e,c!==p&&(u=S.clone(u,!0,!0),s&&S.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,S.map(a,qe),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Y.access(u,"globalEval")&&S.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?S._evalUrl&&!u.noModule&&S._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")},l):b(u.textContent.replace(Ne,""),u,l))}return n}function Oe(e,t,n){for(var r,i=t?S.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||S.cleanData(ve(r)),r.parentNode&&(n&&ie(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}S.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=ie(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||S.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Le(o[r],a[r]);else Le(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=S.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?S.event.remove(n,r):S.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),S.fn.extend({detach:function(e){return Oe(this,e,!0)},remove:function(e){return Oe(this,e)},text:function(e){return $(this,function(e){return void 0===e?S.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return He(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||je(this,e).appendChild(e)})},prepend:function(){return He(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=je(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(S.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return S.clone(this,e,t)})},html:function(e){return $(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!ke.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=S.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(S.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return He(this,arguments,function(e){var t=this.parentNode;S.inArray(this,n)<0&&(S.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),S.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){S.fn[e]=function(e){for(var t,n=[],r=S(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),S(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var Pe=new RegExp("^("+ee+")(?!px)[a-z%]+$","i"),Re=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Me=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Ie=new RegExp(ne.join("|"),"i");function We(e,t,n){var r,i,o,a,s=e.style;return(n=n||Re(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||ie(e)||(a=S.style(e,t)),!y.pixelBoxStyles()&&Pe.test(a)&&Ie.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function Fe(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(l){u.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",l.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",re.appendChild(u).appendChild(l);var e=C.getComputedStyle(l);n="1%"!==e.top,s=12===t(e.marginLeft),l.style.right="60%",o=36===t(e.right),r=36===t(e.width),l.style.position="absolute",i=12===t(l.offsetWidth/3),re.removeChild(u),l=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s,u=E.createElement("div"),l=E.createElement("div");l.style&&(l.style.backgroundClip="content-box",l.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===l.style.backgroundClip,S.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,r;return null==a&&(e=E.createElement("table"),t=E.createElement("tr"),n=E.createElement("div"),e.style.cssText="position:absolute;left:-11111px;border-collapse:separate",t.style.cssText="border:1px solid",t.style.height="1px",n.style.height="9px",n.style.display="block",re.appendChild(e).appendChild(t).appendChild(n),r=C.getComputedStyle(t),a=parseInt(r.height,10)+parseInt(r.borderTopWidth,10)+parseInt(r.borderBottomWidth,10)===t.offsetHeight,re.removeChild(e)),a}}))}();var Be=["Webkit","Moz","ms"],$e=E.createElement("div").style,_e={};function ze(e){var t=S.cssProps[e]||_e[e];return t||(e in $e?e:_e[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Be.length;while(n--)if((e=Be[n]+t)in $e)return e}(e)||e)}var Ue=/^(none|table(?!-c[ea]).+)/,Xe=/^--/,Ve={position:"absolute",visibility:"hidden",display:"block"},Ge={letterSpacing:"0",fontWeight:"400"};function Ye(e,t,n){var r=te.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Qe(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=S.css(e,n+ne[a],!0,i)),r?("content"===n&&(u-=S.css(e,"padding"+ne[a],!0,i)),"margin"!==n&&(u-=S.css(e,"border"+ne[a]+"Width",!0,i))):(u+=S.css(e,"padding"+ne[a],!0,i),"padding"!==n?u+=S.css(e,"border"+ne[a]+"Width",!0,i):s+=S.css(e,"border"+ne[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Je(e,t,n){var r=Re(e),i=(!y.boxSizingReliable()||n)&&"border-box"===S.css(e,"boxSizing",!1,r),o=i,a=We(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Pe.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||!y.reliableTrDimensions()&&A(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===S.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===S.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Qe(e,t,n||(i?"border":"content"),o,r,a)+"px"}function Ke(e,t,n,r,i){return new Ke.prototype.init(e,t,n,r,i)}S.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=We(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=X(t),u=Xe.test(t),l=e.style;if(u||(t=ze(s)),a=S.cssHooks[t]||S.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(S.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Xe.test(t)||(t=ze(s)),(a=S.cssHooks[t]||S.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=We(e,t,r)),"normal"===i&&t in Ge&&(i=Ge[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),S.each(["height","width"],function(e,u){S.cssHooks[u]={get:function(e,t,n){if(t)return!Ue.test(S.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?Je(e,u,n):Me(e,Ve,function(){return Je(e,u,n)})},set:function(e,t,n){var r,i=Re(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===S.css(e,"boxSizing",!1,i),s=n?Qe(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-Qe(e,u,"border",!1,i)-.5)),s&&(r=te.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=S.css(e,u)),Ye(0,t,s)}}}),S.cssHooks.marginLeft=Fe(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(We(e,"marginLeft"))||e.getBoundingClientRect().left-Me(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),S.each({margin:"",padding:"",border:"Width"},function(i,o){S.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+ne[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(S.cssHooks[i+o].set=Ye)}),S.fn.extend({css:function(e,t){return $(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Re(e),i=t.length;a<i;a++)o[t[a]]=S.css(e,t[a],!1,r);return o}return void 0!==n?S.style(e,t,n):S.css(e,t)},e,t,1<arguments.length)}}),((S.Tween=Ke).prototype={constructor:Ke,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||S.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(S.cssNumber[n]?"":"px")},cur:function(){var e=Ke.propHooks[this.prop];return e&&e.get?e.get(this):Ke.propHooks._default.get(this)},run:function(e){var t,n=Ke.propHooks[this.prop];return this.options.duration?this.pos=t=S.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):Ke.propHooks._default.set(this),this}}).init.prototype=Ke.prototype,(Ke.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=S.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){S.fx.step[e.prop]?S.fx.step[e.prop](e):1!==e.elem.nodeType||!S.cssHooks[e.prop]&&null==e.elem.style[ze(e.prop)]?e.elem[e.prop]=e.now:S.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=Ke.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},S.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},S.fx=Ke.prototype.init,S.fx.step={};var Ze,et,tt,nt,rt=/^(?:toggle|show|hide)$/,it=/queueHooks$/;function ot(){et&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(ot):C.setTimeout(ot,S.fx.interval),S.fx.tick())}function at(){return C.setTimeout(function(){Ze=void 0}),Ze=Date.now()}function st(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=ne[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function ut(e,t,n){for(var r,i=(lt.tweeners[t]||[]).concat(lt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function lt(o,e,t){var n,a,r=0,i=lt.prefilters.length,s=S.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=Ze||at(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:S.extend({},e),opts:S.extend(!0,{specialEasing:{},easing:S.easing._default},t),originalProperties:e,originalOptions:t,startTime:Ze||at(),duration:t.duration,tweens:[],createTween:function(e,t){var n=S.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=X(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=S.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=lt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(S._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return S.map(c,ut,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),S.fx.timer(S.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}S.Animation=S.extend(lt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return se(n.elem,e,te.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(P);for(var n,r=0,i=e.length;r<i;r++)n=e[r],lt.tweeners[n]=lt.tweeners[n]||[],lt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&ae(e),v=Y.get(e,"fxshow");for(r in n.queue||(null==(a=S._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,S.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],rt.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||S.style(e,r)}if((u=!S.isEmptyObject(t))||!S.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Y.get(e,"display")),"none"===(c=S.css(e,"display"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=S.css(e,"display"),le([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===S.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Y.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done(function(){for(r in g||le([e]),Y.remove(e,"fxshow"),d)S.style(e,r,d[r])})),u=ut(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?lt.prefilters.unshift(e):lt.prefilters.push(e)}}),S.speed=function(e,t,n){var r=e&&"object"==typeof e?S.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return S.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in S.fx.speeds?r.duration=S.fx.speeds[r.duration]:r.duration=S.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&S.dequeue(this,r.queue)},r},S.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ae).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=S.isEmptyObject(t),o=S.speed(e,n,r),a=function(){var e=lt(this,S.extend({},t),o);(i||Y.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=S.timers,r=Y.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&it.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||S.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Y.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=S.timers,o=n?n.length:0;for(t.finish=!0,S.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),S.each(["toggle","show","hide"],function(e,r){var i=S.fn[r];S.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(st(r,!0),e,t,n)}}),S.each({slideDown:st("show"),slideUp:st("hide"),slideToggle:st("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){S.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),S.timers=[],S.fx.tick=function(){var e,t=0,n=S.timers;for(Ze=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||S.fx.stop(),Ze=void 0},S.fx.timer=function(e){S.timers.push(e),S.fx.start()},S.fx.interval=13,S.fx.start=function(){et||(et=!0,ot())},S.fx.stop=function(){et=null},S.fx.speeds={slow:600,fast:200,_default:400},S.fn.delay=function(r,e){return r=S.fx&&S.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},tt=E.createElement("input"),nt=E.createElement("select").appendChild(E.createElement("option")),tt.type="checkbox",y.checkOn=""!==tt.value,y.optSelected=nt.selected,(tt=E.createElement("input")).value="t",tt.type="radio",y.radioValue="t"===tt.value;var ct,ft=S.expr.attrHandle;S.fn.extend({attr:function(e,t){return $(this,S.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){S.removeAttr(this,e)})}}),S.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?S.prop(e,t,n):(1===o&&S.isXMLDoc(e)||(i=S.attrHooks[t.toLowerCase()]||(S.expr.match.bool.test(t)?ct:void 0)),void 0!==n?null===n?void S.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=S.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ct={set:function(e,t,n){return!1===t?S.removeAttr(e,n):e.setAttribute(n,n),n}},S.each(S.expr.match.bool.source.match(/\w+/g),function(e,t){var a=ft[t]||S.find.attr;ft[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=ft[o],ft[o]=r,r=null!=a(e,t,n)?o:null,ft[o]=i),r}});var pt=/^(?:input|select|textarea|button)$/i,dt=/^(?:a|area)$/i;function ht(e){return(e.match(P)||[]).join(" ")}function gt(e){return e.getAttribute&&e.getAttribute("class")||""}function vt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(P)||[]}S.fn.extend({prop:function(e,t){return $(this,S.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[S.propFix[e]||e]})}}),S.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&S.isXMLDoc(e)||(t=S.propFix[t]||t,i=S.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=S.find.attr(e,"tabindex");return t?parseInt(t,10):pt.test(e.nodeName)||dt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(S.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),S.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){S.propFix[this.toLowerCase()]=this}),S.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).addClass(t.call(this,e,gt(this)))});if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&" "+ht(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=ht(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).removeClass(t.call(this,e,gt(this)))});if(!arguments.length)return this.attr("class","");if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&" "+ht(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=ht(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){S(this).toggleClass(i.call(this,e,gt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=S(this),r=vt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=gt(this))&&Y.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Y.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+ht(gt(n))+" ").indexOf(t))return!0;return!1}});var yt=/\r/g;S.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,S(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=S.map(t,function(e){return null==e?"":e+""})),(r=S.valHooks[this.type]||S.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=S.valHooks[t.type]||S.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(yt,""):null==e?"":e:void 0}}),S.extend({valHooks:{option:{get:function(e){var t=S.find.attr(e,"value");return null!=t?t:ht(S.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=S(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=S.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<S.inArray(S.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),S.each(["radio","checkbox"],function(){S.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<S.inArray(S(e).val(),t)}},y.checkOn||(S.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var mt=/^(?:focusinfocus|focusoutblur)$/,xt=function(e){e.stopPropagation()};S.extend(S.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!mt.test(d+S.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[S.expando]?e:new S.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:S.makeArray(t,[e]),c=S.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,mt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Y.get(o,"events")||Object.create(null))[e.type]&&Y.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&V(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!V(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),S.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,xt),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,xt),S.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=S.extend(new S.Event,n,{type:e,isSimulated:!0});S.event.trigger(r,null,t)}}),S.fn.extend({trigger:function(e,t){return this.each(function(){S.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return S.event.trigger(e,t,n,!0)}}),y.focusin||S.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){S.event.simulate(r,e.target,S.event.fix(e))};S.event.special[r]={setup:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r);t||e.addEventListener(n,i,!0),Y.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r)-1;t?Y.access(e,r,t):(e.removeEventListener(n,i,!0),Y.remove(e,r))}}});var bt=C.location,wt={guid:Date.now()},Tt=/\?/;S.parseXML=function(e){var t,n;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){}return n=t&&t.getElementsByTagName("parsererror")[0],t&&!n||S.error("Invalid XML: "+(n?S.map(n.childNodes,function(e){return e.textContent}).join("\n"):e)),t};var Ct=/\[\]$/,Et=/\r?\n/g,St=/^(?:submit|button|image|reset|file)$/i,kt=/^(?:input|select|textarea|keygen)/i;function At(n,e,r,i){var t;if(Array.isArray(e))S.each(e,function(e,t){r||Ct.test(n)?i(n,t):At(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)At(n+"["+t+"]",e[t],r,i)}S.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!S.isPlainObject(e))S.each(e,function(){i(this.name,this.value)});else for(n in e)At(n,e[n],t,i);return r.join("&")},S.fn.extend({serialize:function(){return S.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=S.prop(this,"elements");return e?S.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!S(this).is(":disabled")&&kt.test(this.nodeName)&&!St.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=S(this).val();return null==n?null:Array.isArray(n)?S.map(n,function(e){return{name:t.name,value:e.replace(Et,"\r\n")}}):{name:t.name,value:n.replace(Et,"\r\n")}}).get()}});var Nt=/%20/g,jt=/#.*$/,Dt=/([?&])_=[^&]*/,qt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Lt=/^(?:GET|HEAD)$/,Ht=/^\/\//,Ot={},Pt={},Rt="*/".concat("*"),Mt=E.createElement("a");function It(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(P)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function Wt(t,i,o,a){var s={},u=t===Pt;function l(e){var r;return s[e]=!0,S.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function Ft(e,t){var n,r,i=S.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&S.extend(!0,e,r),e}Mt.href=bt.href,S.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:bt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(bt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Rt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":S.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Ft(Ft(e,S.ajaxSettings),t):Ft(S.ajaxSettings,e)},ajaxPrefilter:It(Ot),ajaxTransport:It(Pt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=S.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?S(y):S.event,x=S.Deferred(),b=S.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=qt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||bt.href)+"").replace(Ht,bt.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(P)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Mt.protocol+"//"+Mt.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=S.param(v.data,v.traditional)),Wt(Ot,v,t,T),h)return T;for(i in(g=S.event&&v.global)&&0==S.active++&&S.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Lt.test(v.type),f=v.url.replace(jt,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Nt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(Tt.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Dt,"$1"),o=(Tt.test(f)?"&":"?")+"_="+wt.guid+++o),v.url=f+o),v.ifModified&&(S.lastModified[f]&&T.setRequestHeader("If-Modified-Since",S.lastModified[f]),S.etag[f]&&T.setRequestHeader("If-None-Match",S.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+Rt+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=Wt(Pt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),!i&&-1<S.inArray("script",v.dataTypes)&&S.inArray("json",v.dataTypes)<0&&(v.converters["text script"]=function(){}),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(S.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(S.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--S.active||S.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return S.get(e,t,n,"json")},getScript:function(e,t){return S.get(e,void 0,t,"script")}}),S.each(["get","post"],function(e,i){S[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),S.ajax(S.extend({url:e,type:i,dataType:r,data:t,success:n},S.isPlainObject(e)&&e))}}),S.ajaxPrefilter(function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")}),S._evalUrl=function(e,t,n){return S.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){S.globalEval(e,t,n)}})},S.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=S(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){S(this).wrapInner(n.call(this,e))}):this.each(function(){var e=S(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){S(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){S(this).replaceWith(this.childNodes)}),this}}),S.expr.pseudos.hidden=function(e){return!S.expr.pseudos.visible(e)},S.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},S.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Bt={0:200,1223:204},$t=S.ajaxSettings.xhr();y.cors=!!$t&&"withCredentials"in $t,y.ajax=$t=!!$t,S.ajaxTransport(function(i){var o,a;if(y.cors||$t&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Bt[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),S.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),S.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return S.globalEval(e),e}}}),S.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),S.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=S("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=ht(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&S.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?S("<div>").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}});var Xt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;S.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||S.guid++,i},S.holdReady=function(e){e?S.readyWait++:S.ready(!0)},S.isArray=Array.isArray,S.parseJSON=JSON.parse,S.nodeName=A,S.isFunction=m,S.isWindow=x,S.camelCase=X,S.type=w,S.now=Date.now,S.isNumeric=function(e){var t=S.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},S.trim=function(e){return null==e?"":(e+"").replace(Xt,"")},"function"==typeof define&&define.amd&&define("jquery",[],function(){return S});var Vt=C.jQuery,Gt=C.$;return S.noConflict=function(e){return C.$===S&&(C.$=Gt),e&&C.jQuery===S&&(C.jQuery=Vt),S},"undefined"==typeof e&&(C.jQuery=C.$=S),S});
|
|
</script>
|
|
<style type="text/css">.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane > svg,.leaflet-pane > canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer {position: absolute;left: 0;top: 0;}.leaflet-container {overflow: hidden;}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow {-webkit-user-select: none;-moz-user-select: none;user-select: none;-webkit-user-drag: none;}.leaflet-safari .leaflet-tile {image-rendering: -webkit-optimize-contrast;}.leaflet-safari .leaflet-tile-container {width: 1600px;height: 1600px;-webkit-transform-origin: 0 0;}.leaflet-marker-icon,.leaflet-marker-shadow {display: block;}.leaflet-container .leaflet-overlay-pane svg,.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer {max-width: none !important;max-height: none !important;}.leaflet-container.leaflet-touch-zoom {-ms-touch-action: pan-x pan-y;touch-action: pan-x pan-y;}.leaflet-container.leaflet-touch-drag {-ms-touch-action: pinch-zoom;touch-action: none;touch-action: pinch-zoom;}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {-ms-touch-action: none;touch-action: none;}.leaflet-container {-webkit-tap-highlight-color: transparent;}.leaflet-container a {-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);}.leaflet-tile {filter: inherit;visibility: hidden;}.leaflet-tile-loaded {visibility: inherit;}.leaflet-zoom-box {width: 0;height: 0;-moz-box-sizing: border-box;box-sizing: border-box;z-index: 800;}.leaflet-overlay-pane svg {-moz-user-select: none;}.leaflet-pane { z-index: 400; }.leaflet-tile-pane { z-index: 200; }.leaflet-overlay-pane { z-index: 400; }.leaflet-shadow-pane { z-index: 500; }.leaflet-marker-pane { z-index: 600; }.leaflet-tooltip-pane { z-index: 650; }.leaflet-popup-pane { z-index: 700; }.leaflet-map-pane canvas { z-index: 100; }.leaflet-map-pane svg { z-index: 200; }.leaflet-vml-shape {width: 1px;height: 1px;}.lvml {behavior: url(#default#VML);display: inline-block;position: absolute;}.leaflet-control {position: relative;z-index: 800;pointer-events: visiblePainted; pointer-events: auto;}.leaflet-top,.leaflet-bottom {position: absolute;z-index: 1000;pointer-events: none;}.leaflet-top {top: 0;}.leaflet-right {right: 0;}.leaflet-bottom {bottom: 0;}.leaflet-left {left: 0;}.leaflet-control {float: left;clear: both;}.leaflet-right .leaflet-control {float: right;}.leaflet-top .leaflet-control {margin-top: 10px;}.leaflet-bottom .leaflet-control {margin-bottom: 10px;}.leaflet-left .leaflet-control {margin-left: 10px;}.leaflet-right .leaflet-control {margin-right: 10px;}.leaflet-fade-anim .leaflet-tile {will-change: opacity;}.leaflet-fade-anim .leaflet-popup {opacity: 0;-webkit-transition: opacity 0.2s linear;-moz-transition: opacity 0.2s linear;-o-transition: opacity 0.2s linear;transition: opacity 0.2s linear;}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {opacity: 1;}.leaflet-zoom-animated {-webkit-transform-origin: 0 0;-ms-transform-origin: 0 0;transform-origin: 0 0;}.leaflet-zoom-anim .leaflet-zoom-animated {will-change: transform;}.leaflet-zoom-anim .leaflet-zoom-animated {-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);-o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1);transition: transform 0.25s cubic-bezier(0,0,0.25,1);}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile {-webkit-transition: none;-moz-transition: none;-o-transition: none;transition: none;}.leaflet-zoom-anim .leaflet-zoom-hide {visibility: hidden;}.leaflet-interactive {cursor: pointer;}.leaflet-grab {cursor: -webkit-grab;cursor: -moz-grab;}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive {cursor: crosshair;}.leaflet-popup-pane,.leaflet-control {cursor: auto;}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable {cursor: move;cursor: -webkit-grabbing;cursor: -moz-grabbing;}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane > svg path,.leaflet-tile-container {pointer-events: none;}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane > svg path.leaflet-interactive {pointer-events: visiblePainted; pointer-events: auto;}.leaflet-container {background: #ddd;outline: 0;}.leaflet-container a {color: #0078A8;}.leaflet-container a.leaflet-active {outline: 2px solid orange;}.leaflet-zoom-box {border: 2px dotted #38f;background: rgba(255,255,255,0.5);}.leaflet-container {font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;}.leaflet-bar {box-shadow: 0 1px 5px rgba(0,0,0,0.65);border-radius: 4px;}.leaflet-bar a,.leaflet-bar a:hover {background-color: #fff;border-bottom: 1px solid #ccc;width: 26px;height: 26px;line-height: 26px;display: block;text-align: center;text-decoration: none;color: black;}.leaflet-bar a,.leaflet-control-layers-toggle {background-position: 50% 50%;background-repeat: no-repeat;display: block;}.leaflet-bar a:hover {background-color: #f4f4f4;}.leaflet-bar a:first-child {border-top-left-radius: 4px;border-top-right-radius: 4px;}.leaflet-bar a:last-child {border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;border-bottom: none;}.leaflet-bar a.leaflet-disabled {cursor: default;background-color: #f4f4f4;color: #bbb;}.leaflet-touch .leaflet-bar a {width: 30px;height: 30px;line-height: 30px;}.leaflet-touch .leaflet-bar a:first-child {border-top-left-radius: 2px;border-top-right-radius: 2px;}.leaflet-touch .leaflet-bar a:last-child {border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;}.leaflet-control-zoom-in,.leaflet-control-zoom-out {font: bold 18px 'Lucida Console', Monaco, monospace;text-indent: 1px;}.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {font-size: 22px;}.leaflet-control-layers {box-shadow: 0 1px 5px rgba(0,0,0,0.4);background: #fff;border-radius: 5px;}.leaflet-control-layers-toggle {background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width: 36px;height: 36px;}.leaflet-retina .leaflet-control-layers-toggle {background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size: 26px 26px;}.leaflet-touch .leaflet-control-layers-toggle {width: 44px;height: 44px;}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle {display: none;}.leaflet-control-layers-expanded .leaflet-control-layers-list {display: block;position: relative;}.leaflet-control-layers-expanded {padding: 6px 10px 6px 6px;color: #333;background: #fff;}.leaflet-control-layers-scrollbar {overflow-y: scroll;overflow-x: hidden;padding-right: 5px;}.leaflet-control-layers-selector {margin-top: 2px;position: relative;top: 1px;}.leaflet-control-layers label {display: block;}.leaflet-control-layers-separator {height: 0;border-top: 1px solid #ddd;margin: 5px -10px 5px -6px;}.leaflet-default-icon-path {background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);}.leaflet-container .leaflet-control-attribution {background: #fff;background: rgba(255, 255, 255, 0.7);margin: 0;}.leaflet-control-attribution,.leaflet-control-scale-line {padding: 0 5px;color: #333;}.leaflet-control-attribution a {text-decoration: none;}.leaflet-control-attribution a:hover {text-decoration: underline;}.leaflet-container .leaflet-control-attribution,.leaflet-container .leaflet-control-scale {font-size: 11px;}.leaflet-left .leaflet-control-scale {margin-left: 5px;}.leaflet-bottom .leaflet-control-scale {margin-bottom: 5px;}.leaflet-control-scale-line {border: 2px solid #777;border-top: none;line-height: 1.1;padding: 2px 5px 1px;font-size: 11px;white-space: nowrap;overflow: hidden;-moz-box-sizing: border-box;box-sizing: border-box;background: #fff;background: rgba(255, 255, 255, 0.5);}.leaflet-control-scale-line:not(:first-child) {border-top: 2px solid #777;border-bottom: none;margin-top: -2px;}.leaflet-control-scale-line:not(:first-child):not(:last-child) {border-bottom: 2px solid #777;}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar {box-shadow: none;}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar {border: 2px solid rgba(0,0,0,0.2);background-clip: padding-box;}.leaflet-popup {position: absolute;text-align: center;margin-bottom: 20px;}.leaflet-popup-content-wrapper {padding: 1px;text-align: left;border-radius: 12px;}.leaflet-popup-content {margin: 13px 19px;line-height: 1.4;}.leaflet-popup-content p {margin: 18px 0;}.leaflet-popup-tip-container {width: 40px;height: 20px;position: absolute;left: 50%;margin-left: -20px;overflow: hidden;pointer-events: none;}.leaflet-popup-tip {width: 17px;height: 17px;padding: 1px;margin: -10px auto 0;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);-o-transform: rotate(45deg);transform: rotate(45deg);}.leaflet-popup-content-wrapper,.leaflet-popup-tip {background: white;color: #333;box-shadow: 0 3px 14px rgba(0,0,0,0.4);}.leaflet-container a.leaflet-popup-close-button {position: absolute;top: 0;right: 0;padding: 4px 4px 0 0;border: none;text-align: center;width: 18px;height: 14px;font: 16px/14px Tahoma, Verdana, sans-serif;color: #c3c3c3;text-decoration: none;font-weight: bold;background: transparent;}.leaflet-container a.leaflet-popup-close-button:hover {color: #999;}.leaflet-popup-scrolled {overflow: auto;border-bottom: 1px solid #ddd;border-top: 1px solid #ddd;}.leaflet-oldie .leaflet-popup-content-wrapper {zoom: 1;}.leaflet-oldie .leaflet-popup-tip {width: 24px;margin: 0 auto;-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);}.leaflet-oldie .leaflet-popup-tip-container {margin-top: -1px;}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip {border: 1px solid #999;}.leaflet-div-icon {background: #fff;border: 1px solid #666;}.leaflet-tooltip {position: absolute;padding: 6px;background-color: #fff;border: 1px solid #fff;border-radius: 3px;color: #222;white-space: nowrap;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;pointer-events: none;box-shadow: 0 1px 3px rgba(0,0,0,0.4);}.leaflet-tooltip.leaflet-clickable {cursor: pointer;pointer-events: auto;}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before {position: absolute;pointer-events: none;border: 6px solid transparent;background: transparent;content: "";}.leaflet-tooltip-bottom {margin-top: 6px;}.leaflet-tooltip-top {margin-top: -6px;}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before {left: 50%;margin-left: -6px;}.leaflet-tooltip-top:before {bottom: 0;margin-bottom: -12px;border-top-color: #fff;}.leaflet-tooltip-bottom:before {top: 0;margin-top: -12px;margin-left: -6px;border-bottom-color: #fff;}.leaflet-tooltip-left {margin-left: -6px;}.leaflet-tooltip-right {margin-left: 6px;}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before {top: 50%;margin-top: -6px;}.leaflet-tooltip-left:before {right: 0;margin-right: -12px;border-left-color: #fff;}.leaflet-tooltip-right:before {left: 0;margin-left: -12px;border-right-color: #fff;}</style>
|
|
<script>/* @preserve
|
|
* Leaflet 1.3.1+Detached: ba6f97fff8647e724e4dfe66d2ed7da11f908989.ba6f97f, a JS library for interactive maps. https://leafletjs.com
|
|
* (c) 2010-2017 Vladimir Agafonkin, (c) 2010-2011 CloudMade
|
|
*/
|
|
!function(t,i){"object"==typeof exports&&"undefined"!=typeof module?i(exports):"function"==typeof define&&define.amd?define(["exports"],i):i(t.L={})}(this,function(t){"use strict";function i(t){var i,e,n,o;for(e=1,n=arguments.length;e<n;e++){o=arguments[e];for(i in o)t[i]=o[i]}return t}function e(t,i){var e=Array.prototype.slice;if(t.bind)return t.bind.apply(t,e.call(arguments,1));var n=e.call(arguments,2);return function(){return t.apply(i,n.length?n.concat(e.call(arguments)):arguments)}}function n(t){return t._leaflet_id=t._leaflet_id||++ti,t._leaflet_id}function o(t,i,e){var n,o,s,r;return r=function(){n=!1,o&&(s.apply(e,o),o=!1)},s=function(){n?o=arguments:(t.apply(e,arguments),setTimeout(r,i),n=!0)}}function s(t,i,e){var n=i[1],o=i[0],s=n-o;return t===n&&e?t:((t-o)%s+s)%s+o}function r(){return!1}function a(t,i){var e=Math.pow(10,void 0===i?6:i);return Math.round(t*e)/e}function h(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}function u(t){return h(t).split(/\s+/)}function l(t,i){t.hasOwnProperty("options")||(t.options=t.options?Qt(t.options):{});for(var e in i)t.options[e]=i[e];return t.options}function c(t,i,e){var n=[];for(var o in t)n.push(encodeURIComponent(e?o.toUpperCase():o)+"="+encodeURIComponent(t[o]));return(i&&-1!==i.indexOf("?")?"&":"?")+n.join("&")}function _(t,i){return t.replace(ii,function(t,e){var n=i[e];if(void 0===n)throw new Error("No value provided for variable "+t);return"function"==typeof n&&(n=n(i)),n})}function d(t,i){for(var e=0;e<t.length;e++)if(t[e]===i)return e;return-1}function p(t){return window["webkit"+t]||window["moz"+t]||window["ms"+t]}function m(t){var i=+new Date,e=Math.max(0,16-(i-oi));return oi=i+e,window.setTimeout(t,e)}function f(t,i,n){if(!n||si!==m)return si.call(window,e(t,i));t.call(i)}function g(t){t&&ri.call(window,t)}function v(){}function y(t){if("undefined"!=typeof L&&L&&L.Mixin){t=ei(t)?t:[t];for(var i=0;i<t.length;i++)t[i]===L.Mixin.Events&&console.warn("Deprecated include of L.Mixin.Events: this property will be removed in future releases, please inherit from L.Evented instead.",(new Error).stack)}}function x(t,i,e){this.x=e?Math.round(t):t,this.y=e?Math.round(i):i}function w(t,i,e){return t instanceof x?t:ei(t)?new x(t[0],t[1]):void 0===t||null===t?t:"object"==typeof t&&"x"in t&&"y"in t?new x(t.x,t.y):new x(t,i,e)}function P(t,i){if(t)for(var e=i?[t,i]:t,n=0,o=e.length;n<o;n++)this.extend(e[n])}function b(t,i){return!t||t instanceof P?t:new P(t,i)}function T(t,i){if(t)for(var e=i?[t,i]:t,n=0,o=e.length;n<o;n++)this.extend(e[n])}function z(t,i){return t instanceof T?t:new T(t,i)}function M(t,i,e){if(isNaN(t)||isNaN(i))throw new Error("Invalid LatLng object: ("+t+", "+i+")");this.lat=+t,this.lng=+i,void 0!==e&&(this.alt=+e)}function C(t,i,e){return t instanceof M?t:ei(t)&&"object"!=typeof t[0]?3===t.length?new M(t[0],t[1],t[2]):2===t.length?new M(t[0],t[1]):null:void 0===t||null===t?t:"object"==typeof t&&"lat"in t?new M(t.lat,"lng"in t?t.lng:t.lon,t.alt):void 0===i?null:new M(t,i,e)}function Z(t,i,e,n){if(ei(t))return this._a=t[0],this._b=t[1],this._c=t[2],void(this._d=t[3]);this._a=t,this._b=i,this._c=e,this._d=n}function S(t,i,e,n){return new Z(t,i,e,n)}function E(t){return document.createElementNS("http://www.w3.org/2000/svg",t)}function k(t,i){var e,n,o,s,r,a,h="";for(e=0,o=t.length;e<o;e++){for(n=0,s=(r=t[e]).length;n<s;n++)a=r[n],h+=(n?"L":"M")+a.x+" "+a.y;h+=i?Xi?"z":"x":""}return h||"M0 0"}function A(t){return navigator.userAgent.toLowerCase().indexOf(t)>=0}function I(t,i,e,n){return"touchstart"===i?O(t,e,n):"touchmove"===i?W(t,e,n):"touchend"===i&&H(t,e,n),this}function B(t,i,e){var n=t["_leaflet_"+i+e];return"touchstart"===i?t.removeEventListener(Qi,n,!1):"touchmove"===i?t.removeEventListener(te,n,!1):"touchend"===i&&(t.removeEventListener(ie,n,!1),t.removeEventListener(ee,n,!1)),this}function O(t,i,n){var o=e(function(t){if("mouse"!==t.pointerType&&t.MSPOINTER_TYPE_MOUSE&&t.pointerType!==t.MSPOINTER_TYPE_MOUSE){if(!(ne.indexOf(t.target.tagName)<0))return;$(t)}j(t,i)});t["_leaflet_touchstart"+n]=o,t.addEventListener(Qi,o,!1),se||(document.documentElement.addEventListener(Qi,R,!0),document.documentElement.addEventListener(te,D,!0),document.documentElement.addEventListener(ie,N,!0),document.documentElement.addEventListener(ee,N,!0),se=!0)}function R(t){oe[t.pointerId]=t,re++}function D(t){oe[t.pointerId]&&(oe[t.pointerId]=t)}function N(t){delete oe[t.pointerId],re--}function j(t,i){t.touches=[];for(var e in oe)t.touches.push(oe[e]);t.changedTouches=[t],i(t)}function W(t,i,e){var n=function(t){(t.pointerType!==t.MSPOINTER_TYPE_MOUSE&&"mouse"!==t.pointerType||0!==t.buttons)&&j(t,i)};t["_leaflet_touchmove"+e]=n,t.addEventListener(te,n,!1)}function H(t,i,e){var n=function(t){j(t,i)};t["_leaflet_touchend"+e]=n,t.addEventListener(ie,n,!1),t.addEventListener(ee,n,!1)}function F(t,i,e){function n(t){var i;if(Ui){if(!Pi||"mouse"===t.pointerType)return;i=re}else i=t.touches.length;if(!(i>1)){var e=Date.now(),n=e-(s||e);r=t.touches?t.touches[0]:t,a=n>0&&n<=h,s=e}}function o(t){if(a&&!r.cancelBubble){if(Ui){if(!Pi||"mouse"===t.pointerType)return;var e,n,o={};for(n in r)e=r[n],o[n]=e&&e.bind?e.bind(r):e;r=o}r.type="dblclick",i(r),s=null}}var s,r,a=!1,h=250;return t[ue+ae+e]=n,t[ue+he+e]=o,t[ue+"dblclick"+e]=i,t.addEventListener(ae,n,!1),t.addEventListener(he,o,!1),t.addEventListener("dblclick",i,!1),this}function U(t,i){var e=t[ue+ae+i],n=t[ue+he+i],o=t[ue+"dblclick"+i];return t.removeEventListener(ae,e,!1),t.removeEventListener(he,n,!1),Pi||t.removeEventListener("dblclick",o,!1),this}function V(t,i,e,n){if("object"==typeof i)for(var o in i)G(t,o,i[o],e);else for(var s=0,r=(i=u(i)).length;s<r;s++)G(t,i[s],e,n);return this}function q(t,i,e,n){if("object"==typeof i)for(var o in i)K(t,o,i[o],e);else if(i)for(var s=0,r=(i=u(i)).length;s<r;s++)K(t,i[s],e,n);else{for(var a in t[le])K(t,a,t[le][a]);delete t[le]}return this}function G(t,i,e,o){var s=i+n(e)+(o?"_"+n(o):"");if(t[le]&&t[le][s])return this;var r=function(i){return e.call(o||t,i||window.event)},a=r;Ui&&0===i.indexOf("touch")?I(t,i,r,s):!Vi||"dblclick"!==i||!F||Ui&&Si?"addEventListener"in t?"mousewheel"===i?t.addEventListener("onwheel"in t?"wheel":"mousewheel",r,!1):"mouseenter"===i||"mouseleave"===i?(r=function(i){i=i||window.event,ot(t,i)&&a(i)},t.addEventListener("mouseenter"===i?"mouseover":"mouseout",r,!1)):("click"===i&&Ti&&(r=function(t){st(t,a)}),t.addEventListener(i,r,!1)):"attachEvent"in t&&t.attachEvent("on"+i,r):F(t,r,s),t[le]=t[le]||{},t[le][s]=r}function K(t,i,e,o){var s=i+n(e)+(o?"_"+n(o):""),r=t[le]&&t[le][s];if(!r)return this;Ui&&0===i.indexOf("touch")?B(t,i,s):!Vi||"dblclick"!==i||!U||Ui&&Si?"removeEventListener"in t?"mousewheel"===i?t.removeEventListener("onwheel"in t?"wheel":"mousewheel",r,!1):t.removeEventListener("mouseenter"===i?"mouseover":"mouseleave"===i?"mouseout":i,r,!1):"detachEvent"in t&&t.detachEvent("on"+i,r):U(t,s),t[le][s]=null}function Y(t){return t.stopPropagation?t.stopPropagation():t.originalEvent?t.originalEvent._stopped=!0:t.cancelBubble=!0,nt(t),this}function X(t){return G(t,"mousewheel",Y),this}function J(t){return V(t,"mousedown touchstart dblclick",Y),G(t,"click",et),this}function $(t){return t.preventDefault?t.preventDefault():t.returnValue=!1,this}function Q(t){return $(t),Y(t),this}function tt(t,i){if(!i)return new x(t.clientX,t.clientY);var e=i.getBoundingClientRect(),n=e.width/i.offsetWidth||1,o=e.height/i.offsetHeight||1;return new x(t.clientX/n-e.left-i.clientLeft,t.clientY/o-e.top-i.clientTop)}function it(t){return Pi?t.wheelDeltaY/2:t.deltaY&&0===t.deltaMode?-t.deltaY/ce:t.deltaY&&1===t.deltaMode?20*-t.deltaY:t.deltaY&&2===t.deltaMode?60*-t.deltaY:t.deltaX||t.deltaZ?0:t.wheelDelta?(t.wheelDeltaY||t.wheelDelta)/2:t.detail&&Math.abs(t.detail)<32765?20*-t.detail:t.detail?t.detail/-32765*60:0}function et(t){_e[t.type]=!0}function nt(t){var i=_e[t.type];return _e[t.type]=!1,i}function ot(t,i){var e=i.relatedTarget;if(!e)return!0;try{for(;e&&e!==t;)e=e.parentNode}catch(t){return!1}return e!==t}function st(t,i){var e=t.timeStamp||t.originalEvent&&t.originalEvent.timeStamp,n=pi&&e-pi;n&&n>100&&n<500||t.target._simulatedClick&&!t._simulated?Q(t):(pi=e,i(t))}function rt(t){return"string"==typeof t?document.getElementById(t):t}function at(t,i){var e=t.style[i]||t.currentStyle&&t.currentStyle[i];if((!e||"auto"===e)&&document.defaultView){var n=document.defaultView.getComputedStyle(t,null);e=n?n[i]:null}return"auto"===e?null:e}function ht(t,i,e){var n=document.createElement(t);return n.className=i||"",e&&e.appendChild(n),n}function ut(t){var i=t.parentNode;i&&i.removeChild(t)}function lt(t){for(;t.firstChild;)t.removeChild(t.firstChild)}function ct(t){var i=t.parentNode;i.lastChild!==t&&i.appendChild(t)}function _t(t){var i=t.parentNode;i.firstChild!==t&&i.insertBefore(t,i.firstChild)}function dt(t,i){if(void 0!==t.classList)return t.classList.contains(i);var e=gt(t);return e.length>0&&new RegExp("(^|\\s)"+i+"(\\s|$)").test(e)}function pt(t,i){if(void 0!==t.classList)for(var e=u(i),n=0,o=e.length;n<o;n++)t.classList.add(e[n]);else if(!dt(t,i)){var s=gt(t);ft(t,(s?s+" ":"")+i)}}function mt(t,i){void 0!==t.classList?t.classList.remove(i):ft(t,h((" "+gt(t)+" ").replace(" "+i+" "," ")))}function ft(t,i){void 0===t.className.baseVal?t.className=i:t.className.baseVal=i}function gt(t){return void 0===t.className.baseVal?t.className:t.className.baseVal}function vt(t,i){"opacity"in t.style?t.style.opacity=i:"filter"in t.style&&yt(t,i)}function yt(t,i){var e=!1,n="DXImageTransform.Microsoft.Alpha";try{e=t.filters.item(n)}catch(t){if(1===i)return}i=Math.round(100*i),e?(e.Enabled=100!==i,e.Opacity=i):t.style.filter+=" progid:"+n+"(opacity="+i+")"}function xt(t){for(var i=document.documentElement.style,e=0;e<t.length;e++)if(t[e]in i)return t[e];return!1}function wt(t,i,e){var n=i||new x(0,0);t.style[pe]=(Oi?"translate("+n.x+"px,"+n.y+"px)":"translate3d("+n.x+"px,"+n.y+"px,0)")+(e?" scale("+e+")":"")}function Lt(t,i){t._leaflet_pos=i,Ni?wt(t,i):(t.style.left=i.x+"px",t.style.top=i.y+"px")}function Pt(t){return t._leaflet_pos||new x(0,0)}function bt(){V(window,"dragstart",$)}function Tt(){q(window,"dragstart",$)}function zt(t){for(;-1===t.tabIndex;)t=t.parentNode;t.style&&(Mt(),ve=t,ye=t.style.outline,t.style.outline="none",V(window,"keydown",Mt))}function Mt(){ve&&(ve.style.outline=ye,ve=void 0,ye=void 0,q(window,"keydown",Mt))}function Ct(t,i){if(!i||!t.length)return t.slice();var e=i*i;return t=kt(t,e),t=St(t,e)}function Zt(t,i,e){return Math.sqrt(Rt(t,i,e,!0))}function St(t,i){var e=t.length,n=new(typeof Uint8Array!=void 0+""?Uint8Array:Array)(e);n[0]=n[e-1]=1,Et(t,n,i,0,e-1);var o,s=[];for(o=0;o<e;o++)n[o]&&s.push(t[o]);return s}function Et(t,i,e,n,o){var s,r,a,h=0;for(r=n+1;r<=o-1;r++)(a=Rt(t[r],t[n],t[o],!0))>h&&(s=r,h=a);h>e&&(i[s]=1,Et(t,i,e,n,s),Et(t,i,e,s,o))}function kt(t,i){for(var e=[t[0]],n=1,o=0,s=t.length;n<s;n++)Ot(t[n],t[o])>i&&(e.push(t[n]),o=n);return o<s-1&&e.push(t[s-1]),e}function At(t,i,e,n,o){var s,r,a,h=n?Se:Bt(t,e),u=Bt(i,e);for(Se=u;;){if(!(h|u))return[t,i];if(h&u)return!1;a=Bt(r=It(t,i,s=h||u,e,o),e),s===h?(t=r,h=a):(i=r,u=a)}}function It(t,i,e,n,o){var s,r,a=i.x-t.x,h=i.y-t.y,u=n.min,l=n.max;return 8&e?(s=t.x+a*(l.y-t.y)/h,r=l.y):4&e?(s=t.x+a*(u.y-t.y)/h,r=u.y):2&e?(s=l.x,r=t.y+h*(l.x-t.x)/a):1&e&&(s=u.x,r=t.y+h*(u.x-t.x)/a),new x(s,r,o)}function Bt(t,i){var e=0;return t.x<i.min.x?e|=1:t.x>i.max.x&&(e|=2),t.y<i.min.y?e|=4:t.y>i.max.y&&(e|=8),e}function Ot(t,i){var e=i.x-t.x,n=i.y-t.y;return e*e+n*n}function Rt(t,i,e,n){var o,s=i.x,r=i.y,a=e.x-s,h=e.y-r,u=a*a+h*h;return u>0&&((o=((t.x-s)*a+(t.y-r)*h)/u)>1?(s=e.x,r=e.y):o>0&&(s+=a*o,r+=h*o)),a=t.x-s,h=t.y-r,n?a*a+h*h:new x(s,r)}function Dt(t){return!ei(t[0])||"object"!=typeof t[0][0]&&void 0!==t[0][0]}function Nt(t){return console.warn("Deprecated use of _flat, please use L.LineUtil.isFlat instead."),Dt(t)}function jt(t,i,e){var n,o,s,r,a,h,u,l,c,_=[1,4,2,8];for(o=0,u=t.length;o<u;o++)t[o]._code=Bt(t[o],i);for(r=0;r<4;r++){for(l=_[r],n=[],o=0,s=(u=t.length)-1;o<u;s=o++)a=t[o],h=t[s],a._code&l?h._code&l||((c=It(h,a,l,i,e))._code=Bt(c,i),n.push(c)):(h._code&l&&((c=It(h,a,l,i,e))._code=Bt(c,i),n.push(c)),n.push(a));t=n}return t}function Wt(t,i){var e,n,o,s,r="Feature"===t.type?t.geometry:t,a=r?r.coordinates:null,h=[],u=i&&i.pointToLayer,l=i&&i.coordsToLatLng||Ht;if(!a&&!r)return null;switch(r.type){case"Point":return e=l(a),u?u(t,e):new Xe(e);case"MultiPoint":for(o=0,s=a.length;o<s;o++)e=l(a[o]),h.push(u?u(t,e):new Xe(e));return new qe(h);case"LineString":case"MultiLineString":return n=Ft(a,"LineString"===r.type?0:1,l),new tn(n,i);case"Polygon":case"MultiPolygon":return n=Ft(a,"Polygon"===r.type?1:2,l),new en(n,i);case"GeometryCollection":for(o=0,s=r.geometries.length;o<s;o++){var c=Wt({geometry:r.geometries[o],type:"Feature",properties:t.properties},i);c&&h.push(c)}return new qe(h);default:throw new Error("Invalid GeoJSON object.")}}function Ht(t){return new M(t[1],t[0],t[2])}function Ft(t,i,e){for(var n,o=[],s=0,r=t.length;s<r;s++)n=i?Ft(t[s],i-1,e):(e||Ht)(t[s]),o.push(n);return o}function Ut(t,i){return i="number"==typeof i?i:6,void 0!==t.alt?[a(t.lng,i),a(t.lat,i),a(t.alt,i)]:[a(t.lng,i),a(t.lat,i)]}function Vt(t,i,e,n){for(var o=[],s=0,r=t.length;s<r;s++)o.push(i?Vt(t[s],i-1,e,n):Ut(t[s],n));return!i&&e&&o.push(o[0]),o}function qt(t,e){return t.feature?i({},t.feature,{geometry:e}):Gt(e)}function Gt(t){return"Feature"===t.type||"FeatureCollection"===t.type?t:{type:"Feature",properties:{},geometry:t}}function Kt(t,i){return new nn(t,i)}function Yt(t,i){return new dn(t,i)}function Xt(t){return Yi?new fn(t):null}function Jt(t){return Xi||Ji?new xn(t):null}var $t=Object.freeze;Object.freeze=function(t){return t};var Qt=Object.create||function(){function t(){}return function(i){return t.prototype=i,new t}}(),ti=0,ii=/\{ *([\w_-]+) *\}/g,ei=Array.isArray||function(t){return"[object Array]"===Object.prototype.toString.call(t)},ni="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=",oi=0,si=window.requestAnimationFrame||p("RequestAnimationFrame")||m,ri=window.cancelAnimationFrame||p("CancelAnimationFrame")||p("CancelRequestAnimationFrame")||function(t){window.clearTimeout(t)},ai=(Object.freeze||Object)({freeze:$t,extend:i,create:Qt,bind:e,lastId:ti,stamp:n,throttle:o,wrapNum:s,falseFn:r,formatNum:a,trim:h,splitWords:u,setOptions:l,getParamString:c,template:_,isArray:ei,indexOf:d,emptyImageUrl:ni,requestFn:si,cancelFn:ri,requestAnimFrame:f,cancelAnimFrame:g});v.extend=function(t){var e=function(){this.initialize&&this.initialize.apply(this,arguments),this.callInitHooks()},n=e.__super__=this.prototype,o=Qt(n);o.constructor=e,e.prototype=o;for(var s in this)this.hasOwnProperty(s)&&"prototype"!==s&&"__super__"!==s&&(e[s]=this[s]);return t.statics&&(i(e,t.statics),delete t.statics),t.includes&&(y(t.includes),i.apply(null,[o].concat(t.includes)),delete t.includes),o.options&&(t.options=i(Qt(o.options),t.options)),i(o,t),o._initHooks=[],o.callInitHooks=function(){if(!this._initHooksCalled){n.callInitHooks&&n.callInitHooks.call(this),this._initHooksCalled=!0;for(var t=0,i=o._initHooks.length;t<i;t++)o._initHooks[t].call(this)}},e},v.include=function(t){return i(this.prototype,t),this},v.mergeOptions=function(t){return i(this.prototype.options,t),this},v.addInitHook=function(t){var i=Array.prototype.slice.call(arguments,1),e="function"==typeof t?t:function(){this[t].apply(this,i)};return this.prototype._initHooks=this.prototype._initHooks||[],this.prototype._initHooks.push(e),this};var hi={on:function(t,i,e){if("object"==typeof t)for(var n in t)this._on(n,t[n],i);else for(var o=0,s=(t=u(t)).length;o<s;o++)this._on(t[o],i,e);return this},off:function(t,i,e){if(t)if("object"==typeof t)for(var n in t)this._off(n,t[n],i);else for(var o=0,s=(t=u(t)).length;o<s;o++)this._off(t[o],i,e);else delete this._events;return this},_on:function(t,i,e){this._events=this._events||{};var n=this._events[t];n||(n=[],this._events[t]=n),e===this&&(e=void 0);for(var o={fn:i,ctx:e},s=n,r=0,a=s.length;r<a;r++)if(s[r].fn===i&&s[r].ctx===e)return;s.push(o)},_off:function(t,i,e){var n,o,s;if(this._events&&(n=this._events[t]))if(i){if(e===this&&(e=void 0),n)for(o=0,s=n.length;o<s;o++){var a=n[o];if(a.ctx===e&&a.fn===i)return a.fn=r,this._firingCount&&(this._events[t]=n=n.slice()),void n.splice(o,1)}}else{for(o=0,s=n.length;o<s;o++)n[o].fn=r;delete this._events[t]}},fire:function(t,e,n){if(!this.listens(t,n))return this;var o=i({},e,{type:t,target:this,sourceTarget:e&&e.sourceTarget||this});if(this._events){var s=this._events[t];if(s){this._firingCount=this._firingCount+1||1;for(var r=0,a=s.length;r<a;r++){var h=s[r];h.fn.call(h.ctx||this,o)}this._firingCount--}}return n&&this._propagateEvent(o),this},listens:function(t,i){var e=this._events&&this._events[t];if(e&&e.length)return!0;if(i)for(var n in this._eventParents)if(this._eventParents[n].listens(t,i))return!0;return!1},once:function(t,i,n){if("object"==typeof t){for(var o in t)this.once(o,t[o],i);return this}var s=e(function(){this.off(t,i,n).off(t,s,n)},this);return this.on(t,i,n).on(t,s,n)},addEventParent:function(t){return this._eventParents=this._eventParents||{},this._eventParents[n(t)]=t,this},removeEventParent:function(t){return this._eventParents&&delete this._eventParents[n(t)],this},_propagateEvent:function(t){for(var e in this._eventParents)this._eventParents[e].fire(t.type,i({layer:t.target,propagatedFrom:t.target},t),!0)}};hi.addEventListener=hi.on,hi.removeEventListener=hi.clearAllEventListeners=hi.off,hi.addOneTimeEventListener=hi.once,hi.fireEvent=hi.fire,hi.hasEventListeners=hi.listens;var ui=v.extend(hi),li=Math.trunc||function(t){return t>0?Math.floor(t):Math.ceil(t)};x.prototype={clone:function(){return new x(this.x,this.y)},add:function(t){return this.clone()._add(w(t))},_add:function(t){return this.x+=t.x,this.y+=t.y,this},subtract:function(t){return this.clone()._subtract(w(t))},_subtract:function(t){return this.x-=t.x,this.y-=t.y,this},divideBy:function(t){return this.clone()._divideBy(t)},_divideBy:function(t){return this.x/=t,this.y/=t,this},multiplyBy:function(t){return this.clone()._multiplyBy(t)},_multiplyBy:function(t){return this.x*=t,this.y*=t,this},scaleBy:function(t){return new x(this.x*t.x,this.y*t.y)},unscaleBy:function(t){return new x(this.x/t.x,this.y/t.y)},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},floor:function(){return this.clone()._floor()},_floor:function(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this},ceil:function(){return this.clone()._ceil()},_ceil:function(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this},trunc:function(){return this.clone()._trunc()},_trunc:function(){return this.x=li(this.x),this.y=li(this.y),this},distanceTo:function(t){var i=(t=w(t)).x-this.x,e=t.y-this.y;return Math.sqrt(i*i+e*e)},equals:function(t){return(t=w(t)).x===this.x&&t.y===this.y},contains:function(t){return t=w(t),Math.abs(t.x)<=Math.abs(this.x)&&Math.abs(t.y)<=Math.abs(this.y)},toString:function(){return"Point("+a(this.x)+", "+a(this.y)+")"}},P.prototype={extend:function(t){return t=w(t),this.min||this.max?(this.min.x=Math.min(t.x,this.min.x),this.max.x=Math.max(t.x,this.max.x),this.min.y=Math.min(t.y,this.min.y),this.max.y=Math.max(t.y,this.max.y)):(this.min=t.clone(),this.max=t.clone()),this},getCenter:function(t){return new x((this.min.x+this.max.x)/2,(this.min.y+this.max.y)/2,t)},getBottomLeft:function(){return new x(this.min.x,this.max.y)},getTopRight:function(){return new x(this.max.x,this.min.y)},getTopLeft:function(){return this.min},getBottomRight:function(){return this.max},getSize:function(){return this.max.subtract(this.min)},contains:function(t){var i,e;return(t="number"==typeof t[0]||t instanceof x?w(t):b(t))instanceof P?(i=t.min,e=t.max):i=e=t,i.x>=this.min.x&&e.x<=this.max.x&&i.y>=this.min.y&&e.y<=this.max.y},intersects:function(t){t=b(t);var i=this.min,e=this.max,n=t.min,o=t.max,s=o.x>=i.x&&n.x<=e.x,r=o.y>=i.y&&n.y<=e.y;return s&&r},overlaps:function(t){t=b(t);var i=this.min,e=this.max,n=t.min,o=t.max,s=o.x>i.x&&n.x<e.x,r=o.y>i.y&&n.y<e.y;return s&&r},isValid:function(){return!(!this.min||!this.max)}},T.prototype={extend:function(t){var i,e,n=this._southWest,o=this._northEast;if(t instanceof M)i=t,e=t;else{if(!(t instanceof T))return t?this.extend(C(t)||z(t)):this;if(i=t._southWest,e=t._northEast,!i||!e)return this}return n||o?(n.lat=Math.min(i.lat,n.lat),n.lng=Math.min(i.lng,n.lng),o.lat=Math.max(e.lat,o.lat),o.lng=Math.max(e.lng,o.lng)):(this._southWest=new M(i.lat,i.lng),this._northEast=new M(e.lat,e.lng)),this},pad:function(t){var i=this._southWest,e=this._northEast,n=Math.abs(i.lat-e.lat)*t,o=Math.abs(i.lng-e.lng)*t;return new T(new M(i.lat-n,i.lng-o),new M(e.lat+n,e.lng+o))},getCenter:function(){return new M((this._southWest.lat+this._northEast.lat)/2,(this._southWest.lng+this._northEast.lng)/2)},getSouthWest:function(){return this._southWest},getNorthEast:function(){return this._northEast},getNorthWest:function(){return new M(this.getNorth(),this.getWest())},getSouthEast:function(){return new M(this.getSouth(),this.getEast())},getWest:function(){return this._southWest.lng},getSouth:function(){return this._southWest.lat},getEast:function(){return this._northEast.lng},getNorth:function(){return this._northEast.lat},contains:function(t){t="number"==typeof t[0]||t instanceof M||"lat"in t?C(t):z(t);var i,e,n=this._southWest,o=this._northEast;return t instanceof T?(i=t.getSouthWest(),e=t.getNorthEast()):i=e=t,i.lat>=n.lat&&e.lat<=o.lat&&i.lng>=n.lng&&e.lng<=o.lng},intersects:function(t){t=z(t);var i=this._southWest,e=this._northEast,n=t.getSouthWest(),o=t.getNorthEast(),s=o.lat>=i.lat&&n.lat<=e.lat,r=o.lng>=i.lng&&n.lng<=e.lng;return s&&r},overlaps:function(t){t=z(t);var i=this._southWest,e=this._northEast,n=t.getSouthWest(),o=t.getNorthEast(),s=o.lat>i.lat&&n.lat<e.lat,r=o.lng>i.lng&&n.lng<e.lng;return s&&r},toBBoxString:function(){return[this.getWest(),this.getSouth(),this.getEast(),this.getNorth()].join(",")},equals:function(t,i){return!!t&&(t=z(t),this._southWest.equals(t.getSouthWest(),i)&&this._northEast.equals(t.getNorthEast(),i))},isValid:function(){return!(!this._southWest||!this._northEast)}},M.prototype={equals:function(t,i){return!!t&&(t=C(t),Math.max(Math.abs(this.lat-t.lat),Math.abs(this.lng-t.lng))<=(void 0===i?1e-9:i))},toString:function(t){return"LatLng("+a(this.lat,t)+", "+a(this.lng,t)+")"},distanceTo:function(t){return _i.distance(this,C(t))},wrap:function(){return _i.wrapLatLng(this)},toBounds:function(t){var i=180*t/40075017,e=i/Math.cos(Math.PI/180*this.lat);return z([this.lat-i,this.lng-e],[this.lat+i,this.lng+e])},clone:function(){return new M(this.lat,this.lng,this.alt)}};var ci={latLngToPoint:function(t,i){var e=this.projection.project(t),n=this.scale(i);return this.transformation._transform(e,n)},pointToLatLng:function(t,i){var e=this.scale(i),n=this.transformation.untransform(t,e);return this.projection.unproject(n)},project:function(t){return this.projection.project(t)},unproject:function(t){return this.projection.unproject(t)},scale:function(t){return 256*Math.pow(2,t)},zoom:function(t){return Math.log(t/256)/Math.LN2},getProjectedBounds:function(t){if(this.infinite)return null;var i=this.projection.bounds,e=this.scale(t);return new P(this.transformation.transform(i.min,e),this.transformation.transform(i.max,e))},infinite:!1,wrapLatLng:function(t){var i=this.wrapLng?s(t.lng,this.wrapLng,!0):t.lng;return new M(this.wrapLat?s(t.lat,this.wrapLat,!0):t.lat,i,t.alt)},wrapLatLngBounds:function(t){var i=t.getCenter(),e=this.wrapLatLng(i),n=i.lat-e.lat,o=i.lng-e.lng;if(0===n&&0===o)return t;var s=t.getSouthWest(),r=t.getNorthEast();return new T(new M(s.lat-n,s.lng-o),new M(r.lat-n,r.lng-o))}},_i=i({},ci,{wrapLng:[-180,180],R:6371e3,distance:function(t,i){var e=Math.PI/180,n=t.lat*e,o=i.lat*e,s=Math.sin((i.lat-t.lat)*e/2),r=Math.sin((i.lng-t.lng)*e/2),a=s*s+Math.cos(n)*Math.cos(o)*r*r,h=2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a));return this.R*h}}),di={R:6378137,MAX_LATITUDE:85.0511287798,project:function(t){var i=Math.PI/180,e=this.MAX_LATITUDE,n=Math.max(Math.min(e,t.lat),-e),o=Math.sin(n*i);return new x(this.R*t.lng*i,this.R*Math.log((1+o)/(1-o))/2)},unproject:function(t){var i=180/Math.PI;return new M((2*Math.atan(Math.exp(t.y/this.R))-Math.PI/2)*i,t.x*i/this.R)},bounds:function(){var t=6378137*Math.PI;return new P([-t,-t],[t,t])}()};Z.prototype={transform:function(t,i){return this._transform(t.clone(),i)},_transform:function(t,i){return i=i||1,t.x=i*(this._a*t.x+this._b),t.y=i*(this._c*t.y+this._d),t},untransform:function(t,i){return i=i||1,new x((t.x/i-this._b)/this._a,(t.y/i-this._d)/this._c)}};var pi,mi,fi,gi,vi=i({},_i,{code:"EPSG:3857",projection:di,transformation:function(){var t=.5/(Math.PI*di.R);return S(t,.5,-t,.5)}()}),yi=i({},vi,{code:"EPSG:900913"}),xi=document.documentElement.style,wi="ActiveXObject"in window,Li=wi&&!document.addEventListener,Pi="msLaunchUri"in navigator&&!("documentMode"in document),bi=A("webkit"),Ti=A("android"),zi=A("android 2")||A("android 3"),Mi=parseInt(/WebKit\/([0-9]+)|$/.exec(navigator.userAgent)[1],10),Ci=Ti&&A("Google")&&Mi<537&&!("AudioNode"in window),Zi=!!window.opera,Si=A("chrome"),Ei=A("gecko")&&!bi&&!Zi&&!wi,ki=!Si&&A("safari"),Ai=A("phantom"),Ii="OTransition"in xi,Bi=0===navigator.platform.indexOf("Win"),Oi=wi&&"transition"in xi,Ri="WebKitCSSMatrix"in window&&"m11"in new window.WebKitCSSMatrix&&!zi,Di="MozPerspective"in xi,Ni=!window.L_DISABLE_3D&&(Oi||Ri||Di)&&!Ii&&!Ai,ji="undefined"!=typeof orientation||A("mobile"),Wi=ji&&bi,Hi=ji&&Ri,Fi=!window.PointerEvent&&window.MSPointerEvent,Ui=!(!window.PointerEvent&&!Fi),Vi=!window.L_NO_TOUCH&&(Ui||"ontouchstart"in window||window.DocumentTouch&&document instanceof window.DocumentTouch),qi=ji&&Zi,Gi=ji&&Ei,Ki=(window.devicePixelRatio||window.screen.deviceXDPI/window.screen.logicalXDPI)>1,Yi=!!document.createElement("canvas").getContext,Xi=!(!document.createElementNS||!E("svg").createSVGRect),Ji=!Xi&&function(){try{var t=document.createElement("div");t.innerHTML='<v:shape adj="1"/>';var i=t.firstChild;return i.style.behavior="url(#default#VML)",i&&"object"==typeof i.adj}catch(t){return!1}}(),$i=(Object.freeze||Object)({ie:wi,ielt9:Li,edge:Pi,webkit:bi,android:Ti,android23:zi,androidStock:Ci,opera:Zi,chrome:Si,gecko:Ei,safari:ki,phantom:Ai,opera12:Ii,win:Bi,ie3d:Oi,webkit3d:Ri,gecko3d:Di,any3d:Ni,mobile:ji,mobileWebkit:Wi,mobileWebkit3d:Hi,msPointer:Fi,pointer:Ui,touch:Vi,mobileOpera:qi,mobileGecko:Gi,retina:Ki,canvas:Yi,svg:Xi,vml:Ji}),Qi=Fi?"MSPointerDown":"pointerdown",te=Fi?"MSPointerMove":"pointermove",ie=Fi?"MSPointerUp":"pointerup",ee=Fi?"MSPointerCancel":"pointercancel",ne=["INPUT","SELECT","OPTION"],oe={},se=!1,re=0,ae=Fi?"MSPointerDown":Ui?"pointerdown":"touchstart",he=Fi?"MSPointerUp":Ui?"pointerup":"touchend",ue="_leaflet_",le="_leaflet_events",ce=Bi&&Si?2*window.devicePixelRatio:Ei?window.devicePixelRatio:1,_e={},de=(Object.freeze||Object)({on:V,off:q,stopPropagation:Y,disableScrollPropagation:X,disableClickPropagation:J,preventDefault:$,stop:Q,getMousePosition:tt,getWheelDelta:it,fakeStop:et,skipped:nt,isExternalTarget:ot,addListener:V,removeListener:q}),pe=xt(["transform","WebkitTransform","OTransform","MozTransform","msTransform"]),me=xt(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),fe="webkitTransition"===me||"OTransition"===me?me+"End":"transitionend";if("onselectstart"in document)mi=function(){V(window,"selectstart",$)},fi=function(){q(window,"selectstart",$)};else{var ge=xt(["userSelect","WebkitUserSelect","OUserSelect","MozUserSelect","msUserSelect"]);mi=function(){if(ge){var t=document.documentElement.style;gi=t[ge],t[ge]="none"}},fi=function(){ge&&(document.documentElement.style[ge]=gi,gi=void 0)}}var ve,ye,xe=(Object.freeze||Object)({TRANSFORM:pe,TRANSITION:me,TRANSITION_END:fe,get:rt,getStyle:at,create:ht,remove:ut,empty:lt,toFront:ct,toBack:_t,hasClass:dt,addClass:pt,removeClass:mt,setClass:ft,getClass:gt,setOpacity:vt,testProp:xt,setTransform:wt,setPosition:Lt,getPosition:Pt,disableTextSelection:mi,enableTextSelection:fi,disableImageDrag:bt,enableImageDrag:Tt,preventOutline:zt,restoreOutline:Mt}),we=ui.extend({run:function(t,i,e,n){this.stop(),this._el=t,this._inProgress=!0,this._duration=e||.25,this._easeOutPower=1/Math.max(n||.5,.2),this._startPos=Pt(t),this._offset=i.subtract(this._startPos),this._startTime=+new Date,this.fire("start"),this._animate()},stop:function(){this._inProgress&&(this._step(!0),this._complete())},_animate:function(){this._animId=f(this._animate,this),this._step()},_step:function(t){var i=+new Date-this._startTime,e=1e3*this._duration;i<e?this._runFrame(this._easeOut(i/e),t):(this._runFrame(1),this._complete())},_runFrame:function(t,i){var e=this._startPos.add(this._offset.multiplyBy(t));i&&e._round(),Lt(this._el,e),this.fire("step")},_complete:function(){g(this._animId),this._inProgress=!1,this.fire("end")},_easeOut:function(t){return 1-Math.pow(1-t,this._easeOutPower)}}),Le=ui.extend({options:{crs:vi,center:void 0,zoom:void 0,minZoom:void 0,maxZoom:void 0,layers:[],maxBounds:void 0,renderer:void 0,zoomAnimation:!0,zoomAnimationThreshold:4,fadeAnimation:!0,markerZoomAnimation:!0,transform3DLimit:8388608,zoomSnap:1,zoomDelta:1,trackResize:!0},initialize:function(t,i){i=l(this,i),this._initContainer(t),this._initLayout(),this._onResize=e(this._onResize,this),this._initEvents(),i.maxBounds&&this.setMaxBounds(i.maxBounds),void 0!==i.zoom&&(this._zoom=this._limitZoom(i.zoom)),i.center&&void 0!==i.zoom&&this.setView(C(i.center),i.zoom,{reset:!0}),this._handlers=[],this._layers={},this._zoomBoundLayers={},this._sizeChanged=!0,this.callInitHooks(),this._zoomAnimated=me&&Ni&&!qi&&this.options.zoomAnimation,this._zoomAnimated&&(this._createAnimProxy(),V(this._proxy,fe,this._catchTransitionEnd,this)),this._addLayers(this.options.layers)},setView:function(t,e,n){return e=void 0===e?this._zoom:this._limitZoom(e),t=this._limitCenter(C(t),e,this.options.maxBounds),n=n||{},this._stop(),this._loaded&&!n.reset&&!0!==n&&(void 0!==n.animate&&(n.zoom=i({animate:n.animate},n.zoom),n.pan=i({animate:n.animate,duration:n.duration},n.pan)),this._zoom!==e?this._tryAnimatedZoom&&this._tryAnimatedZoom(t,e,n.zoom):this._tryAnimatedPan(t,n.pan))?(clearTimeout(this._sizeTimer),this):(this._resetView(t,e),this)},setZoom:function(t,i){return this._loaded?this.setView(this.getCenter(),t,{zoom:i}):(this._zoom=t,this)},zoomIn:function(t,i){return t=t||(Ni?this.options.zoomDelta:1),this.setZoom(this._zoom+t,i)},zoomOut:function(t,i){return t=t||(Ni?this.options.zoomDelta:1),this.setZoom(this._zoom-t,i)},setZoomAround:function(t,i,e){var n=this.getZoomScale(i),o=this.getSize().divideBy(2),s=(t instanceof x?t:this.latLngToContainerPoint(t)).subtract(o).multiplyBy(1-1/n),r=this.containerPointToLatLng(o.add(s));return this.setView(r,i,{zoom:e})},_getBoundsCenterZoom:function(t,i){i=i||{},t=t.getBounds?t.getBounds():z(t);var e=w(i.paddingTopLeft||i.padding||[0,0]),n=w(i.paddingBottomRight||i.padding||[0,0]),o=this.getBoundsZoom(t,!1,e.add(n));if((o="number"==typeof i.maxZoom?Math.min(i.maxZoom,o):o)===1/0)return{center:t.getCenter(),zoom:o};var s=n.subtract(e).divideBy(2),r=this.project(t.getSouthWest(),o),a=this.project(t.getNorthEast(),o);return{center:this.unproject(r.add(a).divideBy(2).add(s),o),zoom:o}},fitBounds:function(t,i){if(!(t=z(t)).isValid())throw new Error("Bounds are not valid.");var e=this._getBoundsCenterZoom(t,i);return this.setView(e.center,e.zoom,i)},fitWorld:function(t){return this.fitBounds([[-90,-180],[90,180]],t)},panTo:function(t,i){return this.setView(t,this._zoom,{pan:i})},panBy:function(t,i){if(t=w(t).round(),i=i||{},!t.x&&!t.y)return this.fire("moveend");if(!0!==i.animate&&!this.getSize().contains(t))return this._resetView(this.unproject(this.project(this.getCenter()).add(t)),this.getZoom()),this;if(this._panAnim||(this._panAnim=new we,this._panAnim.on({step:this._onPanTransitionStep,end:this._onPanTransitionEnd},this)),i.noMoveStart||this.fire("movestart"),!1!==i.animate){pt(this._mapPane,"leaflet-pan-anim");var e=this._getMapPanePos().subtract(t).round();this._panAnim.run(this._mapPane,e,i.duration||.25,i.easeLinearity)}else this._rawPanBy(t),this.fire("move").fire("moveend");return this},flyTo:function(t,i,e){function n(t){var i=(g*g-m*m+(t?-1:1)*x*x*v*v)/(2*(t?g:m)*x*v),e=Math.sqrt(i*i+1)-i;return e<1e-9?-18:Math.log(e)}function o(t){return(Math.exp(t)-Math.exp(-t))/2}function s(t){return(Math.exp(t)+Math.exp(-t))/2}function r(t){return o(t)/s(t)}function a(t){return m*(s(w)/s(w+y*t))}function h(t){return m*(s(w)*r(w+y*t)-o(w))/x}function u(t){return 1-Math.pow(1-t,1.5)}function l(){var e=(Date.now()-L)/b,n=u(e)*P;e<=1?(this._flyToFrame=f(l,this),this._move(this.unproject(c.add(_.subtract(c).multiplyBy(h(n)/v)),p),this.getScaleZoom(m/a(n),p),{flyTo:!0})):this._move(t,i)._moveEnd(!0)}if(!1===(e=e||{}).animate||!Ni)return this.setView(t,i,e);this._stop();var c=this.project(this.getCenter()),_=this.project(t),d=this.getSize(),p=this._zoom;t=C(t),i=void 0===i?p:i;var m=Math.max(d.x,d.y),g=m*this.getZoomScale(p,i),v=_.distanceTo(c)||1,y=1.42,x=y*y,w=n(0),L=Date.now(),P=(n(1)-w)/y,b=e.duration?1e3*e.duration:1e3*P*.8;return this._moveStart(!0,e.noMoveStart),l.call(this),this},flyToBounds:function(t,i){var e=this._getBoundsCenterZoom(t,i);return this.flyTo(e.center,e.zoom,i)},setMaxBounds:function(t){return(t=z(t)).isValid()?(this.options.maxBounds&&this.off("moveend",this._panInsideMaxBounds),this.options.maxBounds=t,this._loaded&&this._panInsideMaxBounds(),this.on("moveend",this._panInsideMaxBounds)):(this.options.maxBounds=null,this.off("moveend",this._panInsideMaxBounds))},setMinZoom:function(t){var i=this.options.minZoom;return this.options.minZoom=t,this._loaded&&i!==t&&(this.fire("zoomlevelschange"),this.getZoom()<this.options.minZoom)?this.setZoom(t):this},setMaxZoom:function(t){var i=this.options.maxZoom;return this.options.maxZoom=t,this._loaded&&i!==t&&(this.fire("zoomlevelschange"),this.getZoom()>this.options.maxZoom)?this.setZoom(t):this},panInsideBounds:function(t,i){this._enforcingBounds=!0;var e=this.getCenter(),n=this._limitCenter(e,this._zoom,z(t));return e.equals(n)||this.panTo(n,i),this._enforcingBounds=!1,this},invalidateSize:function(t){if(!this._loaded)return this;t=i({animate:!1,pan:!0},!0===t?{animate:!0}:t);var n=this.getSize();this._sizeChanged=!0,this._lastCenter=null;var o=this.getSize(),s=n.divideBy(2).round(),r=o.divideBy(2).round(),a=s.subtract(r);return a.x||a.y?(t.animate&&t.pan?this.panBy(a):(t.pan&&this._rawPanBy(a),this.fire("move"),t.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(e(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:n,newSize:o})):this},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(t){if(t=this._locateOptions=i({timeout:1e4,watch:!1},t),!("geolocation"in navigator))return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var n=e(this._handleGeolocationResponse,this),o=e(this._handleGeolocationError,this);return t.watch?this._locationWatchId=navigator.geolocation.watchPosition(n,o,t):navigator.geolocation.getCurrentPosition(n,o,t),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(t){var i=t.code,e=t.message||(1===i?"permission denied":2===i?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:i,message:"Geolocation error: "+e+"."})},_handleGeolocationResponse:function(t){var i=new M(t.coords.latitude,t.coords.longitude),e=i.toBounds(t.coords.accuracy),n=this._locateOptions;if(n.setView){var o=this.getBoundsZoom(e);this.setView(i,n.maxZoom?Math.min(o,n.maxZoom):o)}var s={latlng:i,bounds:e,timestamp:t.timestamp};for(var r in t.coords)"number"==typeof t.coords[r]&&(s[r]=t.coords[r]);this.fire("locationfound",s)},addHandler:function(t,i){if(!i)return this;var e=this[t]=new i(this);return this._handlers.push(e),this.options[t]&&e.enable(),this},remove:function(){if(this._initEvents(!0),this._containerId!==this._container._leaflet_id)throw new Error("Map container is being reused by another instance");try{delete this._container._leaflet_id,delete this._containerId}catch(t){this._container._leaflet_id=void 0,this._containerId=void 0}void 0!==this._locationWatchId&&this.stopLocate(),this._stop(),ut(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._clearHandlers(),this._loaded&&this.fire("unload");var t;for(t in this._layers)this._layers[t].remove();for(t in this._panes)ut(this._panes[t]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(t,i){var e=ht("div","leaflet-pane"+(t?" leaflet-"+t.replace("Pane","")+"-pane":""),i||this._mapPane);return t&&(this._panes[t]=e),e},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter:this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var t=this.getPixelBounds();return new T(this.unproject(t.getBottomLeft()),this.unproject(t.getTopRight()))},getMinZoom:function(){return void 0===this.options.minZoom?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return void 0===this.options.maxZoom?void 0===this._layersMaxZoom?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(t,i,e){t=z(t),e=w(e||[0,0]);var n=this.getZoom()||0,o=this.getMinZoom(),s=this.getMaxZoom(),r=t.getNorthWest(),a=t.getSouthEast(),h=this.getSize().subtract(e),u=b(this.project(a,n),this.project(r,n)).getSize(),l=Ni?this.options.zoomSnap:1,c=h.x/u.x,_=h.y/u.y,d=i?Math.max(c,_):Math.min(c,_);return n=this.getScaleZoom(d,n),l&&(n=Math.round(n/(l/100))*(l/100),n=i?Math.ceil(n/l)*l:Math.floor(n/l)*l),Math.max(o,Math.min(s,n))},getSize:function(){return this._size&&!this._sizeChanged||(this._size=new x(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(t,i){var e=this._getTopLeftPoint(t,i);return new P(e,e.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(t){return this.options.crs.getProjectedBounds(void 0===t?this.getZoom():t)},getPane:function(t){return"string"==typeof t?this._panes[t]:t},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(t,i){var e=this.options.crs;return i=void 0===i?this._zoom:i,e.scale(t)/e.scale(i)},getScaleZoom:function(t,i){var e=this.options.crs;i=void 0===i?this._zoom:i;var n=e.zoom(t*e.scale(i));return isNaN(n)?1/0:n},project:function(t,i){return i=void 0===i?this._zoom:i,this.options.crs.latLngToPoint(C(t),i)},unproject:function(t,i){return i=void 0===i?this._zoom:i,this.options.crs.pointToLatLng(w(t),i)},layerPointToLatLng:function(t){var i=w(t).add(this.getPixelOrigin());return this.unproject(i)},latLngToLayerPoint:function(t){return this.project(C(t))._round()._subtract(this.getPixelOrigin())},wrapLatLng:function(t){return this.options.crs.wrapLatLng(C(t))},wrapLatLngBounds:function(t){return this.options.crs.wrapLatLngBounds(z(t))},distance:function(t,i){return this.options.crs.distance(C(t),C(i))},containerPointToLayerPoint:function(t){return w(t).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(t){return w(t).add(this._getMapPanePos())},containerPointToLatLng:function(t){var i=this.containerPointToLayerPoint(w(t));return this.layerPointToLatLng(i)},latLngToContainerPoint:function(t){return this.layerPointToContainerPoint(this.latLngToLayerPoint(C(t)))},mouseEventToContainerPoint:function(t){return tt(t,this._container)},mouseEventToLayerPoint:function(t){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(t))},mouseEventToLatLng:function(t){return this.layerPointToLatLng(this.mouseEventToLayerPoint(t))},_initContainer:function(t){var i=this._container=rt(t);if(!i)throw new Error("Map container not found.");if(i._leaflet_id)throw new Error("Map container is already initialized.");V(i,"scroll",this._onScroll,this),this._containerId=n(i)},_initLayout:function(){var t=this._container;this._fadeAnimated=this.options.fadeAnimation&&Ni,pt(t,"leaflet-container"+(Vi?" leaflet-touch":"")+(Ki?" leaflet-retina":"")+(Li?" leaflet-oldie":"")+(ki?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":""));var i=at(t,"position");"absolute"!==i&&"relative"!==i&&"fixed"!==i&&(t.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var t=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),Lt(this._mapPane,new x(0,0)),this.createPane("tilePane"),this.createPane("shadowPane"),this.createPane("overlayPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(pt(t.markerPane,"leaflet-zoom-hide"),pt(t.shadowPane,"leaflet-zoom-hide"))},_resetView:function(t,i){Lt(this._mapPane,new x(0,0));var e=!this._loaded;this._loaded=!0,i=this._limitZoom(i),this.fire("viewprereset");var n=this._zoom!==i;this._moveStart(n,!1)._move(t,i)._moveEnd(n),this.fire("viewreset"),e&&this.fire("load")},_moveStart:function(t,i){return t&&this.fire("zoomstart"),i||this.fire("movestart"),this},_move:function(t,i,e){void 0===i&&(i=this._zoom);var n=this._zoom!==i;return this._zoom=i,this._lastCenter=t,this._pixelOrigin=this._getNewPixelOrigin(t),(n||e&&e.pinch)&&this.fire("zoom",e),this.fire("move",e)},_moveEnd:function(t){return t&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return g(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(t){Lt(this._mapPane,this._getMapPanePos().subtract(t))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(t){this._targets={},this._targets[n(this._container)]=this;var i=t?q:V;i(this._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress",this._handleDOMEvent,this),this.options.trackResize&&i(window,"resize",this._onResize,this),Ni&&this.options.transform3DLimit&&(t?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){g(this._resizeRequest),this._resizeRequest=f(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var t=this._getMapPanePos();Math.max(Math.abs(t.x),Math.abs(t.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(t,i){for(var e,o=[],s="mouseout"===i||"mouseover"===i,r=t.target||t.srcElement,a=!1;r;){if((e=this._targets[n(r)])&&("click"===i||"preclick"===i)&&!t._simulated&&this._draggableMoved(e)){a=!0;break}if(e&&e.listens(i,!0)){if(s&&!ot(r,t))break;if(o.push(e),s)break}if(r===this._container)break;r=r.parentNode}return o.length||a||s||!ot(r,t)||(o=[this]),o},_handleDOMEvent:function(t){if(this._loaded&&!nt(t)){var i=t.type;"mousedown"!==i&&"keypress"!==i||zt(t.target||t.srcElement),this._fireDOMEvent(t,i)}},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(t,e,n){if("click"===t.type){var o=i({},t);o.type="preclick",this._fireDOMEvent(o,o.type,n)}if(!t._stopped&&(n=(n||[]).concat(this._findEventTargets(t,e))).length){var s=n[0];"contextmenu"===e&&s.listens(e,!0)&&$(t);var r={originalEvent:t};if("keypress"!==t.type){var a=s.getLatLng&&(!s._radius||s._radius<=10);r.containerPoint=a?this.latLngToContainerPoint(s.getLatLng()):this.mouseEventToContainerPoint(t),r.layerPoint=this.containerPointToLayerPoint(r.containerPoint),r.latlng=a?s.getLatLng():this.layerPointToLatLng(r.layerPoint)}for(var h=0;h<n.length;h++)if(n[h].fire(e,r,!0),r.originalEvent._stopped||!1===n[h].options.bubblingMouseEvents&&-1!==d(this._mouseEvents,e))return}},_draggableMoved:function(t){return(t=t.dragging&&t.dragging.enabled()?t:this).dragging&&t.dragging.moved()||this.boxZoom&&this.boxZoom.moved()},_clearHandlers:function(){for(var t=0,i=this._handlers.length;t<i;t++)this._handlers[t].disable()},whenReady:function(t,i){return this._loaded?t.call(i||this,{target:this}):this.on("load",t,i),this},_getMapPanePos:function(){return Pt(this._mapPane)||new x(0,0)},_moved:function(){var t=this._getMapPanePos();return t&&!t.equals([0,0])},_getTopLeftPoint:function(t,i){return(t&&void 0!==i?this._getNewPixelOrigin(t,i):this.getPixelOrigin()).subtract(this._getMapPanePos())},_getNewPixelOrigin:function(t,i){var e=this.getSize()._divideBy(2);return this.project(t,i)._subtract(e)._add(this._getMapPanePos())._round()},_latLngToNewLayerPoint:function(t,i,e){var n=this._getNewPixelOrigin(e,i);return this.project(t,i)._subtract(n)},_latLngBoundsToNewLayerBounds:function(t,i,e){var n=this._getNewPixelOrigin(e,i);return b([this.project(t.getSouthWest(),i)._subtract(n),this.project(t.getNorthWest(),i)._subtract(n),this.project(t.getSouthEast(),i)._subtract(n),this.project(t.getNorthEast(),i)._subtract(n)])},_getCenterLayerPoint:function(){return this.containerPointToLayerPoint(this.getSize()._divideBy(2))},_getCenterOffset:function(t){return this.latLngToLayerPoint(t).subtract(this._getCenterLayerPoint())},_limitCenter:function(t,i,e){if(!e)return t;var n=this.project(t,i),o=this.getSize().divideBy(2),s=new P(n.subtract(o),n.add(o)),r=this._getBoundsOffset(s,e,i);return r.round().equals([0,0])?t:this.unproject(n.add(r),i)},_limitOffset:function(t,i){if(!i)return t;var e=this.getPixelBounds(),n=new P(e.min.add(t),e.max.add(t));return t.add(this._getBoundsOffset(n,i))},_getBoundsOffset:function(t,i,e){var n=b(this.project(i.getNorthEast(),e),this.project(i.getSouthWest(),e)),o=n.min.subtract(t.min),s=n.max.subtract(t.max);return new x(this._rebound(o.x,-s.x),this._rebound(o.y,-s.y))},_rebound:function(t,i){return t+i>0?Math.round(t-i)/2:Math.max(0,Math.ceil(t))-Math.max(0,Math.floor(i))},_limitZoom:function(t){var i=this.getMinZoom(),e=this.getMaxZoom(),n=Ni?this.options.zoomSnap:1;return n&&(t=Math.round(t/n)*n),Math.max(i,Math.min(e,t))},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){mt(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(t,i){var e=this._getCenterOffset(t)._trunc();return!(!0!==(i&&i.animate)&&!this.getSize().contains(e))&&(this.panBy(e,i),!0)},_createAnimProxy:function(){var t=this._proxy=ht("div","leaflet-proxy leaflet-zoom-animated");this._panes.mapPane.appendChild(t),this.on("zoomanim",function(t){var i=pe,e=this._proxy.style[i];wt(this._proxy,this.project(t.center,t.zoom),this.getZoomScale(t.zoom,1)),e===this._proxy.style[i]&&this._animatingZoom&&this._onZoomTransitionEnd()},this),this.on("load moveend",function(){var t=this.getCenter(),i=this.getZoom();wt(this._proxy,this.project(t,i),this.getZoomScale(i,1))},this),this._on("unload",this._destroyAnimProxy,this)},_destroyAnimProxy:function(){ut(this._proxy),delete this._proxy},_catchTransitionEnd:function(t){this._animatingZoom&&t.propertyName.indexOf("transform")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(t,i,e){if(this._animatingZoom)return!0;if(e=e||{},!this._zoomAnimated||!1===e.animate||this._nothingToAnimate()||Math.abs(i-this._zoom)>this.options.zoomAnimationThreshold)return!1;var n=this.getZoomScale(i),o=this._getCenterOffset(t)._divideBy(1-1/n);return!(!0!==e.animate&&!this.getSize().contains(o))&&(f(function(){this._moveStart(!0,!1)._animateZoom(t,i,!0)},this),!0)},_animateZoom:function(t,i,n,o){this._mapPane&&(n&&(this._animatingZoom=!0,this._animateToCenter=t,this._animateToZoom=i,pt(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:t,zoom:i,noUpdate:o}),setTimeout(e(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&mt(this._mapPane,"leaflet-zoom-anim"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom),f(function(){this._moveEnd(!0)},this))}}),Pe=v.extend({options:{position:"topright"},initialize:function(t){l(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var i=this._map;return i&&i.removeControl(this),this.options.position=t,i&&i.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this.remove(),this._map=t;var i=this._container=this.onAdd(t),e=this.getPosition(),n=t._controlCorners[e];return pt(i,"leaflet-control"),-1!==e.indexOf("bottom")?n.insertBefore(i,n.firstChild):n.appendChild(i),this},remove:function(){return this._map?(ut(this._container),this.onRemove&&this.onRemove(this._map),this._map=null,this):this},_refocusOnMap:function(t){this._map&&t&&t.screenX>0&&t.screenY>0&&this._map.getContainer().focus()}}),be=function(t){return new Pe(t)};Le.include({addControl:function(t){return t.addTo(this),this},removeControl:function(t){return t.remove(),this},_initControlPos:function(){function t(t,o){var s=e+t+" "+e+o;i[t+o]=ht("div",s,n)}var i=this._controlCorners={},e="leaflet-",n=this._controlContainer=ht("div",e+"control-container",this._container);t("top","left"),t("top","right"),t("bottom","left"),t("bottom","right")},_clearControlPos:function(){for(var t in this._controlCorners)ut(this._controlCorners[t]);ut(this._controlContainer),delete this._controlCorners,delete this._controlContainer}});var Te=Pe.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0,hideSingleBase:!1,sortLayers:!1,sortFunction:function(t,i,e,n){return e<n?-1:n<e?1:0}},initialize:function(t,i,e){l(this,e),this._layerControlInputs=[],this._layers=[],this._lastZIndex=0,this._handlingClick=!1;for(var n in t)this._addLayer(t[n],n);for(n in i)this._addLayer(i[n],n,!0)},onAdd:function(t){this._initLayout(),this._update(),this._map=t,t.on("zoomend",this._checkDisabledLayers,this);for(var i=0;i<this._layers.length;i++)this._layers[i].layer.on("add remove",this._onLayerChange,this);return this._container},addTo:function(t){return Pe.prototype.addTo.call(this,t),this._expandIfNotCollapsed()},onRemove:function(){this._map.off("zoomend",this._checkDisabledLayers,this);for(var t=0;t<this._layers.length;t++)this._layers[t].layer.off("add remove",this._onLayerChange,this)},addBaseLayer:function(t,i){return this._addLayer(t,i),this._map?this._update():this},addOverlay:function(t,i){return this._addLayer(t,i,!0),this._map?this._update():this},removeLayer:function(t){t.off("add remove",this._onLayerChange,this);var i=this._getLayer(n(t));return i&&this._layers.splice(this._layers.indexOf(i),1),this._map?this._update():this},expand:function(){pt(this._container,"leaflet-control-layers-expanded"),this._form.style.height=null;var t=this._map.getSize().y-(this._container.offsetTop+50);return t<this._form.clientHeight?(pt(this._form,"leaflet-control-layers-scrollbar"),this._form.style.height=t+"px"):mt(this._form,"leaflet-control-layers-scrollbar"),this._checkDisabledLayers(),this},collapse:function(){return mt(this._container,"leaflet-control-layers-expanded"),this},_initLayout:function(){var t="leaflet-control-layers",i=this._container=ht("div",t),e=this.options.collapsed;i.setAttribute("aria-haspopup",!0),J(i),X(i);var n=this._form=ht("form",t+"-list");e&&(this._map.on("click",this.collapse,this),Ti||V(i,{mouseenter:this.expand,mouseleave:this.collapse},this));var o=this._layersLink=ht("a",t+"-toggle",i);o.href="#",o.title="Layers",Vi?(V(o,"click",Q),V(o,"click",this.expand,this)):V(o,"focus",this.expand,this),e||this.expand(),this._baseLayersList=ht("div",t+"-base",n),this._separator=ht("div",t+"-separator",n),this._overlaysList=ht("div",t+"-overlays",n),i.appendChild(n)},_getLayer:function(t){for(var i=0;i<this._layers.length;i++)if(this._layers[i]&&n(this._layers[i].layer)===t)return this._layers[i]},_addLayer:function(t,i,n){this._map&&t.on("add remove",this._onLayerChange,this),this._layers.push({layer:t,name:i,overlay:n}),this.options.sortLayers&&this._layers.sort(e(function(t,i){return this.options.sortFunction(t.layer,i.layer,t.name,i.name)},this)),this.options.autoZIndex&&t.setZIndex&&(this._lastZIndex++,t.setZIndex(this._lastZIndex)),this._expandIfNotCollapsed()},_update:function(){if(!this._container)return this;lt(this._baseLayersList),lt(this._overlaysList),this._layerControlInputs=[];var t,i,e,n,o=0;for(e=0;e<this._layers.length;e++)n=this._layers[e],this._addItem(n),i=i||n.overlay,t=t||!n.overlay,o+=n.overlay?0:1;return this.options.hideSingleBase&&(t=t&&o>1,this._baseLayersList.style.display=t?"":"none"),this._separator.style.display=i&&t?"":"none",this},_onLayerChange:function(t){this._handlingClick||this._update();var i=this._getLayer(n(t.target)),e=i.overlay?"add"===t.type?"overlayadd":"overlayremove":"add"===t.type?"baselayerchange":null;e&&this._map.fire(e,i)},_createRadioElement:function(t,i){var e='<input type="radio" class="leaflet-control-layers-selector" name="'+t+'"'+(i?' checked="checked"':"")+"/>",n=document.createElement("div");return n.innerHTML=e,n.firstChild},_addItem:function(t){var i,e=document.createElement("label"),o=this._map.hasLayer(t.layer);t.overlay?((i=document.createElement("input")).type="checkbox",i.className="leaflet-control-layers-selector",i.defaultChecked=o):i=this._createRadioElement("leaflet-base-layers",o),this._layerControlInputs.push(i),i.layerId=n(t.layer),V(i,"click",this._onInputClick,this);var s=document.createElement("span");s.innerHTML=" "+t.name;var r=document.createElement("div");return e.appendChild(r),r.appendChild(i),r.appendChild(s),(t.overlay?this._overlaysList:this._baseLayersList).appendChild(e),this._checkDisabledLayers(),e},_onInputClick:function(){var t,i,e=this._layerControlInputs,n=[],o=[];this._handlingClick=!0;for(var s=e.length-1;s>=0;s--)t=e[s],i=this._getLayer(t.layerId).layer,t.checked?n.push(i):t.checked||o.push(i);for(s=0;s<o.length;s++)this._map.hasLayer(o[s])&&this._map.removeLayer(o[s]);for(s=0;s<n.length;s++)this._map.hasLayer(n[s])||this._map.addLayer(n[s]);this._handlingClick=!1,this._refocusOnMap()},_checkDisabledLayers:function(){for(var t,i,e=this._layerControlInputs,n=this._map.getZoom(),o=e.length-1;o>=0;o--)t=e[o],i=this._getLayer(t.layerId).layer,t.disabled=void 0!==i.options.minZoom&&n<i.options.minZoom||void 0!==i.options.maxZoom&&n>i.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this},_expand:function(){return this.expand()},_collapse:function(){return this.collapse()}}),ze=Pe.extend({options:{position:"topleft",zoomInText:"+",zoomInTitle:"Zoom in",zoomOutText:"−",zoomOutTitle:"Zoom out"},onAdd:function(t){var i="leaflet-control-zoom",e=ht("div",i+" leaflet-bar"),n=this.options;return this._zoomInButton=this._createButton(n.zoomInText,n.zoomInTitle,i+"-in",e,this._zoomIn),this._zoomOutButton=this._createButton(n.zoomOutText,n.zoomOutTitle,i+"-out",e,this._zoomOut),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),e},onRemove:function(t){t.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(t){!this._disabled&&this._map._zoom<this._map.getMaxZoom()&&this._map.zoomIn(this._map.options.zoomDelta*(t.shiftKey?3:1))},_zoomOut:function(t){!this._disabled&&this._map._zoom>this._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(t.shiftKey?3:1))},_createButton:function(t,i,e,n,o){var s=ht("a",e,n);return s.innerHTML=t,s.href="#",s.title=i,s.setAttribute("role","button"),s.setAttribute("aria-label",i),J(s),V(s,"click",Q),V(s,"click",o,this),V(s,"click",this._refocusOnMap,this),s},_updateDisabled:function(){var t=this._map,i="leaflet-disabled";mt(this._zoomInButton,i),mt(this._zoomOutButton,i),(this._disabled||t._zoom===t.getMinZoom())&&pt(this._zoomOutButton,i),(this._disabled||t._zoom===t.getMaxZoom())&&pt(this._zoomInButton,i)}});Le.mergeOptions({zoomControl:!0}),Le.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new ze,this.addControl(this.zoomControl))});var Me=Pe.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(t){var i=ht("div","leaflet-control-scale"),e=this.options;return this._addScales(e,"leaflet-control-scale-line",i),t.on(e.updateWhenIdle?"moveend":"move",this._update,this),t.whenReady(this._update,this),i},onRemove:function(t){t.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(t,i,e){t.metric&&(this._mScale=ht("div",i,e)),t.imperial&&(this._iScale=ht("div",i,e))},_update:function(){var t=this._map,i=t.getSize().y/2,e=t.distance(t.containerPointToLatLng([0,i]),t.containerPointToLatLng([this.options.maxWidth,i]));this._updateScales(e)},_updateScales:function(t){this.options.metric&&t&&this._updateMetric(t),this.options.imperial&&t&&this._updateImperial(t)},_updateMetric:function(t){var i=this._getRoundNum(t),e=i<1e3?i+" m":i/1e3+" km";this._updateScale(this._mScale,e,i/t)},_updateImperial:function(t){var i,e,n,o=3.2808399*t;o>5280?(i=o/5280,e=this._getRoundNum(i),this._updateScale(this._iScale,e+" mi",e/i)):(n=this._getRoundNum(o),this._updateScale(this._iScale,n+" ft",n/o))},_updateScale:function(t,i,e){t.style.width=Math.round(this.options.maxWidth*e)+"px",t.innerHTML=i},_getRoundNum:function(t){var i=Math.pow(10,(Math.floor(t)+"").length-1),e=t/i;return e=e>=10?10:e>=5?5:e>=3?3:e>=2?2:1,i*e}}),Ce=Pe.extend({options:{position:"bottomright",prefix:'<a href="https://leafletjs.com" title="A JS library for interactive maps">Leaflet</a>'},initialize:function(t){l(this,t),this._attributions={}},onAdd:function(t){t.attributionControl=this,this._container=ht("div","leaflet-control-attribution"),J(this._container);for(var i in t._layers)t._layers[i].getAttribution&&this.addAttribution(t._layers[i].getAttribution());return this._update(),this._container},setPrefix:function(t){return this.options.prefix=t,this._update(),this},addAttribution:function(t){return t?(this._attributions[t]||(this._attributions[t]=0),this._attributions[t]++,this._update(),this):this},removeAttribution:function(t){return t?(this._attributions[t]&&(this._attributions[t]--,this._update()),this):this},_update:function(){if(this._map){var t=[];for(var i in this._attributions)this._attributions[i]&&t.push(i);var e=[];this.options.prefix&&e.push(this.options.prefix),t.length&&e.push(t.join(", ")),this._container.innerHTML=e.join(" | ")}}});Le.mergeOptions({attributionControl:!0}),Le.addInitHook(function(){this.options.attributionControl&&(new Ce).addTo(this)});Pe.Layers=Te,Pe.Zoom=ze,Pe.Scale=Me,Pe.Attribution=Ce,be.layers=function(t,i,e){return new Te(t,i,e)},be.zoom=function(t){return new ze(t)},be.scale=function(t){return new Me(t)},be.attribution=function(t){return new Ce(t)};var Ze=v.extend({initialize:function(t){this._map=t},enable:function(){return this._enabled?this:(this._enabled=!0,this.addHooks(),this)},disable:function(){return this._enabled?(this._enabled=!1,this.removeHooks(),this):this},enabled:function(){return!!this._enabled}});Ze.addTo=function(t,i){return t.addHandler(i,this),this};var Se,Ee={Events:hi},ke=Vi?"touchstart mousedown":"mousedown",Ae={mousedown:"mouseup",touchstart:"touchend",pointerdown:"touchend",MSPointerDown:"touchend"},Ie={mousedown:"mousemove",touchstart:"touchmove",pointerdown:"touchmove",MSPointerDown:"touchmove"},Be=ui.extend({options:{clickTolerance:3},initialize:function(t,i,e,n){l(this,n),this._element=t,this._dragStartTarget=i||t,this._preventOutline=e},enable:function(){this._enabled||(V(this._dragStartTarget,ke,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(Be._dragging===this&&this.finishDrag(),q(this._dragStartTarget,ke,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(t){if(!t._simulated&&this._enabled&&(this._moved=!1,!dt(this._element,"leaflet-zoom-anim")&&!(Be._dragging||t.shiftKey||1!==t.which&&1!==t.button&&!t.touches||(Be._dragging=this,this._preventOutline&&zt(this._element),bt(),mi(),this._moving)))){this.fire("down");var i=t.touches?t.touches[0]:t;this._startPoint=new x(i.clientX,i.clientY),V(document,Ie[t.type],this._onMove,this),V(document,Ae[t.type],this._onUp,this)}},_onMove:function(t){if(!t._simulated&&this._enabled)if(t.touches&&t.touches.length>1)this._moved=!0;else{var i=t.touches&&1===t.touches.length?t.touches[0]:t,e=new x(i.clientX,i.clientY).subtract(this._startPoint);(e.x||e.y)&&(Math.abs(e.x)+Math.abs(e.y)<this.options.clickTolerance||($(t),this._moved||(this.fire("dragstart"),this._moved=!0,this._startPos=Pt(this._element).subtract(e),pt(document.body,"leaflet-dragging"),this._lastTarget=t.target||t.srcElement,window.SVGElementInstance&&this._lastTarget instanceof SVGElementInstance&&(this._lastTarget=this._lastTarget.correspondingUseElement),pt(this._lastTarget,"leaflet-drag-target")),this._newPos=this._startPos.add(e),this._moving=!0,g(this._animRequest),this._lastEvent=t,this._animRequest=f(this._updatePosition,this,!0)))}},_updatePosition:function(){var t={originalEvent:this._lastEvent};this.fire("predrag",t),Lt(this._element,this._newPos),this.fire("drag",t)},_onUp:function(t){!t._simulated&&this._enabled&&this.finishDrag()},finishDrag:function(){mt(document.body,"leaflet-dragging"),this._lastTarget&&(mt(this._lastTarget,"leaflet-drag-target"),this._lastTarget=null);for(var t in Ie)q(document,Ie[t],this._onMove,this),q(document,Ae[t],this._onUp,this);Tt(),fi(),this._moved&&this._moving&&(g(this._animRequest),this.fire("dragend",{distance:this._newPos.distanceTo(this._startPos)})),this._moving=!1,Be._dragging=!1}}),Oe=(Object.freeze||Object)({simplify:Ct,pointToSegmentDistance:Zt,closestPointOnSegment:function(t,i,e){return Rt(t,i,e)},clipSegment:At,_getEdgeIntersection:It,_getBitCode:Bt,_sqClosestPointOnSegment:Rt,isFlat:Dt,_flat:Nt}),Re=(Object.freeze||Object)({clipPolygon:jt}),De={project:function(t){return new x(t.lng,t.lat)},unproject:function(t){return new M(t.y,t.x)},bounds:new P([-180,-90],[180,90])},Ne={R:6378137,R_MINOR:6356752.314245179,bounds:new P([-20037508.34279,-15496570.73972],[20037508.34279,18764656.23138]),project:function(t){var i=Math.PI/180,e=this.R,n=t.lat*i,o=this.R_MINOR/e,s=Math.sqrt(1-o*o),r=s*Math.sin(n),a=Math.tan(Math.PI/4-n/2)/Math.pow((1-r)/(1+r),s/2);return n=-e*Math.log(Math.max(a,1e-10)),new x(t.lng*i*e,n)},unproject:function(t){for(var i,e=180/Math.PI,n=this.R,o=this.R_MINOR/n,s=Math.sqrt(1-o*o),r=Math.exp(-t.y/n),a=Math.PI/2-2*Math.atan(r),h=0,u=.1;h<15&&Math.abs(u)>1e-7;h++)i=s*Math.sin(a),i=Math.pow((1-i)/(1+i),s/2),a+=u=Math.PI/2-2*Math.atan(r*i)-a;return new M(a*e,t.x*e/n)}},je=(Object.freeze||Object)({LonLat:De,Mercator:Ne,SphericalMercator:di}),We=i({},_i,{code:"EPSG:3395",projection:Ne,transformation:function(){var t=.5/(Math.PI*Ne.R);return S(t,.5,-t,.5)}()}),He=i({},_i,{code:"EPSG:4326",projection:De,transformation:S(1/180,1,-1/180,.5)}),Fe=i({},ci,{projection:De,transformation:S(1,0,-1,0),scale:function(t){return Math.pow(2,t)},zoom:function(t){return Math.log(t)/Math.LN2},distance:function(t,i){var e=i.lng-t.lng,n=i.lat-t.lat;return Math.sqrt(e*e+n*n)},infinite:!0});ci.Earth=_i,ci.EPSG3395=We,ci.EPSG3857=vi,ci.EPSG900913=yi,ci.EPSG4326=He,ci.Simple=Fe;var Ue=ui.extend({options:{pane:"overlayPane",attribution:null,bubblingMouseEvents:!0},addTo:function(t){return t.addLayer(this),this},remove:function(){return this.removeFrom(this._map||this._mapToAdd)},removeFrom:function(t){return t&&t.removeLayer(this),this},getPane:function(t){return this._map.getPane(t?this.options[t]||t:this.options.pane)},addInteractiveTarget:function(t){return this._map._targets[n(t)]=this,this},removeInteractiveTarget:function(t){return delete this._map._targets[n(t)],this},getAttribution:function(){return this.options.attribution},_layerAdd:function(t){var i=t.target;if(i.hasLayer(this)){if(this._map=i,this._zoomAnimated=i._zoomAnimated,this.getEvents){var e=this.getEvents();i.on(e,this),this.once("remove",function(){i.off(e,this)},this)}this.onAdd(i),this.getAttribution&&i.attributionControl&&i.attributionControl.addAttribution(this.getAttribution()),this.fire("add"),i.fire("layeradd",{layer:this})}}});Le.include({addLayer:function(t){if(!t._layerAdd)throw new Error("The provided object is not a Layer.");var i=n(t);return this._layers[i]?this:(this._layers[i]=t,t._mapToAdd=this,t.beforeAdd&&t.beforeAdd(this),this.whenReady(t._layerAdd,t),this)},removeLayer:function(t){var i=n(t);return this._layers[i]?(this._loaded&&t.onRemove(this),t.getAttribution&&this.attributionControl&&this.attributionControl.removeAttribution(t.getAttribution()),delete this._layers[i],this._loaded&&(this.fire("layerremove",{layer:t}),t.fire("remove")),t._map=t._mapToAdd=null,this):this},hasLayer:function(t){return!!t&&n(t)in this._layers},eachLayer:function(t,i){for(var e in this._layers)t.call(i,this._layers[e]);return this},_addLayers:function(t){for(var i=0,e=(t=t?ei(t)?t:[t]:[]).length;i<e;i++)this.addLayer(t[i])},_addZoomLimit:function(t){!isNaN(t.options.maxZoom)&&isNaN(t.options.minZoom)||(this._zoomBoundLayers[n(t)]=t,this._updateZoomLevels())},_removeZoomLimit:function(t){var i=n(t);this._zoomBoundLayers[i]&&(delete this._zoomBoundLayers[i],this._updateZoomLevels())},_updateZoomLevels:function(){var t=1/0,i=-1/0,e=this._getZoomSpan();for(var n in this._zoomBoundLayers){var o=this._zoomBoundLayers[n].options;t=void 0===o.minZoom?t:Math.min(t,o.minZoom),i=void 0===o.maxZoom?i:Math.max(i,o.maxZoom)}this._layersMaxZoom=i===-1/0?void 0:i,this._layersMinZoom=t===1/0?void 0:t,e!==this._getZoomSpan()&&this.fire("zoomlevelschange"),void 0===this.options.maxZoom&&this._layersMaxZoom&&this.getZoom()>this._layersMaxZoom&&this.setZoom(this._layersMaxZoom),void 0===this.options.minZoom&&this._layersMinZoom&&this.getZoom()<this._layersMinZoom&&this.setZoom(this._layersMinZoom)}});var Ve=Ue.extend({initialize:function(t,i){l(this,i),this._layers={};var e,n;if(t)for(e=0,n=t.length;e<n;e++)this.addLayer(t[e])},addLayer:function(t){var i=this.getLayerId(t);return this._layers[i]=t,this._map&&this._map.addLayer(t),this},removeLayer:function(t){var i=t in this._layers?t:this.getLayerId(t);return this._map&&this._layers[i]&&this._map.removeLayer(this._layers[i]),delete this._layers[i],this},hasLayer:function(t){return!!t&&(t in this._layers||this.getLayerId(t)in this._layers)},clearLayers:function(){return this.eachLayer(this.removeLayer,this)},invoke:function(t){var i,e,n=Array.prototype.slice.call(arguments,1);for(i in this._layers)(e=this._layers[i])[t]&&e[t].apply(e,n);return this},onAdd:function(t){this.eachLayer(t.addLayer,t)},onRemove:function(t){this.eachLayer(t.removeLayer,t)},eachLayer:function(t,i){for(var e in this._layers)t.call(i,this._layers[e]);return this},getLayer:function(t){return this._layers[t]},getLayers:function(){var t=[];return this.eachLayer(t.push,t),t},setZIndex:function(t){return this.invoke("setZIndex",t)},getLayerId:function(t){return n(t)}}),qe=Ve.extend({addLayer:function(t){return this.hasLayer(t)?this:(t.addEventParent(this),Ve.prototype.addLayer.call(this,t),this.fire("layeradd",{layer:t}))},removeLayer:function(t){return this.hasLayer(t)?(t in this._layers&&(t=this._layers[t]),t.removeEventParent(this),Ve.prototype.removeLayer.call(this,t),this.fire("layerremove",{layer:t})):this},setStyle:function(t){return this.invoke("setStyle",t)},bringToFront:function(){return this.invoke("bringToFront")},bringToBack:function(){return this.invoke("bringToBack")},getBounds:function(){var t=new T;for(var i in this._layers){var e=this._layers[i];t.extend(e.getBounds?e.getBounds():e.getLatLng())}return t}}),Ge=v.extend({options:{popupAnchor:[0,0],tooltipAnchor:[0,0]},initialize:function(t){l(this,t)},createIcon:function(t){return this._createIcon("icon",t)},createShadow:function(t){return this._createIcon("shadow",t)},_createIcon:function(t,i){var e=this._getIconUrl(t);if(!e){if("icon"===t)throw new Error("iconUrl not set in Icon options (see the docs).");return null}var n=this._createImg(e,i&&"IMG"===i.tagName?i:null);return this._setIconStyles(n,t),n},_setIconStyles:function(t,i){var e=this.options,n=e[i+"Size"];"number"==typeof n&&(n=[n,n]);var o=w(n),s=w("shadow"===i&&e.shadowAnchor||e.iconAnchor||o&&o.divideBy(2,!0));t.className="leaflet-marker-"+i+" "+(e.className||""),s&&(t.style.marginLeft=-s.x+"px",t.style.marginTop=-s.y+"px"),o&&(t.style.width=o.x+"px",t.style.height=o.y+"px")},_createImg:function(t,i){return i=i||document.createElement("img"),i.src=t,i},_getIconUrl:function(t){return Ki&&this.options[t+"RetinaUrl"]||this.options[t+"Url"]}}),Ke=Ge.extend({options:{iconUrl:"marker-icon.png",iconRetinaUrl:"marker-icon-2x.png",shadowUrl:"marker-shadow.png",iconSize:[25,41],iconAnchor:[12,41],popupAnchor:[1,-34],tooltipAnchor:[16,-28],shadowSize:[41,41]},_getIconUrl:function(t){return Ke.imagePath||(Ke.imagePath=this._detectIconPath()),(this.options.imagePath||Ke.imagePath)+Ge.prototype._getIconUrl.call(this,t)},_detectIconPath:function(){var t=ht("div","leaflet-default-icon-path",document.body),i=at(t,"background-image")||at(t,"backgroundImage");return document.body.removeChild(t),i=null===i||0!==i.indexOf("url")?"":i.replace(/^url\(["']?/,"").replace(/marker-icon\.png["']?\)$/,"")}}),Ye=Ze.extend({initialize:function(t){this._marker=t},addHooks:function(){var t=this._marker._icon;this._draggable||(this._draggable=new Be(t,t,!0)),this._draggable.on({dragstart:this._onDragStart,predrag:this._onPreDrag,drag:this._onDrag,dragend:this._onDragEnd},this).enable(),pt(t,"leaflet-marker-draggable")},removeHooks:function(){this._draggable.off({dragstart:this._onDragStart,predrag:this._onPreDrag,drag:this._onDrag,dragend:this._onDragEnd},this).disable(),this._marker._icon&&mt(this._marker._icon,"leaflet-marker-draggable")},moved:function(){return this._draggable&&this._draggable._moved},_adjustPan:function(t){var i=this._marker,e=i._map,n=this._marker.options.autoPanSpeed,o=this._marker.options.autoPanPadding,s=L.DomUtil.getPosition(i._icon),r=e.getPixelBounds(),a=e.getPixelOrigin(),h=b(r.min._subtract(a).add(o),r.max._subtract(a).subtract(o));if(!h.contains(s)){var u=w((Math.max(h.max.x,s.x)-h.max.x)/(r.max.x-h.max.x)-(Math.min(h.min.x,s.x)-h.min.x)/(r.min.x-h.min.x),(Math.max(h.max.y,s.y)-h.max.y)/(r.max.y-h.max.y)-(Math.min(h.min.y,s.y)-h.min.y)/(r.min.y-h.min.y)).multiplyBy(n);e.panBy(u,{animate:!1}),this._draggable._newPos._add(u),this._draggable._startPos._add(u),L.DomUtil.setPosition(i._icon,this._draggable._newPos),this._onDrag(t),this._panRequest=f(this._adjustPan.bind(this,t))}},_onDragStart:function(){this._oldLatLng=this._marker.getLatLng(),this._marker.closePopup().fire("movestart").fire("dragstart")},_onPreDrag:function(t){this._marker.options.autoPan&&(g(this._panRequest),this._panRequest=f(this._adjustPan.bind(this,t)))},_onDrag:function(t){var i=this._marker,e=i._shadow,n=Pt(i._icon),o=i._map.layerPointToLatLng(n);e&&Lt(e,n),i._latlng=o,t.latlng=o,t.oldLatLng=this._oldLatLng,i.fire("move",t).fire("drag",t)},_onDragEnd:function(t){g(this._panRequest),delete this._oldLatLng,this._marker.fire("moveend").fire("dragend",t)}}),Xe=Ue.extend({options:{icon:new Ke,interactive:!0,draggable:!1,autoPan:!1,autoPanPadding:[50,50],autoPanSpeed:10,keyboard:!0,title:"",alt:"",zIndexOffset:0,opacity:1,riseOnHover:!1,riseOffset:250,pane:"markerPane",bubblingMouseEvents:!1},initialize:function(t,i){l(this,i),this._latlng=C(t)},onAdd:function(t){this._zoomAnimated=this._zoomAnimated&&t.options.markerZoomAnimation,this._zoomAnimated&&t.on("zoomanim",this._animateZoom,this),this._initIcon(),this.update()},onRemove:function(t){this.dragging&&this.dragging.enabled()&&(this.options.draggable=!0,this.dragging.removeHooks()),delete this.dragging,this._zoomAnimated&&t.off("zoomanim",this._animateZoom,this),this._removeIcon(),this._removeShadow()},getEvents:function(){return{zoom:this.update,viewreset:this.update}},getLatLng:function(){return this._latlng},setLatLng:function(t){var i=this._latlng;return this._latlng=C(t),this.update(),this.fire("move",{oldLatLng:i,latlng:this._latlng})},setZIndexOffset:function(t){return this.options.zIndexOffset=t,this.update()},setIcon:function(t){return this.options.icon=t,this._map&&(this._initIcon(),this.update()),this._popup&&this.bindPopup(this._popup,this._popup.options),this},getElement:function(){return this._icon},update:function(){if(this._icon&&this._map){var t=this._map.latLngToLayerPoint(this._latlng).round();this._setPos(t)}return this},_initIcon:function(){var t=this.options,i="leaflet-zoom-"+(this._zoomAnimated?"animated":"hide"),e=t.icon.createIcon(this._icon),n=!1;e!==this._icon&&(this._icon&&this._removeIcon(),n=!0,t.title&&(e.title=t.title),"IMG"===e.tagName&&(e.alt=t.alt||"")),pt(e,i),t.keyboard&&(e.tabIndex="0"),this._icon=e,t.riseOnHover&&this.on({mouseover:this._bringToFront,mouseout:this._resetZIndex});var o=t.icon.createShadow(this._shadow),s=!1;o!==this._shadow&&(this._removeShadow(),s=!0),o&&(pt(o,i),o.alt=""),this._shadow=o,t.opacity<1&&this._updateOpacity(),n&&this.getPane().appendChild(this._icon),this._initInteraction(),o&&s&&this.getPane("shadowPane").appendChild(this._shadow)},_removeIcon:function(){this.options.riseOnHover&&this.off({mouseover:this._bringToFront,mouseout:this._resetZIndex}),ut(this._icon),this.removeInteractiveTarget(this._icon),this._icon=null},_removeShadow:function(){this._shadow&&ut(this._shadow),this._shadow=null},_setPos:function(t){Lt(this._icon,t),this._shadow&&Lt(this._shadow,t),this._zIndex=t.y+this.options.zIndexOffset,this._resetZIndex()},_updateZIndex:function(t){this._icon.style.zIndex=this._zIndex+t},_animateZoom:function(t){var i=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center).round();this._setPos(i)},_initInteraction:function(){if(this.options.interactive&&(pt(this._icon,"leaflet-interactive"),this.addInteractiveTarget(this._icon),Ye)){var t=this.options.draggable;this.dragging&&(t=this.dragging.enabled(),this.dragging.disable()),this.dragging=new Ye(this),t&&this.dragging.enable()}},setOpacity:function(t){return this.options.opacity=t,this._map&&this._updateOpacity(),this},_updateOpacity:function(){var t=this.options.opacity;vt(this._icon,t),this._shadow&&vt(this._shadow,t)},_bringToFront:function(){this._updateZIndex(this.options.riseOffset)},_resetZIndex:function(){this._updateZIndex(0)},_getPopupAnchor:function(){return this.options.icon.options.popupAnchor},_getTooltipAnchor:function(){return this.options.icon.options.tooltipAnchor}}),Je=Ue.extend({options:{stroke:!0,color:"#3388ff",weight:3,opacity:1,lineCap:"round",lineJoin:"round",dashArray:null,dashOffset:null,fill:!1,fillColor:null,fillOpacity:.2,fillRule:"evenodd",interactive:!0,bubblingMouseEvents:!0},beforeAdd:function(t){this._renderer=t.getRenderer(this)},onAdd:function(){this._renderer._initPath(this),this._reset(),this._renderer._addPath(this)},onRemove:function(){this._renderer._removePath(this)},redraw:function(){return this._map&&this._renderer._updatePath(this),this},setStyle:function(t){return l(this,t),this._renderer&&this._renderer._updateStyle(this),this},bringToFront:function(){return this._renderer&&this._renderer._bringToFront(this),this},bringToBack:function(){return this._renderer&&this._renderer._bringToBack(this),this},getElement:function(){return this._path},_reset:function(){this._project(),this._update()},_clickTolerance:function(){return(this.options.stroke?this.options.weight/2:0)+this._renderer.options.tolerance}}),$e=Je.extend({options:{fill:!0,radius:10},initialize:function(t,i){l(this,i),this._latlng=C(t),this._radius=this.options.radius},setLatLng:function(t){return this._latlng=C(t),this.redraw(),this.fire("move",{latlng:this._latlng})},getLatLng:function(){return this._latlng},setRadius:function(t){return this.options.radius=this._radius=t,this.redraw()},getRadius:function(){return this._radius},setStyle:function(t){var i=t&&t.radius||this._radius;return Je.prototype.setStyle.call(this,t),this.setRadius(i),this},_project:function(){this._point=this._map.latLngToLayerPoint(this._latlng),this._updateBounds()},_updateBounds:function(){var t=this._radius,i=this._radiusY||t,e=this._clickTolerance(),n=[t+e,i+e];this._pxBounds=new P(this._point.subtract(n),this._point.add(n))},_update:function(){this._map&&this._updatePath()},_updatePath:function(){this._renderer._updateCircle(this)},_empty:function(){return this._radius&&!this._renderer._bounds.intersects(this._pxBounds)},_containsPoint:function(t){return t.distanceTo(this._point)<=this._radius+this._clickTolerance()}}),Qe=$e.extend({initialize:function(t,e,n){if("number"==typeof e&&(e=i({},n,{radius:e})),l(this,e),this._latlng=C(t),isNaN(this.options.radius))throw new Error("Circle radius cannot be NaN");this._mRadius=this.options.radius},setRadius:function(t){return this._mRadius=t,this.redraw()},getRadius:function(){return this._mRadius},getBounds:function(){var t=[this._radius,this._radiusY||this._radius];return new T(this._map.layerPointToLatLng(this._point.subtract(t)),this._map.layerPointToLatLng(this._point.add(t)))},setStyle:Je.prototype.setStyle,_project:function(){var t=this._latlng.lng,i=this._latlng.lat,e=this._map,n=e.options.crs;if(n.distance===_i.distance){var o=Math.PI/180,s=this._mRadius/_i.R/o,r=e.project([i+s,t]),a=e.project([i-s,t]),h=r.add(a).divideBy(2),u=e.unproject(h).lat,l=Math.acos((Math.cos(s*o)-Math.sin(i*o)*Math.sin(u*o))/(Math.cos(i*o)*Math.cos(u*o)))/o;(isNaN(l)||0===l)&&(l=s/Math.cos(Math.PI/180*i)),this._point=h.subtract(e.getPixelOrigin()),this._radius=isNaN(l)?0:h.x-e.project([u,t-l]).x,this._radiusY=h.y-r.y}else{var c=n.unproject(n.project(this._latlng).subtract([this._mRadius,0]));this._point=e.latLngToLayerPoint(this._latlng),this._radius=this._point.x-e.latLngToLayerPoint(c).x}this._updateBounds()}}),tn=Je.extend({options:{smoothFactor:1,noClip:!1},initialize:function(t,i){l(this,i),this._setLatLngs(t)},getLatLngs:function(){return this._latlngs},setLatLngs:function(t){return this._setLatLngs(t),this.redraw()},isEmpty:function(){return!this._latlngs.length},closestLayerPoint:function(t){for(var i,e,n=1/0,o=null,s=Rt,r=0,a=this._parts.length;r<a;r++)for(var h=this._parts[r],u=1,l=h.length;u<l;u++){var c=s(t,i=h[u-1],e=h[u],!0);c<n&&(n=c,o=s(t,i,e))}return o&&(o.distance=Math.sqrt(n)),o},getCenter:function(){if(!this._map)throw new Error("Must add layer to map before using getCenter()");var t,i,e,n,o,s,r,a=this._rings[0],h=a.length;if(!h)return null;for(t=0,i=0;t<h-1;t++)i+=a[t].distanceTo(a[t+1])/2;if(0===i)return this._map.layerPointToLatLng(a[0]);for(t=0,n=0;t<h-1;t++)if(o=a[t],s=a[t+1],e=o.distanceTo(s),(n+=e)>i)return r=(n-i)/e,this._map.layerPointToLatLng([s.x-r*(s.x-o.x),s.y-r*(s.y-o.y)])},getBounds:function(){return this._bounds},addLatLng:function(t,i){return i=i||this._defaultShape(),t=C(t),i.push(t),this._bounds.extend(t),this.redraw()},_setLatLngs:function(t){this._bounds=new T,this._latlngs=this._convertLatLngs(t)},_defaultShape:function(){return Dt(this._latlngs)?this._latlngs:this._latlngs[0]},_convertLatLngs:function(t){for(var i=[],e=Dt(t),n=0,o=t.length;n<o;n++)e?(i[n]=C(t[n]),this._bounds.extend(i[n])):i[n]=this._convertLatLngs(t[n]);return i},_project:function(){var t=new P;this._rings=[],this._projectLatlngs(this._latlngs,this._rings,t);var i=this._clickTolerance(),e=new x(i,i);this._bounds.isValid()&&t.isValid()&&(t.min._subtract(e),t.max._add(e),this._pxBounds=t)},_projectLatlngs:function(t,i,e){var n,o,s=t[0]instanceof M,r=t.length;if(s){for(o=[],n=0;n<r;n++)o[n]=this._map.latLngToLayerPoint(t[n]),e.extend(o[n]);i.push(o)}else for(n=0;n<r;n++)this._projectLatlngs(t[n],i,e)},_clipPoints:function(){var t=this._renderer._bounds;if(this._parts=[],this._pxBounds&&this._pxBounds.intersects(t))if(this.options.noClip)this._parts=this._rings;else{var i,e,n,o,s,r,a,h=this._parts;for(i=0,n=0,o=this._rings.length;i<o;i++)for(e=0,s=(a=this._rings[i]).length;e<s-1;e++)(r=At(a[e],a[e+1],t,e,!0))&&(h[n]=h[n]||[],h[n].push(r[0]),r[1]===a[e+1]&&e!==s-2||(h[n].push(r[1]),n++))}},_simplifyPoints:function(){for(var t=this._parts,i=this.options.smoothFactor,e=0,n=t.length;e<n;e++)t[e]=Ct(t[e],i)},_update:function(){this._map&&(this._clipPoints(),this._simplifyPoints(),this._updatePath())},_updatePath:function(){this._renderer._updatePoly(this)},_containsPoint:function(t,i){var e,n,o,s,r,a,h=this._clickTolerance();if(!this._pxBounds||!this._pxBounds.contains(t))return!1;for(e=0,s=this._parts.length;e<s;e++)for(n=0,o=(r=(a=this._parts[e]).length)-1;n<r;o=n++)if((i||0!==n)&&Zt(t,a[o],a[n])<=h)return!0;return!1}});tn._flat=Nt;var en=tn.extend({options:{fill:!0},isEmpty:function(){return!this._latlngs.length||!this._latlngs[0].length},getCenter:function(){if(!this._map)throw new Error("Must add layer to map before using getCenter()");var t,i,e,n,o,s,r,a,h,u=this._rings[0],l=u.length;if(!l)return null;for(s=r=a=0,t=0,i=l-1;t<l;i=t++)e=u[t],n=u[i],o=e.y*n.x-n.y*e.x,r+=(e.x+n.x)*o,a+=(e.y+n.y)*o,s+=3*o;return h=0===s?u[0]:[r/s,a/s],this._map.layerPointToLatLng(h)},_convertLatLngs:function(t){var i=tn.prototype._convertLatLngs.call(this,t),e=i.length;return e>=2&&i[0]instanceof M&&i[0].equals(i[e-1])&&i.pop(),i},_setLatLngs:function(t){tn.prototype._setLatLngs.call(this,t),Dt(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return Dt(this._latlngs[0])?this._latlngs[0]:this._latlngs[0][0]},_clipPoints:function(){var t=this._renderer._bounds,i=this.options.weight,e=new x(i,i);if(t=new P(t.min.subtract(e),t.max.add(e)),this._parts=[],this._pxBounds&&this._pxBounds.intersects(t))if(this.options.noClip)this._parts=this._rings;else for(var n,o=0,s=this._rings.length;o<s;o++)(n=jt(this._rings[o],t,!0)).length&&this._parts.push(n)},_updatePath:function(){this._renderer._updatePoly(this,!0)},_containsPoint:function(t){var i,e,n,o,s,r,a,h,u=!1;if(!this._pxBounds.contains(t))return!1;for(o=0,a=this._parts.length;o<a;o++)for(s=0,r=(h=(i=this._parts[o]).length)-1;s<h;r=s++)e=i[s],n=i[r],e.y>t.y!=n.y>t.y&&t.x<(n.x-e.x)*(t.y-e.y)/(n.y-e.y)+e.x&&(u=!u);return u||tn.prototype._containsPoint.call(this,t,!0)}}),nn=qe.extend({initialize:function(t,i){l(this,i),this._layers={},t&&this.addData(t)},addData:function(t){var i,e,n,o=ei(t)?t:t.features;if(o){for(i=0,e=o.length;i<e;i++)((n=o[i]).geometries||n.geometry||n.features||n.coordinates)&&this.addData(n);return this}var s=this.options;if(s.filter&&!s.filter(t))return this;var r=Wt(t,s);return r?(r.feature=Gt(t),r.defaultOptions=r.options,this.resetStyle(r),s.onEachFeature&&s.onEachFeature(t,r),this.addLayer(r)):this},resetStyle:function(t){return t.options=i({},t.defaultOptions),this._setLayerStyle(t,this.options.style),this},setStyle:function(t){return this.eachLayer(function(i){this._setLayerStyle(i,t)},this)},_setLayerStyle:function(t,i){"function"==typeof i&&(i=i(t.feature)),t.setStyle&&t.setStyle(i)}}),on={toGeoJSON:function(t){return qt(this,{type:"Point",coordinates:Ut(this.getLatLng(),t)})}};Xe.include(on),Qe.include(on),$e.include(on),tn.include({toGeoJSON:function(t){var i=!Dt(this._latlngs),e=Vt(this._latlngs,i?1:0,!1,t);return qt(this,{type:(i?"Multi":"")+"LineString",coordinates:e})}}),en.include({toGeoJSON:function(t){var i=!Dt(this._latlngs),e=i&&!Dt(this._latlngs[0]),n=Vt(this._latlngs,e?2:i?1:0,!0,t);return i||(n=[n]),qt(this,{type:(e?"Multi":"")+"Polygon",coordinates:n})}}),Ve.include({toMultiPoint:function(t){var i=[];return this.eachLayer(function(e){i.push(e.toGeoJSON(t).geometry.coordinates)}),qt(this,{type:"MultiPoint",coordinates:i})},toGeoJSON:function(t){var i=this.feature&&this.feature.geometry&&this.feature.geometry.type;if("MultiPoint"===i)return this.toMultiPoint(t);var e="GeometryCollection"===i,n=[];return this.eachLayer(function(i){if(i.toGeoJSON){var o=i.toGeoJSON(t);if(e)n.push(o.geometry);else{var s=Gt(o);"FeatureCollection"===s.type?n.push.apply(n,s.features):n.push(s)}}}),e?qt(this,{geometries:n,type:"GeometryCollection"}):{type:"FeatureCollection",features:n}}});var sn=Kt,rn=Ue.extend({options:{opacity:1,alt:"",interactive:!1,crossOrigin:!1,errorOverlayUrl:"",zIndex:1,className:""},initialize:function(t,i,e){this._url=t,this._bounds=z(i),l(this,e)},onAdd:function(){this._image||(this._initImage(),this.options.opacity<1&&this._updateOpacity()),this.options.interactive&&(pt(this._image,"leaflet-interactive"),this.addInteractiveTarget(this._image)),this.getPane().appendChild(this._image),this._reset()},onRemove:function(){ut(this._image),this.options.interactive&&this.removeInteractiveTarget(this._image)},setOpacity:function(t){return this.options.opacity=t,this._image&&this._updateOpacity(),this},setStyle:function(t){return t.opacity&&this.setOpacity(t.opacity),this},bringToFront:function(){return this._map&&ct(this._image),this},bringToBack:function(){return this._map&&_t(this._image),this},setUrl:function(t){return this._url=t,this._image&&(this._image.src=t),this},setBounds:function(t){return this._bounds=z(t),this._map&&this._reset(),this},getEvents:function(){var t={zoom:this._reset,viewreset:this._reset};return this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},setZIndex:function(t){return this.options.zIndex=t,this._updateZIndex(),this},getBounds:function(){return this._bounds},getElement:function(){return this._image},_initImage:function(){var t="IMG"===this._url.tagName,i=this._image=t?this._url:ht("img");pt(i,"leaflet-image-layer"),this._zoomAnimated&&pt(i,"leaflet-zoom-animated"),this.options.className&&pt(i,this.options.className),i.onselectstart=r,i.onmousemove=r,i.onload=e(this.fire,this,"load"),i.onerror=e(this._overlayOnError,this,"error"),this.options.crossOrigin&&(i.crossOrigin=""),this.options.zIndex&&this._updateZIndex(),t?this._url=i.src:(i.src=this._url,i.alt=this.options.alt)},_animateZoom:function(t){var i=this._map.getZoomScale(t.zoom),e=this._map._latLngBoundsToNewLayerBounds(this._bounds,t.zoom,t.center).min;wt(this._image,e,i)},_reset:function(){var t=this._image,i=new P(this._map.latLngToLayerPoint(this._bounds.getNorthWest()),this._map.latLngToLayerPoint(this._bounds.getSouthEast())),e=i.getSize();Lt(t,i.min),t.style.width=e.x+"px",t.style.height=e.y+"px"},_updateOpacity:function(){vt(this._image,this.options.opacity)},_updateZIndex:function(){this._image&&void 0!==this.options.zIndex&&null!==this.options.zIndex&&(this._image.style.zIndex=this.options.zIndex)},_overlayOnError:function(){this.fire("error");var t=this.options.errorOverlayUrl;t&&this._url!==t&&(this._url=t,this._image.src=t)}}),an=rn.extend({options:{autoplay:!0,loop:!0},_initImage:function(){var t="VIDEO"===this._url.tagName,i=this._image=t?this._url:ht("video");if(pt(i,"leaflet-image-layer"),this._zoomAnimated&&pt(i,"leaflet-zoom-animated"),i.onselectstart=r,i.onmousemove=r,i.onloadeddata=e(this.fire,this,"load"),t){for(var n=i.getElementsByTagName("source"),o=[],s=0;s<n.length;s++)o.push(n[s].src);this._url=n.length>0?o:[i.src]}else{ei(this._url)||(this._url=[this._url]),i.autoplay=!!this.options.autoplay,i.loop=!!this.options.loop;for(var a=0;a<this._url.length;a++){var h=ht("source");h.src=this._url[a],i.appendChild(h)}}}}),hn=Ue.extend({options:{offset:[0,7],className:"",pane:"popupPane"},initialize:function(t,i){l(this,t),this._source=i},onAdd:function(t){this._zoomAnimated=t._zoomAnimated,this._container||this._initLayout(),t._fadeAnimated&&vt(this._container,0),clearTimeout(this._removeTimeout),this.getPane().appendChild(this._container),this.update(),t._fadeAnimated&&vt(this._container,1),this.bringToFront()},onRemove:function(t){t._fadeAnimated?(vt(this._container,0),this._removeTimeout=setTimeout(e(ut,void 0,this._container),200)):ut(this._container)},getLatLng:function(){return this._latlng},setLatLng:function(t){return this._latlng=C(t),this._map&&(this._updatePosition(),this._adjustPan()),this},getContent:function(){return this._content},setContent:function(t){return this._content=t,this.update(),this},getElement:function(){return this._container},update:function(){this._map&&(this._container.style.visibility="hidden",this._updateContent(),this._updateLayout(),this._updatePosition(),this._container.style.visibility="",this._adjustPan())},getEvents:function(){var t={zoom:this._updatePosition,viewreset:this._updatePosition};return this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},isOpen:function(){return!!this._map&&this._map.hasLayer(this)},bringToFront:function(){return this._map&&ct(this._container),this},bringToBack:function(){return this._map&&_t(this._container),this},_updateContent:function(){if(this._content){var t=this._contentNode,i="function"==typeof this._content?this._content(this._source||this):this._content;if("string"==typeof i)t.innerHTML=i;else{for(;t.hasChildNodes();)t.removeChild(t.firstChild);t.appendChild(i)}this.fire("contentupdate")}},_updatePosition:function(){if(this._map){var t=this._map.latLngToLayerPoint(this._latlng),i=w(this.options.offset),e=this._getAnchor();this._zoomAnimated?Lt(this._container,t.add(e)):i=i.add(t).add(e);var n=this._containerBottom=-i.y,o=this._containerLeft=-Math.round(this._containerWidth/2)+i.x;this._container.style.bottom=n+"px",this._container.style.left=o+"px"}},_getAnchor:function(){return[0,0]}}),un=hn.extend({options:{maxWidth:300,minWidth:50,maxHeight:null,autoPan:!0,autoPanPaddingTopLeft:null,autoPanPaddingBottomRight:null,autoPanPadding:[5,5],keepInView:!1,closeButton:!0,autoClose:!0,closeOnEscapeKey:!0,className:""},openOn:function(t){return t.openPopup(this),this},onAdd:function(t){hn.prototype.onAdd.call(this,t),t.fire("popupopen",{popup:this}),this._source&&(this._source.fire("popupopen",{popup:this},!0),this._source instanceof Je||this._source.on("preclick",Y))},onRemove:function(t){hn.prototype.onRemove.call(this,t),t.fire("popupclose",{popup:this}),this._source&&(this._source.fire("popupclose",{popup:this},!0),this._source instanceof Je||this._source.off("preclick",Y))},getEvents:function(){var t=hn.prototype.getEvents.call(this);return(void 0!==this.options.closeOnClick?this.options.closeOnClick:this._map.options.closePopupOnClick)&&(t.preclick=this._close),this.options.keepInView&&(t.moveend=this._adjustPan),t},_close:function(){this._map&&this._map.closePopup(this)},_initLayout:function(){var t="leaflet-popup",i=this._container=ht("div",t+" "+(this.options.className||"")+" leaflet-zoom-animated"),e=this._wrapper=ht("div",t+"-content-wrapper",i);if(this._contentNode=ht("div",t+"-content",e),J(e),X(this._contentNode),V(e,"contextmenu",Y),this._tipContainer=ht("div",t+"-tip-container",i),this._tip=ht("div",t+"-tip",this._tipContainer),this.options.closeButton){var n=this._closeButton=ht("a",t+"-close-button",i);n.href="#close",n.innerHTML="×",V(n,"click",this._onCloseButtonClick,this)}},_updateLayout:function(){var t=this._contentNode,i=t.style;i.width="",i.whiteSpace="nowrap";var e=t.offsetWidth;e=Math.min(e,this.options.maxWidth),e=Math.max(e,this.options.minWidth),i.width=e+1+"px",i.whiteSpace="",i.height="";var n=t.offsetHeight,o=this.options.maxHeight;o&&n>o?(i.height=o+"px",pt(t,"leaflet-popup-scrolled")):mt(t,"leaflet-popup-scrolled"),this._containerWidth=this._container.offsetWidth},_animateZoom:function(t){var i=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center),e=this._getAnchor();Lt(this._container,i.add(e))},_adjustPan:function(){if(!(!this.options.autoPan||this._map._panAnim&&this._map._panAnim._inProgress)){var t=this._map,i=parseInt(at(this._container,"marginBottom"),10)||0,e=this._container.offsetHeight+i,n=this._containerWidth,o=new x(this._containerLeft,-e-this._containerBottom);o._add(Pt(this._container));var s=t.layerPointToContainerPoint(o),r=w(this.options.autoPanPadding),a=w(this.options.autoPanPaddingTopLeft||r),h=w(this.options.autoPanPaddingBottomRight||r),u=t.getSize(),l=0,c=0;s.x+n+h.x>u.x&&(l=s.x+n-u.x+h.x),s.x-l-a.x<0&&(l=s.x-a.x),s.y+e+h.y>u.y&&(c=s.y+e-u.y+h.y),s.y-c-a.y<0&&(c=s.y-a.y),(l||c)&&t.fire("autopanstart").panBy([l,c])}},_onCloseButtonClick:function(t){this._close(),Q(t)},_getAnchor:function(){return w(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}});Le.mergeOptions({closePopupOnClick:!0}),Le.include({openPopup:function(t,i,e){return t instanceof un||(t=new un(e).setContent(t)),i&&t.setLatLng(i),this.hasLayer(t)?this:(this._popup&&this._popup.options.autoClose&&this.closePopup(),this._popup=t,this.addLayer(t))},closePopup:function(t){return t&&t!==this._popup||(t=this._popup,this._popup=null),t&&this.removeLayer(t),this}}),Ue.include({bindPopup:function(t,i){return t instanceof un?(l(t,i),this._popup=t,t._source=this):(this._popup&&!i||(this._popup=new un(i,this)),this._popup.setContent(t)),this._popupHandlersAdded||(this.on({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(t,i){if(t instanceof Ue||(i=t,t=this),t instanceof qe)for(var e in this._layers){t=this._layers[e];break}return i||(i=t.getCenter?t.getCenter():t.getLatLng()),this._popup&&this._map&&(this._popup._source=t,this._popup.update(),this._map.openPopup(this._popup,i)),this},closePopup:function(){return this._popup&&this._popup._close(),this},togglePopup:function(t){return this._popup&&(this._popup._map?this.closePopup():this.openPopup(t)),this},isPopupOpen:function(){return!!this._popup&&this._popup.isOpen()},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},getPopup:function(){return this._popup},_openPopup:function(t){var i=t.layer||t.target;this._popup&&this._map&&(Q(t),i instanceof Je?this.openPopup(t.layer||t.target,t.latlng):this._map.hasLayer(this._popup)&&this._popup._source===i?this.closePopup():this.openPopup(i,t.latlng))},_movePopup:function(t){this._popup.setLatLng(t.latlng)},_onKeyPress:function(t){13===t.originalEvent.keyCode&&this._openPopup(t)}});var ln=hn.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,interactive:!1,opacity:.9},onAdd:function(t){hn.prototype.onAdd.call(this,t),this.setOpacity(this.options.opacity),t.fire("tooltipopen",{tooltip:this}),this._source&&this._source.fire("tooltipopen",{tooltip:this},!0)},onRemove:function(t){hn.prototype.onRemove.call(this,t),t.fire("tooltipclose",{tooltip:this}),this._source&&this._source.fire("tooltipclose",{tooltip:this},!0)},getEvents:function(){var t=hn.prototype.getEvents.call(this);return Vi&&!this.options.permanent&&(t.preclick=this._close),t},_close:function(){this._map&&this._map.closeTooltip(this)},_initLayout:function(){var t="leaflet-tooltip "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=ht("div",t)},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(t){var i=this._map,e=this._container,n=i.latLngToContainerPoint(i.getCenter()),o=i.layerPointToContainerPoint(t),s=this.options.direction,r=e.offsetWidth,a=e.offsetHeight,h=w(this.options.offset),u=this._getAnchor();"top"===s?t=t.add(w(-r/2+h.x,-a+h.y+u.y,!0)):"bottom"===s?t=t.subtract(w(r/2-h.x,-h.y,!0)):"center"===s?t=t.subtract(w(r/2+h.x,a/2-u.y+h.y,!0)):"right"===s||"auto"===s&&o.x<n.x?(s="right",t=t.add(w(h.x+u.x,u.y-a/2+h.y,!0))):(s="left",t=t.subtract(w(r+u.x-h.x,a/2-u.y-h.y,!0))),mt(e,"leaflet-tooltip-right"),mt(e,"leaflet-tooltip-left"),mt(e,"leaflet-tooltip-top"),mt(e,"leaflet-tooltip-bottom"),pt(e,"leaflet-tooltip-"+s),Lt(e,t)},_updatePosition:function(){var t=this._map.latLngToLayerPoint(this._latlng);this._setPosition(t)},setOpacity:function(t){this.options.opacity=t,this._container&&vt(this._container,t)},_animateZoom:function(t){var i=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center);this._setPosition(i)},_getAnchor:function(){return w(this._source&&this._source._getTooltipAnchor&&!this.options.sticky?this._source._getTooltipAnchor():[0,0])}});Le.include({openTooltip:function(t,i,e){return t instanceof ln||(t=new ln(e).setContent(t)),i&&t.setLatLng(i),this.hasLayer(t)?this:this.addLayer(t)},closeTooltip:function(t){return t&&this.removeLayer(t),this}}),Ue.include({bindTooltip:function(t,i){return t instanceof ln?(l(t,i),this._tooltip=t,t._source=this):(this._tooltip&&!i||(this._tooltip=new ln(i,this)),this._tooltip.setContent(t)),this._initTooltipInteractions(),this._tooltip.options.permanent&&this._map&&this._map.hasLayer(this)&&this.openTooltip(),this},unbindTooltip:function(){return this._tooltip&&(this._initTooltipInteractions(!0),this.closeTooltip(),this._tooltip=null),this},_initTooltipInteractions:function(t){if(t||!this._tooltipHandlersAdded){var i=t?"off":"on",e={remove:this.closeTooltip,move:this._moveTooltip};this._tooltip.options.permanent?e.add=this._openTooltip:(e.mouseover=this._openTooltip,e.mouseout=this.closeTooltip,this._tooltip.options.sticky&&(e.mousemove=this._moveTooltip),Vi&&(e.click=this._openTooltip)),this[i](e),this._tooltipHandlersAdded=!t}},openTooltip:function(t,i){if(t instanceof Ue||(i=t,t=this),t instanceof qe)for(var e in this._layers){t=this._layers[e];break}return i||(i=t.getCenter?t.getCenter():t.getLatLng()),this._tooltip&&this._map&&(this._tooltip._source=t,this._tooltip.update(),this._map.openTooltip(this._tooltip,i),this._tooltip.options.interactive&&this._tooltip._container&&(pt(this._tooltip._container,"leaflet-clickable"),this.addInteractiveTarget(this._tooltip._container))),this},closeTooltip:function(){return this._tooltip&&(this._tooltip._close(),this._tooltip.options.interactive&&this._tooltip._container&&(mt(this._tooltip._container,"leaflet-clickable"),this.removeInteractiveTarget(this._tooltip._container))),this},toggleTooltip:function(t){return this._tooltip&&(this._tooltip._map?this.closeTooltip():this.openTooltip(t)),this},isTooltipOpen:function(){return this._tooltip.isOpen()},setTooltipContent:function(t){return this._tooltip&&this._tooltip.setContent(t),this},getTooltip:function(){return this._tooltip},_openTooltip:function(t){var i=t.layer||t.target;this._tooltip&&this._map&&this.openTooltip(i,this._tooltip.options.sticky?t.latlng:void 0)},_moveTooltip:function(t){var i,e,n=t.latlng;this._tooltip.options.sticky&&t.originalEvent&&(i=this._map.mouseEventToContainerPoint(t.originalEvent),e=this._map.containerPointToLayerPoint(i),n=this._map.layerPointToLatLng(e)),this._tooltip.setLatLng(n)}});var cn=Ge.extend({options:{iconSize:[12,12],html:!1,bgPos:null,className:"leaflet-div-icon"},createIcon:function(t){var i=t&&"DIV"===t.tagName?t:document.createElement("div"),e=this.options;if(i.innerHTML=!1!==e.html?e.html:"",e.bgPos){var n=w(e.bgPos);i.style.backgroundPosition=-n.x+"px "+-n.y+"px"}return this._setIconStyles(i,"icon"),i},createShadow:function(){return null}});Ge.Default=Ke;var _n=Ue.extend({options:{tileSize:256,opacity:1,updateWhenIdle:ji,updateWhenZooming:!0,updateInterval:200,zIndex:1,bounds:null,minZoom:0,maxZoom:void 0,maxNativeZoom:void 0,minNativeZoom:void 0,noWrap:!1,pane:"tilePane",className:"",keepBuffer:2},initialize:function(t){l(this,t)},onAdd:function(){this._initContainer(),this._levels={},this._tiles={},this._resetView(),this._update()},beforeAdd:function(t){t._addZoomLimit(this)},onRemove:function(t){this._removeAllTiles(),ut(this._container),t._removeZoomLimit(this),this._container=null,this._tileZoom=void 0},bringToFront:function(){return this._map&&(ct(this._container),this._setAutoZIndex(Math.max)),this},bringToBack:function(){return this._map&&(_t(this._container),this._setAutoZIndex(Math.min)),this},getContainer:function(){return this._container},setOpacity:function(t){return this.options.opacity=t,this._updateOpacity(),this},setZIndex:function(t){return this.options.zIndex=t,this._updateZIndex(),this},isLoading:function(){return this._loading},redraw:function(){return this._map&&(this._removeAllTiles(),this._update()),this},getEvents:function(){var t={viewprereset:this._invalidateAll,viewreset:this._resetView,zoom:this._resetView,moveend:this._onMoveEnd};return this.options.updateWhenIdle||(this._onMove||(this._onMove=o(this._onMoveEnd,this.options.updateInterval,this)),t.move=this._onMove),this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},createTile:function(){return document.createElement("div")},getTileSize:function(){var t=this.options.tileSize;return t instanceof x?t:new x(t,t)},_updateZIndex:function(){this._container&&void 0!==this.options.zIndex&&null!==this.options.zIndex&&(this._container.style.zIndex=this.options.zIndex)},_setAutoZIndex:function(t){for(var i,e=this.getPane().children,n=-t(-1/0,1/0),o=0,s=e.length;o<s;o++)i=e[o].style.zIndex,e[o]!==this._container&&i&&(n=t(n,+i));isFinite(n)&&(this.options.zIndex=n+t(-1,1),this._updateZIndex())},_updateOpacity:function(){if(this._map&&!Li){vt(this._container,this.options.opacity);var t=+new Date,i=!1,e=!1;for(var n in this._tiles){var o=this._tiles[n];if(o.current&&o.loaded){var s=Math.min(1,(t-o.loaded)/200);vt(o.el,s),s<1?i=!0:(o.active?e=!0:this._onOpaqueTile(o),o.active=!0)}}e&&!this._noPrune&&this._pruneTiles(),i&&(g(this._fadeFrame),this._fadeFrame=f(this._updateOpacity,this))}},_onOpaqueTile:r,_initContainer:function(){this._container||(this._container=ht("div","leaflet-layer "+(this.options.className||"")),this._updateZIndex(),this.options.opacity<1&&this._updateOpacity(),this.getPane().appendChild(this._container))},_updateLevels:function(){var t=this._tileZoom,i=this.options.maxZoom;if(void 0!==t){for(var e in this._levels)this._levels[e].el.children.length||e===t?(this._levels[e].el.style.zIndex=i-Math.abs(t-e),this._onUpdateLevel(e)):(ut(this._levels[e].el),this._removeTilesAtZoom(e),this._onRemoveLevel(e),delete this._levels[e]);var n=this._levels[t],o=this._map;return n||((n=this._levels[t]={}).el=ht("div","leaflet-tile-container leaflet-zoom-animated",this._container),n.el.style.zIndex=i,n.origin=o.project(o.unproject(o.getPixelOrigin()),t).round(),n.zoom=t,this._setZoomTransform(n,o.getCenter(),o.getZoom()),n.el.offsetWidth,this._onCreateLevel(n)),this._level=n,n}},_onUpdateLevel:r,_onRemoveLevel:r,_onCreateLevel:r,_pruneTiles:function(){if(this._map){var t,i,e=this._map.getZoom();if(e>this.options.maxZoom||e<this.options.minZoom)this._removeAllTiles();else{for(t in this._tiles)(i=this._tiles[t]).retain=i.current;for(t in this._tiles)if((i=this._tiles[t]).current&&!i.active){var n=i.coords;this._retainParent(n.x,n.y,n.z,n.z-5)||this._retainChildren(n.x,n.y,n.z,n.z+2)}for(t in this._tiles)this._tiles[t].retain||this._removeTile(t)}}},_removeTilesAtZoom:function(t){for(var i in this._tiles)this._tiles[i].coords.z===t&&this._removeTile(i)},_removeAllTiles:function(){for(var t in this._tiles)this._removeTile(t)},_invalidateAll:function(){for(var t in this._levels)ut(this._levels[t].el),this._onRemoveLevel(t),delete this._levels[t];this._removeAllTiles(),this._tileZoom=void 0},_retainParent:function(t,i,e,n){var o=Math.floor(t/2),s=Math.floor(i/2),r=e-1,a=new x(+o,+s);a.z=+r;var h=this._tileCoordsToKey(a),u=this._tiles[h];return u&&u.active?(u.retain=!0,!0):(u&&u.loaded&&(u.retain=!0),r>n&&this._retainParent(o,s,r,n))},_retainChildren:function(t,i,e,n){for(var o=2*t;o<2*t+2;o++)for(var s=2*i;s<2*i+2;s++){var r=new x(o,s);r.z=e+1;var a=this._tileCoordsToKey(r),h=this._tiles[a];h&&h.active?h.retain=!0:(h&&h.loaded&&(h.retain=!0),e+1<n&&this._retainChildren(o,s,e+1,n))}},_resetView:function(t){var i=t&&(t.pinch||t.flyTo);this._setView(this._map.getCenter(),this._map.getZoom(),i,i)},_animateZoom:function(t){this._setView(t.center,t.zoom,!0,t.noUpdate)},_clampZoom:function(t){var i=this.options;return void 0!==i.minNativeZoom&&t<i.minNativeZoom?i.minNativeZoom:void 0!==i.maxNativeZoom&&i.maxNativeZoom<t?i.maxNativeZoom:t},_setView:function(t,i,e,n){var o=this._clampZoom(Math.round(i));(void 0!==this.options.maxZoom&&o>this.options.maxZoom||void 0!==this.options.minZoom&&o<this.options.minZoom)&&(o=void 0);var s=this.options.updateWhenZooming&&o!==this._tileZoom;n&&!s||(this._tileZoom=o,this._abortLoading&&this._abortLoading(),this._updateLevels(),this._resetGrid(),void 0!==o&&this._update(t),e||this._pruneTiles(),this._noPrune=!!e),this._setZoomTransforms(t,i)},_setZoomTransforms:function(t,i){for(var e in this._levels)this._setZoomTransform(this._levels[e],t,i)},_setZoomTransform:function(t,i,e){var n=this._map.getZoomScale(e,t.zoom),o=t.origin.multiplyBy(n).subtract(this._map._getNewPixelOrigin(i,e)).round();Ni?wt(t.el,o,n):Lt(t.el,o)},_resetGrid:function(){var t=this._map,i=t.options.crs,e=this._tileSize=this.getTileSize(),n=this._tileZoom,o=this._map.getPixelWorldBounds(this._tileZoom);o&&(this._globalTileRange=this._pxBoundsToTileRange(o)),this._wrapX=i.wrapLng&&!this.options.noWrap&&[Math.floor(t.project([0,i.wrapLng[0]],n).x/e.x),Math.ceil(t.project([0,i.wrapLng[1]],n).x/e.y)],this._wrapY=i.wrapLat&&!this.options.noWrap&&[Math.floor(t.project([i.wrapLat[0],0],n).y/e.x),Math.ceil(t.project([i.wrapLat[1],0],n).y/e.y)]},_onMoveEnd:function(){this._map&&!this._map._animatingZoom&&this._update()},_getTiledPixelBounds:function(t){var i=this._map,e=i._animatingZoom?Math.max(i._animateToZoom,i.getZoom()):i.getZoom(),n=i.getZoomScale(e,this._tileZoom),o=i.project(t,this._tileZoom).floor(),s=i.getSize().divideBy(2*n);return new P(o.subtract(s),o.add(s))},_update:function(t){var i=this._map;if(i){var e=this._clampZoom(i.getZoom());if(void 0===t&&(t=i.getCenter()),void 0!==this._tileZoom){var n=this._getTiledPixelBounds(t),o=this._pxBoundsToTileRange(n),s=o.getCenter(),r=[],a=this.options.keepBuffer,h=new P(o.getBottomLeft().subtract([a,-a]),o.getTopRight().add([a,-a]));if(!(isFinite(o.min.x)&&isFinite(o.min.y)&&isFinite(o.max.x)&&isFinite(o.max.y)))throw new Error("Attempted to load an infinite number of tiles");for(var u in this._tiles){var l=this._tiles[u].coords;l.z===this._tileZoom&&h.contains(new x(l.x,l.y))||(this._tiles[u].current=!1)}if(Math.abs(e-this._tileZoom)>1)this._setView(t,e);else{for(var c=o.min.y;c<=o.max.y;c++)for(var _=o.min.x;_<=o.max.x;_++){var d=new x(_,c);if(d.z=this._tileZoom,this._isValidTile(d)){var p=this._tiles[this._tileCoordsToKey(d)];p?p.current=!0:r.push(d)}}if(r.sort(function(t,i){return t.distanceTo(s)-i.distanceTo(s)}),0!==r.length){this._loading||(this._loading=!0,this.fire("loading"));var m=document.createDocumentFragment();for(_=0;_<r.length;_++)this._addTile(r[_],m);this._level.el.appendChild(m)}}}}},_isValidTile:function(t){var i=this._map.options.crs;if(!i.infinite){var e=this._globalTileRange;if(!i.wrapLng&&(t.x<e.min.x||t.x>e.max.x)||!i.wrapLat&&(t.y<e.min.y||t.y>e.max.y))return!1}if(!this.options.bounds)return!0;var n=this._tileCoordsToBounds(t);return z(this.options.bounds).overlaps(n)},_keyToBounds:function(t){return this._tileCoordsToBounds(this._keyToTileCoords(t))},_tileCoordsToNwSe:function(t){var i=this._map,e=this.getTileSize(),n=t.scaleBy(e),o=n.add(e);return[i.unproject(n,t.z),i.unproject(o,t.z)]},_tileCoordsToBounds:function(t){var i=this._tileCoordsToNwSe(t),e=new T(i[0],i[1]);return this.options.noWrap||(e=this._map.wrapLatLngBounds(e)),e},_tileCoordsToKey:function(t){return t.x+":"+t.y+":"+t.z},_keyToTileCoords:function(t){var i=t.split(":"),e=new x(+i[0],+i[1]);return e.z=+i[2],e},_removeTile:function(t){var i=this._tiles[t];i&&(Ci||i.el.setAttribute("src",ni),ut(i.el),delete this._tiles[t],this.fire("tileunload",{tile:i.el,coords:this._keyToTileCoords(t)}))},_initTile:function(t){pt(t,"leaflet-tile");var i=this.getTileSize();t.style.width=i.x+"px",t.style.height=i.y+"px",t.onselectstart=r,t.onmousemove=r,Li&&this.options.opacity<1&&vt(t,this.options.opacity),Ti&&!zi&&(t.style.WebkitBackfaceVisibility="hidden")},_addTile:function(t,i){var n=this._getTilePos(t),o=this._tileCoordsToKey(t),s=this.createTile(this._wrapCoords(t),e(this._tileReady,this,t));this._initTile(s),this.createTile.length<2&&f(e(this._tileReady,this,t,null,s)),Lt(s,n),this._tiles[o]={el:s,coords:t,current:!0},i.appendChild(s),this.fire("tileloadstart",{tile:s,coords:t})},_tileReady:function(t,i,n){if(this._map){i&&this.fire("tileerror",{error:i,tile:n,coords:t});var o=this._tileCoordsToKey(t);(n=this._tiles[o])&&(n.loaded=+new Date,this._map._fadeAnimated?(vt(n.el,0),g(this._fadeFrame),this._fadeFrame=f(this._updateOpacity,this)):(n.active=!0,this._pruneTiles()),i||(pt(n.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:n.el,coords:t})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),Li||!this._map._fadeAnimated?f(this._pruneTiles,this):setTimeout(e(this._pruneTiles,this),250)))}},_getTilePos:function(t){return t.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(t){var i=new x(this._wrapX?s(t.x,this._wrapX):t.x,this._wrapY?s(t.y,this._wrapY):t.y);return i.z=t.z,i},_pxBoundsToTileRange:function(t){var i=this.getTileSize();return new P(t.min.unscaleBy(i).floor(),t.max.unscaleBy(i).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var t in this._tiles)if(!this._tiles[t].loaded)return!1;return!0}}),dn=_n.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1},initialize:function(t,i){this._url=t,(i=l(this,i)).detectRetina&&Ki&&i.maxZoom>0&&(i.tileSize=Math.floor(i.tileSize/2),i.zoomReverse?(i.zoomOffset--,i.minZoom++):(i.zoomOffset++,i.maxZoom--),i.minZoom=Math.max(0,i.minZoom)),"string"==typeof i.subdomains&&(i.subdomains=i.subdomains.split("")),Ti||this.on("tileunload",this._onTileRemove)},setUrl:function(t,i){return this._url=t,i||this.redraw(),this},createTile:function(t,i){var n=document.createElement("img");return V(n,"load",e(this._tileOnLoad,this,i,n)),V(n,"error",e(this._tileOnError,this,i,n)),this.options.crossOrigin&&(n.crossOrigin=""),n.alt="",n.setAttribute("role","presentation"),n.src=this.getTileUrl(t),n},getTileUrl:function(t){var e={r:Ki?"@2x":"",s:this._getSubdomain(t),x:t.x,y:t.y,z:this._getZoomForUrl()};if(this._map&&!this._map.options.crs.infinite){var n=this._globalTileRange.max.y-t.y;this.options.tms&&(e.y=n),e["-y"]=n}return _(this._url,i(e,this.options))},_tileOnLoad:function(t,i){Li?setTimeout(e(t,this,null,i),0):t(null,i)},_tileOnError:function(t,i,e){var n=this.options.errorTileUrl;n&&i.getAttribute("src")!==n&&(i.src=n),t(e,i)},_onTileRemove:function(t){t.tile.onload=null},_getZoomForUrl:function(){var t=this._tileZoom,i=this.options.maxZoom,e=this.options.zoomReverse,n=this.options.zoomOffset;return e&&(t=i-t),t+n},_getSubdomain:function(t){var i=Math.abs(t.x+t.y)%this.options.subdomains.length;return this.options.subdomains[i]},_abortLoading:function(){var t,i;for(t in this._tiles)this._tiles[t].coords.z!==this._tileZoom&&((i=this._tiles[t].el).onload=r,i.onerror=r,i.complete||(i.src=ni,ut(i),delete this._tiles[t]))}}),pn=dn.extend({defaultWmsParams:{service:"WMS",request:"GetMap",layers:"",styles:"",format:"image/jpeg",transparent:!1,version:"1.1.1"},options:{crs:null,uppercase:!1},initialize:function(t,e){this._url=t;var n=i({},this.defaultWmsParams);for(var o in e)o in this.options||(n[o]=e[o]);var s=(e=l(this,e)).detectRetina&&Ki?2:1,r=this.getTileSize();n.width=r.x*s,n.height=r.y*s,this.wmsParams=n},onAdd:function(t){this._crs=this.options.crs||t.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var i=this._wmsVersion>=1.3?"crs":"srs";this.wmsParams[i]=this._crs.code,dn.prototype.onAdd.call(this,t)},getTileUrl:function(t){var i=this._tileCoordsToNwSe(t),e=this._crs,n=b(e.project(i[0]),e.project(i[1])),o=n.min,s=n.max,r=(this._wmsVersion>=1.3&&this._crs===He?[o.y,o.x,s.y,s.x]:[o.x,o.y,s.x,s.y]).join(","),a=L.TileLayer.prototype.getTileUrl.call(this,t);return a+c(this.wmsParams,a,this.options.uppercase)+(this.options.uppercase?"&BBOX=":"&bbox=")+r},setParams:function(t,e){return i(this.wmsParams,t),e||this.redraw(),this}});dn.WMS=pn,Yt.wms=function(t,i){return new pn(t,i)};var mn=Ue.extend({options:{padding:.1,tolerance:0},initialize:function(t){l(this,t),n(this),this._layers=this._layers||{}},onAdd:function(){this._container||(this._initContainer(),this._zoomAnimated&&pt(this._container,"leaflet-zoom-animated")),this.getPane().appendChild(this._container),this._update(),this.on("update",this._updatePaths,this)},onRemove:function(){this.off("update",this._updatePaths,this),this._destroyContainer()},getEvents:function(){var t={viewreset:this._reset,zoom:this._onZoom,moveend:this._update,zoomend:this._onZoomEnd};return this._zoomAnimated&&(t.zoomanim=this._onAnimZoom),t},_onAnimZoom:function(t){this._updateTransform(t.center,t.zoom)},_onZoom:function(){this._updateTransform(this._map.getCenter(),this._map.getZoom())},_updateTransform:function(t,i){var e=this._map.getZoomScale(i,this._zoom),n=Pt(this._container),o=this._map.getSize().multiplyBy(.5+this.options.padding),s=this._map.project(this._center,i),r=this._map.project(t,i).subtract(s),a=o.multiplyBy(-e).add(n).add(o).subtract(r);Ni?wt(this._container,a,e):Lt(this._container,a)},_reset:function(){this._update(),this._updateTransform(this._center,this._zoom);for(var t in this._layers)this._layers[t]._reset()},_onZoomEnd:function(){for(var t in this._layers)this._layers[t]._project()},_updatePaths:function(){for(var t in this._layers)this._layers[t]._update()},_update:function(){var t=this.options.padding,i=this._map.getSize(),e=this._map.containerPointToLayerPoint(i.multiplyBy(-t)).round();this._bounds=new P(e,e.add(i.multiplyBy(1+2*t)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),fn=mn.extend({getEvents:function(){var t=mn.prototype.getEvents.call(this);return t.viewprereset=this._onViewPreReset,t},_onViewPreReset:function(){this._postponeUpdatePaths=!0},onAdd:function(){mn.prototype.onAdd.call(this),this._draw()},_initContainer:function(){var t=this._container=document.createElement("canvas");V(t,"mousemove",o(this._onMouseMove,32,this),this),V(t,"click dblclick mousedown mouseup contextmenu",this._onClick,this),V(t,"mouseout",this._handleMouseOut,this),this._ctx=t.getContext("2d")},_destroyContainer:function(){delete this._ctx,ut(this._container),q(this._container),delete this._container},_updatePaths:function(){if(!this._postponeUpdatePaths){this._redrawBounds=null;for(var t in this._layers)this._layers[t]._update();this._redraw()}},_update:function(){if(!this._map._animatingZoom||!this._bounds){this._drawnLayers={},mn.prototype._update.call(this);var t=this._bounds,i=this._container,e=t.getSize(),n=Ki?2:1;Lt(i,t.min),i.width=n*e.x,i.height=n*e.y,i.style.width=e.x+"px",i.style.height=e.y+"px",Ki&&this._ctx.scale(2,2),this._ctx.translate(-t.min.x,-t.min.y),this.fire("update")}},_reset:function(){mn.prototype._reset.call(this),this._postponeUpdatePaths&&(this._postponeUpdatePaths=!1,this._updatePaths())},_initPath:function(t){this._updateDashArray(t),this._layers[n(t)]=t;var i=t._order={layer:t,prev:this._drawLast,next:null};this._drawLast&&(this._drawLast.next=i),this._drawLast=i,this._drawFirst=this._drawFirst||this._drawLast},_addPath:function(t){this._requestRedraw(t)},_removePath:function(t){var i=t._order,e=i.next,n=i.prev;e?e.prev=n:this._drawLast=n,n?n.next=e:this._drawFirst=e,delete t._order,delete this._layers[L.stamp(t)],this._requestRedraw(t)},_updatePath:function(t){this._extendRedrawBounds(t),t._project(),t._update(),this._requestRedraw(t)},_updateStyle:function(t){this._updateDashArray(t),this._requestRedraw(t)},_updateDashArray:function(t){if(t.options.dashArray){var i,e=t.options.dashArray.split(","),n=[];for(i=0;i<e.length;i++)n.push(Number(e[i]));t.options._dashArray=n}},_requestRedraw:function(t){this._map&&(this._extendRedrawBounds(t),this._redrawRequest=this._redrawRequest||f(this._redraw,this))},_extendRedrawBounds:function(t){if(t._pxBounds){var i=(t.options.weight||0)+1;this._redrawBounds=this._redrawBounds||new P,this._redrawBounds.extend(t._pxBounds.min.subtract([i,i])),this._redrawBounds.extend(t._pxBounds.max.add([i,i]))}},_redraw:function(){this._redrawRequest=null,this._redrawBounds&&(this._redrawBounds.min._floor(),this._redrawBounds.max._ceil()),this._clear(),this._draw(),this._redrawBounds=null},_clear:function(){var t=this._redrawBounds;if(t){var i=t.getSize();this._ctx.clearRect(t.min.x,t.min.y,i.x,i.y)}else this._ctx.clearRect(0,0,this._container.width,this._container.height)},_draw:function(){var t,i=this._redrawBounds;if(this._ctx.save(),i){var e=i.getSize();this._ctx.beginPath(),this._ctx.rect(i.min.x,i.min.y,e.x,e.y),this._ctx.clip()}this._drawing=!0;for(var n=this._drawFirst;n;n=n.next)t=n.layer,(!i||t._pxBounds&&t._pxBounds.intersects(i))&&t._updatePath();this._drawing=!1,this._ctx.restore()},_updatePoly:function(t,i){if(this._drawing){var e,n,o,s,r=t._parts,a=r.length,h=this._ctx;if(a){for(this._drawnLayers[t._leaflet_id]=t,h.beginPath(),e=0;e<a;e++){for(n=0,o=r[e].length;n<o;n++)s=r[e][n],h[n?"lineTo":"moveTo"](s.x,s.y);i&&h.closePath()}this._fillStroke(h,t)}}},_updateCircle:function(t){if(this._drawing&&!t._empty()){var i=t._point,e=this._ctx,n=Math.max(Math.round(t._radius),1),o=(Math.max(Math.round(t._radiusY),1)||n)/n;this._drawnLayers[t._leaflet_id]=t,1!==o&&(e.save(),e.scale(1,o)),e.beginPath(),e.arc(i.x,i.y/o,n,0,2*Math.PI,!1),1!==o&&e.restore(),this._fillStroke(e,t)}},_fillStroke:function(t,i){var e=i.options;e.fill&&(t.globalAlpha=e.fillOpacity,t.fillStyle=e.fillColor||e.color,t.fill(e.fillRule||"evenodd")),e.stroke&&0!==e.weight&&(t.setLineDash&&t.setLineDash(i.options&&i.options._dashArray||[]),t.globalAlpha=e.opacity,t.lineWidth=e.weight,t.strokeStyle=e.color,t.lineCap=e.lineCap,t.lineJoin=e.lineJoin,t.stroke())},_onClick:function(t){for(var i,e,n=this._map.mouseEventToLayerPoint(t),o=this._drawFirst;o;o=o.next)(i=o.layer).options.interactive&&i._containsPoint(n)&&!this._map._draggableMoved(i)&&(e=i);e&&(et(t),this._fireEvent([e],t))},_onMouseMove:function(t){if(this._map&&!this._map.dragging.moving()&&!this._map._animatingZoom){var i=this._map.mouseEventToLayerPoint(t);this._handleMouseHover(t,i)}},_handleMouseOut:function(t){var i=this._hoveredLayer;i&&(mt(this._container,"leaflet-interactive"),this._fireEvent([i],t,"mouseout"),this._hoveredLayer=null)},_handleMouseHover:function(t,i){for(var e,n,o=this._drawFirst;o;o=o.next)(e=o.layer).options.interactive&&e._containsPoint(i)&&(n=e);n!==this._hoveredLayer&&(this._handleMouseOut(t),n&&(pt(this._container,"leaflet-interactive"),this._fireEvent([n],t,"mouseover"),this._hoveredLayer=n)),this._hoveredLayer&&this._fireEvent([this._hoveredLayer],t)},_fireEvent:function(t,i,e){this._map._fireDOMEvent(i,e||i.type,t)},_bringToFront:function(t){var i=t._order,e=i.next,n=i.prev;e&&(e.prev=n,n?n.next=e:e&&(this._drawFirst=e),i.prev=this._drawLast,this._drawLast.next=i,i.next=null,this._drawLast=i,this._requestRedraw(t))},_bringToBack:function(t){var i=t._order,e=i.next,n=i.prev;n&&(n.next=e,e?e.prev=n:n&&(this._drawLast=n),i.prev=null,i.next=this._drawFirst,this._drawFirst.prev=i,this._drawFirst=i,this._requestRedraw(t))}}),gn=function(){try{return document.namespaces.add("lvml","urn:schemas-microsoft-com:vml"),function(t){return document.createElement("<lvml:"+t+' class="lvml">')}}catch(t){return function(t){return document.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}}(),vn={_initContainer:function(){this._container=ht("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(mn.prototype._update.call(this),this.fire("update"))},_initPath:function(t){var i=t._container=gn("shape");pt(i,"leaflet-vml-shape "+(this.options.className||"")),i.coordsize="1 1",t._path=gn("path"),i.appendChild(t._path),this._updateStyle(t),this._layers[n(t)]=t},_addPath:function(t){var i=t._container;this._container.appendChild(i),t.options.interactive&&t.addInteractiveTarget(i)},_removePath:function(t){var i=t._container;ut(i),t.removeInteractiveTarget(i),delete this._layers[n(t)]},_updateStyle:function(t){var i=t._stroke,e=t._fill,n=t.options,o=t._container;o.stroked=!!n.stroke,o.filled=!!n.fill,n.stroke?(i||(i=t._stroke=gn("stroke")),o.appendChild(i),i.weight=n.weight+"px",i.color=n.color,i.opacity=n.opacity,n.dashArray?i.dashStyle=ei(n.dashArray)?n.dashArray.join(" "):n.dashArray.replace(/( *, *)/g," "):i.dashStyle="",i.endcap=n.lineCap.replace("butt","flat"),i.joinstyle=n.lineJoin):i&&(o.removeChild(i),t._stroke=null),n.fill?(e||(e=t._fill=gn("fill")),o.appendChild(e),e.color=n.fillColor||n.color,e.opacity=n.fillOpacity):e&&(o.removeChild(e),t._fill=null)},_updateCircle:function(t){var i=t._point.round(),e=Math.round(t._radius),n=Math.round(t._radiusY||e);this._setPath(t,t._empty()?"M0 0":"AL "+i.x+","+i.y+" "+e+","+n+" 0,23592600")},_setPath:function(t,i){t._path.v=i},_bringToFront:function(t){ct(t._container)},_bringToBack:function(t){_t(t._container)}},yn=Ji?gn:E,xn=mn.extend({getEvents:function(){var t=mn.prototype.getEvents.call(this);return t.zoomstart=this._onZoomStart,t},_initContainer:function(){this._container=yn("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=yn("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){ut(this._container),q(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_onZoomStart:function(){this._update()},_update:function(){if(!this._map._animatingZoom||!this._bounds){mn.prototype._update.call(this);var t=this._bounds,i=t.getSize(),e=this._container;this._svgSize&&this._svgSize.equals(i)||(this._svgSize=i,e.setAttribute("width",i.x),e.setAttribute("height",i.y)),Lt(e,t.min),e.setAttribute("viewBox",[t.min.x,t.min.y,i.x,i.y].join(" ")),this.fire("update")}},_initPath:function(t){var i=t._path=yn("path");t.options.className&&pt(i,t.options.className),t.options.interactive&&pt(i,"leaflet-interactive"),this._updateStyle(t),this._layers[n(t)]=t},_addPath:function(t){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(t._path),t.addInteractiveTarget(t._path)},_removePath:function(t){ut(t._path),t.removeInteractiveTarget(t._path),delete this._layers[n(t)]},_updatePath:function(t){t._project(),t._update()},_updateStyle:function(t){var i=t._path,e=t.options;i&&(e.stroke?(i.setAttribute("stroke",e.color),i.setAttribute("stroke-opacity",e.opacity),i.setAttribute("stroke-width",e.weight),i.setAttribute("stroke-linecap",e.lineCap),i.setAttribute("stroke-linejoin",e.lineJoin),e.dashArray?i.setAttribute("stroke-dasharray",e.dashArray):i.removeAttribute("stroke-dasharray"),e.dashOffset?i.setAttribute("stroke-dashoffset",e.dashOffset):i.removeAttribute("stroke-dashoffset")):i.setAttribute("stroke","none"),e.fill?(i.setAttribute("fill",e.fillColor||e.color),i.setAttribute("fill-opacity",e.fillOpacity),i.setAttribute("fill-rule",e.fillRule||"evenodd")):i.setAttribute("fill","none"))},_updatePoly:function(t,i){this._setPath(t,k(t._parts,i))},_updateCircle:function(t){var i=t._point,e=Math.max(Math.round(t._radius),1),n="a"+e+","+(Math.max(Math.round(t._radiusY),1)||e)+" 0 1,0 ",o=t._empty()?"M0 0":"M"+(i.x-e)+","+i.y+n+2*e+",0 "+n+2*-e+",0 ";this._setPath(t,o)},_setPath:function(t,i){t._path.setAttribute("d",i)},_bringToFront:function(t){ct(t._path)},_bringToBack:function(t){_t(t._path)}});Ji&&xn.include(vn),Le.include({getRenderer:function(t){var i=t.options.renderer||this._getPaneRenderer(t.options.pane)||this.options.renderer||this._renderer;return i||(i=this._renderer=this.options.preferCanvas&&Xt()||Jt()),this.hasLayer(i)||this.addLayer(i),i},_getPaneRenderer:function(t){if("overlayPane"===t||void 0===t)return!1;var i=this._paneRenderers[t];return void 0===i&&(i=xn&&Jt({pane:t})||fn&&Xt({pane:t}),this._paneRenderers[t]=i),i}});var wn=en.extend({initialize:function(t,i){en.prototype.initialize.call(this,this._boundsToLatLngs(t),i)},setBounds:function(t){return this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return t=z(t),[t.getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}});xn.create=yn,xn.pointsToPath=k,nn.geometryToLayer=Wt,nn.coordsToLatLng=Ht,nn.coordsToLatLngs=Ft,nn.latLngToCoords=Ut,nn.latLngsToCoords=Vt,nn.getFeature=qt,nn.asFeature=Gt,Le.mergeOptions({boxZoom:!0});var Ln=Ze.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane,this._resetStateTimeout=0,t.on("unload",this._destroy,this)},addHooks:function(){V(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){q(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){ut(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){0!==this._resetStateTimeout&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(t){if(!t.shiftKey||1!==t.which&&1!==t.button)return!1;this._clearDeferredResetState(),this._resetState(),mi(),bt(),this._startPoint=this._map.mouseEventToContainerPoint(t),V(document,{contextmenu:Q,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(t){this._moved||(this._moved=!0,this._box=ht("div","leaflet-zoom-box",this._container),pt(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(t);var i=new P(this._point,this._startPoint),e=i.getSize();Lt(this._box,i.min),this._box.style.width=e.x+"px",this._box.style.height=e.y+"px"},_finish:function(){this._moved&&(ut(this._box),mt(this._container,"leaflet-crosshair")),fi(),Tt(),q(document,{contextmenu:Q,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(t){if((1===t.which||1===t.button)&&(this._finish(),this._moved)){this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(e(this._resetState,this),0);var i=new T(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(i).fire("boxzoomend",{boxZoomBounds:i})}},_onKeyDown:function(t){27===t.keyCode&&this._finish()}});Le.addInitHook("addHandler","boxZoom",Ln),Le.mergeOptions({doubleClickZoom:!0});var Pn=Ze.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(t){var i=this._map,e=i.getZoom(),n=i.options.zoomDelta,o=t.originalEvent.shiftKey?e-n:e+n;"center"===i.options.doubleClickZoom?i.setZoom(o):i.setZoomAround(t.containerPoint,o)}});Le.addInitHook("addHandler","doubleClickZoom",Pn),Le.mergeOptions({dragging:!0,inertia:!zi,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0});var bn=Ze.extend({addHooks:function(){if(!this._draggable){var t=this._map;this._draggable=new Be(t._mapPane,t._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),t.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),t.on("zoomend",this._onZoomEnd,this),t.whenReady(this._onZoomEnd,this))}pt(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){mt(this._map._container,"leaflet-grab"),mt(this._map._container,"leaflet-touch-drag"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDragStart:function(){var t=this._map;if(t._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity){var i=z(this._map.options.maxBounds);this._offsetLimit=b(this._map.latLngToContainerPoint(i.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(i.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))}else this._offsetLimit=null;t.fire("movestart").fire("dragstart"),t.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(t){if(this._map.options.inertia){var i=this._lastTime=+new Date,e=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(e),this._times.push(i),this._prunePositions(i)}this._map.fire("move",t).fire("drag",t)},_prunePositions:function(t){for(;this._positions.length>1&&t-this._times[0]>50;)this._positions.shift(),this._times.shift()},_onZoomEnd:function(){var t=this._map.getSize().divideBy(2),i=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=i.subtract(t).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(t,i){return t-(t-i)*this._viscosity},_onPreDragLimit:function(){if(this._viscosity&&this._offsetLimit){var t=this._draggable._newPos.subtract(this._draggable._startPos),i=this._offsetLimit;t.x<i.min.x&&(t.x=this._viscousLimit(t.x,i.min.x)),t.y<i.min.y&&(t.y=this._viscousLimit(t.y,i.min.y)),t.x>i.max.x&&(t.x=this._viscousLimit(t.x,i.max.x)),t.y>i.max.y&&(t.y=this._viscousLimit(t.y,i.max.y)),this._draggable._newPos=this._draggable._startPos.add(t)}},_onPreDragWrap:function(){var t=this._worldWidth,i=Math.round(t/2),e=this._initialWorldOffset,n=this._draggable._newPos.x,o=(n-i+e)%t+i-e,s=(n+i+e)%t-i-e,r=Math.abs(o+e)<Math.abs(s+e)?o:s;this._draggable._absPos=this._draggable._newPos.clone(),this._draggable._newPos.x=r},_onDragEnd:function(t){var i=this._map,e=i.options,n=!e.inertia||this._times.length<2;if(i.fire("dragend",t),n)i.fire("moveend");else{this._prunePositions(+new Date);var o=this._lastPos.subtract(this._positions[0]),s=(this._lastTime-this._times[0])/1e3,r=e.easeLinearity,a=o.multiplyBy(r/s),h=a.distanceTo([0,0]),u=Math.min(e.inertiaMaxSpeed,h),l=a.multiplyBy(u/h),c=u/(e.inertiaDeceleration*r),_=l.multiplyBy(-c/2).round();_.x||_.y?(_=i._limitOffset(_,i.options.maxBounds),f(function(){i.panBy(_,{duration:c,easeLinearity:r,noMoveStart:!0,animate:!0})})):i.fire("moveend")}}});Le.addInitHook("addHandler","dragging",bn),Le.mergeOptions({keyboard:!0,keyboardPanDelta:80});var Tn=Ze.extend({keyCodes:{left:[37],right:[39],down:[40],up:[38],zoomIn:[187,107,61,171],zoomOut:[189,109,54,173]},initialize:function(t){this._map=t,this._setPanDelta(t.options.keyboardPanDelta),this._setZoomDelta(t.options.zoomDelta)},addHooks:function(){var t=this._map._container;t.tabIndex<=0&&(t.tabIndex="0"),V(t,{focus:this._onFocus,blur:this._onBlur,mousedown:this._onMouseDown},this),this._map.on({focus:this._addHooks,blur:this._removeHooks},this)},removeHooks:function(){this._removeHooks(),q(this._map._container,{focus:this._onFocus,blur:this._onBlur,mousedown:this._onMouseDown},this),this._map.off({focus:this._addHooks,blur:this._removeHooks},this)},_onMouseDown:function(){if(!this._focused){var t=document.body,i=document.documentElement,e=t.scrollTop||i.scrollTop,n=t.scrollLeft||i.scrollLeft;this._map._container.focus(),window.scrollTo(n,e)}},_onFocus:function(){this._focused=!0,this._map.fire("focus")},_onBlur:function(){this._focused=!1,this._map.fire("blur")},_setPanDelta:function(t){var i,e,n=this._panKeys={},o=this.keyCodes;for(i=0,e=o.left.length;i<e;i++)n[o.left[i]]=[-1*t,0];for(i=0,e=o.right.length;i<e;i++)n[o.right[i]]=[t,0];for(i=0,e=o.down.length;i<e;i++)n[o.down[i]]=[0,t];for(i=0,e=o.up.length;i<e;i++)n[o.up[i]]=[0,-1*t]},_setZoomDelta:function(t){var i,e,n=this._zoomKeys={},o=this.keyCodes;for(i=0,e=o.zoomIn.length;i<e;i++)n[o.zoomIn[i]]=t;for(i=0,e=o.zoomOut.length;i<e;i++)n[o.zoomOut[i]]=-t},_addHooks:function(){V(document,"keydown",this._onKeyDown,this)},_removeHooks:function(){q(document,"keydown",this._onKeyDown,this)},_onKeyDown:function(t){if(!(t.altKey||t.ctrlKey||t.metaKey)){var i,e=t.keyCode,n=this._map;if(e in this._panKeys){if(n._panAnim&&n._panAnim._inProgress)return;i=this._panKeys[e],t.shiftKey&&(i=w(i).multiplyBy(3)),n.panBy(i),n.options.maxBounds&&n.panInsideBounds(n.options.maxBounds)}else if(e in this._zoomKeys)n.setZoom(n.getZoom()+(t.shiftKey?3:1)*this._zoomKeys[e]);else{if(27!==e||!n._popup||!n._popup.options.closeOnEscapeKey)return;n.closePopup()}Q(t)}}});Le.addInitHook("addHandler","keyboard",Tn),Le.mergeOptions({scrollWheelZoom:!0,wheelDebounceTime:40,wheelPxPerZoomLevel:60});var zn=Ze.extend({addHooks:function(){V(this._map._container,"mousewheel",this._onWheelScroll,this),this._delta=0},removeHooks:function(){q(this._map._container,"mousewheel",this._onWheelScroll,this)},_onWheelScroll:function(t){var i=it(t),n=this._map.options.wheelDebounceTime;this._delta+=i,this._lastMousePos=this._map.mouseEventToContainerPoint(t),this._startTime||(this._startTime=+new Date);var o=Math.max(n-(+new Date-this._startTime),0);clearTimeout(this._timer),this._timer=setTimeout(e(this._performZoom,this),o),Q(t)},_performZoom:function(){var t=this._map,i=t.getZoom(),e=this._map.options.zoomSnap||0;t._stop();var n=this._delta/(4*this._map.options.wheelPxPerZoomLevel),o=4*Math.log(2/(1+Math.exp(-Math.abs(n))))/Math.LN2,s=e?Math.ceil(o/e)*e:o,r=t._limitZoom(i+(this._delta>0?s:-s))-i;this._delta=0,this._startTime=null,r&&("center"===t.options.scrollWheelZoom?t.setZoom(i+r):t.setZoomAround(this._lastMousePos,i+r))}});Le.addInitHook("addHandler","scrollWheelZoom",zn),Le.mergeOptions({tap:!0,tapTolerance:15});var Mn=Ze.extend({addHooks:function(){V(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){q(this._map._container,"touchstart",this._onDown,this)},_onDown:function(t){if(t.touches){if($(t),this._fireClick=!0,t.touches.length>1)return this._fireClick=!1,void clearTimeout(this._holdTimeout);var i=t.touches[0],n=i.target;this._startPos=this._newPos=new x(i.clientX,i.clientY),n.tagName&&"a"===n.tagName.toLowerCase()&&pt(n,"leaflet-active"),this._holdTimeout=setTimeout(e(function(){this._isTapValid()&&(this._fireClick=!1,this._onUp(),this._simulateEvent("contextmenu",i))},this),1e3),this._simulateEvent("mousedown",i),V(document,{touchmove:this._onMove,touchend:this._onUp},this)}},_onUp:function(t){if(clearTimeout(this._holdTimeout),q(document,{touchmove:this._onMove,touchend:this._onUp},this),this._fireClick&&t&&t.changedTouches){var i=t.changedTouches[0],e=i.target;e&&e.tagName&&"a"===e.tagName.toLowerCase()&&mt(e,"leaflet-active"),this._simulateEvent("mouseup",i),this._isTapValid()&&this._simulateEvent("click",i)}},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_onMove:function(t){var i=t.touches[0];this._newPos=new x(i.clientX,i.clientY),this._simulateEvent("mousemove",i)},_simulateEvent:function(t,i){var e=document.createEvent("MouseEvents");e._simulated=!0,i.target._simulatedClick=!0,e.initMouseEvent(t,!0,!0,window,1,i.screenX,i.screenY,i.clientX,i.clientY,!1,!1,!1,!1,0,null),i.target.dispatchEvent(e)}});Vi&&!Ui&&Le.addInitHook("addHandler","tap",Mn),Le.mergeOptions({touchZoom:Vi&&!zi,bounceAtZoomLimits:!0});var Cn=Ze.extend({addHooks:function(){pt(this._map._container,"leaflet-touch-zoom"),V(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){mt(this._map._container,"leaflet-touch-zoom"),q(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(t){var i=this._map;if(t.touches&&2===t.touches.length&&!i._animatingZoom&&!this._zooming){var e=i.mouseEventToContainerPoint(t.touches[0]),n=i.mouseEventToContainerPoint(t.touches[1]);this._centerPoint=i.getSize()._divideBy(2),this._startLatLng=i.containerPointToLatLng(this._centerPoint),"center"!==i.options.touchZoom&&(this._pinchStartLatLng=i.containerPointToLatLng(e.add(n)._divideBy(2))),this._startDist=e.distanceTo(n),this._startZoom=i.getZoom(),this._moved=!1,this._zooming=!0,i._stop(),V(document,"touchmove",this._onTouchMove,this),V(document,"touchend",this._onTouchEnd,this),$(t)}},_onTouchMove:function(t){if(t.touches&&2===t.touches.length&&this._zooming){var i=this._map,n=i.mouseEventToContainerPoint(t.touches[0]),o=i.mouseEventToContainerPoint(t.touches[1]),s=n.distanceTo(o)/this._startDist;if(this._zoom=i.getScaleZoom(s,this._startZoom),!i.options.bounceAtZoomLimits&&(this._zoom<i.getMinZoom()&&s<1||this._zoom>i.getMaxZoom()&&s>1)&&(this._zoom=i._limitZoom(this._zoom)),"center"===i.options.touchZoom){if(this._center=this._startLatLng,1===s)return}else{var r=n._add(o)._divideBy(2)._subtract(this._centerPoint);if(1===s&&0===r.x&&0===r.y)return;this._center=i.unproject(i.project(this._pinchStartLatLng,this._zoom).subtract(r),this._zoom)}this._moved||(i._moveStart(!0,!1),this._moved=!0),g(this._animRequest);var a=e(i._move,i,this._center,this._zoom,{pinch:!0,round:!1});this._animRequest=f(a,this,!0),$(t)}},_onTouchEnd:function(){this._moved&&this._zooming?(this._zooming=!1,g(this._animRequest),q(document,"touchmove",this._onTouchMove),q(document,"touchend",this._onTouchEnd),this._map.options.zoomAnimation?this._map._animateZoom(this._center,this._map._limitZoom(this._zoom),!0,this._map.options.zoomSnap):this._map._resetView(this._center,this._map._limitZoom(this._zoom))):this._zooming=!1}});Le.addInitHook("addHandler","touchZoom",Cn),Le.BoxZoom=Ln,Le.DoubleClickZoom=Pn,Le.Drag=bn,Le.Keyboard=Tn,Le.ScrollWheelZoom=zn,Le.Tap=Mn,Le.TouchZoom=Cn;var Zn=window.L;window.L=t,Object.freeze=$t,t.version="1.3.1+HEAD.ba6f97f",t.noConflict=function(){return window.L=Zn,this},t.Control=Pe,t.control=be,t.Browser=$i,t.Evented=ui,t.Mixin=Ee,t.Util=ai,t.Class=v,t.Handler=Ze,t.extend=i,t.bind=e,t.stamp=n,t.setOptions=l,t.DomEvent=de,t.DomUtil=xe,t.PosAnimation=we,t.Draggable=Be,t.LineUtil=Oe,t.PolyUtil=Re,t.Point=x,t.point=w,t.Bounds=P,t.bounds=b,t.Transformation=Z,t.transformation=S,t.Projection=je,t.LatLng=M,t.latLng=C,t.LatLngBounds=T,t.latLngBounds=z,t.CRS=ci,t.GeoJSON=nn,t.geoJSON=Kt,t.geoJson=sn,t.Layer=Ue,t.LayerGroup=Ve,t.layerGroup=function(t,i){return new Ve(t,i)},t.FeatureGroup=qe,t.featureGroup=function(t){return new qe(t)},t.ImageOverlay=rn,t.imageOverlay=function(t,i,e){return new rn(t,i,e)},t.VideoOverlay=an,t.videoOverlay=function(t,i,e){return new an(t,i,e)},t.DivOverlay=hn,t.Popup=un,t.popup=function(t,i){return new un(t,i)},t.Tooltip=ln,t.tooltip=function(t,i){return new ln(t,i)},t.Icon=Ge,t.icon=function(t){return new Ge(t)},t.DivIcon=cn,t.divIcon=function(t){return new cn(t)},t.Marker=Xe,t.marker=function(t,i){return new Xe(t,i)},t.TileLayer=dn,t.tileLayer=Yt,t.GridLayer=_n,t.gridLayer=function(t){return new _n(t)},t.SVG=xn,t.svg=Jt,t.Renderer=mn,t.Canvas=fn,t.canvas=Xt,t.Path=Je,t.CircleMarker=$e,t.circleMarker=function(t,i){return new $e(t,i)},t.Circle=Qe,t.circle=function(t,i,e){return new Qe(t,i,e)},t.Polyline=tn,t.polyline=function(t,i){return new tn(t,i)},t.Polygon=en,t.polygon=function(t,i){return new en(t,i)},t.Rectangle=wn,t.rectangle=function(t,i){return new wn(t,i)},t.Map=Le,t.map=function(t,i){return new Le(t,i)}});</script>
|
|
<style type="text/css">
|
|
img.leaflet-tile {
|
|
padding: 0;
|
|
margin: 0;
|
|
border-radius: 0;
|
|
border: none;
|
|
}
|
|
.leaflet .info {
|
|
padding: 6px 8px;
|
|
font: 14px/16px Arial, Helvetica, sans-serif;
|
|
background: white;
|
|
background: rgba(255,255,255,0.8);
|
|
box-shadow: 0 0 15px rgba(0,0,0,0.2);
|
|
border-radius: 5px;
|
|
}
|
|
.leaflet .legend {
|
|
line-height: 18px;
|
|
color: #555;
|
|
}
|
|
.leaflet .legend svg text {
|
|
fill: #555;
|
|
}
|
|
.leaflet .legend svg line {
|
|
stroke: #555;
|
|
}
|
|
.leaflet .legend i {
|
|
width: 18px;
|
|
height: 18px;
|
|
margin-right: 4px;
|
|
opacity: 0.7;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
|
|
zoom: 1;
|
|
*display: inline;
|
|
}
|
|
</style>
|
|
<script>!function(t,s){"object"==typeof exports&&"undefined"!=typeof module?module.exports=s():"function"==typeof define&&define.amd?define(s):t.proj4=s()}(this,function(){"use strict";function k(t,s){if(t[s])return t[s];for(var i,a=Object.keys(t),h=s.toLowerCase().replace(H,""),e=-1;++e<a.length;)if((i=a[e]).toLowerCase().replace(H,"")===h)return t[i]}function e(t){if("string"!=typeof t)throw new Error("not a string");this.text=t.trim(),this.level=0,this.place=0,this.root=null,this.stack=[],this.currentObject=null,this.state=K}function h(t,s,i){Array.isArray(s)&&(i.unshift(s),s=null);var a=s?{}:t,h=i.reduce(function(t,s){return n(s,t),t},a);s&&(t[s]=h)}function n(t,s){if(Array.isArray(t)){var i,a=t.shift();if("PARAMETER"===a&&(a=t.shift()),1===t.length)return Array.isArray(t[0])?(s[a]={},void n(t[0],s[a])):void(s[a]=t[0]);if(t.length)if("TOWGS84"!==a){if("AXIS"===a)return a in s||(s[a]=[]),void s[a].push(t);switch(Array.isArray(a)||(s[a]={}),a){case"UNIT":case"PRIMEM":case"VERT_DATUM":return s[a]={name:t[0].toLowerCase(),convert:t[1]},void(3===t.length&&n(t[2],s[a]));case"SPHEROID":case"ELLIPSOID":return s[a]={name:t[0],a:t[1],rf:t[2]},void(4===t.length&&n(t[3],s[a]));case"PROJECTEDCRS":case"PROJCRS":case"GEOGCS":case"GEOCCS":case"PROJCS":case"LOCAL_CS":case"GEODCRS":case"GEODETICCRS":case"GEODETICDATUM":case"EDATUM":case"ENGINEERINGDATUM":case"VERT_CS":case"VERTCRS":case"VERTICALCRS":case"COMPD_CS":case"COMPOUNDCRS":case"ENGINEERINGCRS":case"ENGCRS":case"FITTED_CS":case"LOCAL_DATUM":case"DATUM":return t[0]=["name",t[0]],void h(s,a,t);default:for(i=-1;++i<t.length;)if(!Array.isArray(t[i]))return n(t,s[a]);return h(s,a,t)}}else s[a]=t;else s[a]=!0}else s[t]=!0}function r(t){return t*it}function o(e){function t(t){return t*(e.to_meter||1)}if("GEOGCS"===e.type?e.projName="longlat":"LOCAL_CS"===e.type?(e.projName="identity",e.local=!0):"object"==typeof e.PROJECTION?e.projName=Object.keys(e.PROJECTION)[0]:e.projName=e.PROJECTION,e.AXIS){for(var s="",i=0,a=e.AXIS.length;i<a;++i){var h=e.AXIS[i][0].toLowerCase();-1!==h.indexOf("north")?s+="n":-1!==h.indexOf("south")?s+="s":-1!==h.indexOf("east")?s+="e":-1!==h.indexOf("west")&&(s+="w")}2===s.length&&(s+="u"),3===s.length&&(e.axis=s)}e.UNIT&&(e.units=e.UNIT.name.toLowerCase(),"metre"===e.units&&(e.units="meter"),e.UNIT.convert&&("GEOGCS"===e.type?e.DATUM&&e.DATUM.SPHEROID&&(e.to_meter=e.UNIT.convert*e.DATUM.SPHEROID.a):e.to_meter=e.UNIT.convert));var n=e.GEOGCS;"GEOGCS"===e.type&&(n=e),n&&(n.DATUM?e.datumCode=n.DATUM.name.toLowerCase():e.datumCode=n.name.toLowerCase(),"d_"===e.datumCode.slice(0,2)&&(e.datumCode=e.datumCode.slice(2)),"new_zealand_geodetic_datum_1949"!==e.datumCode&&"new_zealand_1949"!==e.datumCode||(e.datumCode="nzgd49"),"wgs_1984"!==e.datumCode&&"world_geodetic_system_1984"!==e.datumCode||("Mercator_Auxiliary_Sphere"===e.PROJECTION&&(e.sphere=!0),e.datumCode="wgs84"),"_ferro"===e.datumCode.slice(-6)&&(e.datumCode=e.datumCode.slice(0,-6)),"_jakarta"===e.datumCode.slice(-8)&&(e.datumCode=e.datumCode.slice(0,-8)),~e.datumCode.indexOf("belge")&&(e.datumCode="rnb72"),n.DATUM&&n.DATUM.SPHEROID&&(e.ellps=n.DATUM.SPHEROID.name.replace("_19","").replace(/[Cc]larke\_18/,"clrk"),"international"===e.ellps.toLowerCase().slice(0,13)&&(e.ellps="intl"),e.a=n.DATUM.SPHEROID.a,e.rf=parseFloat(n.DATUM.SPHEROID.rf,10)),n.DATUM&&n.DATUM.TOWGS84&&(e.datum_params=n.DATUM.TOWGS84),~e.datumCode.indexOf("osgb_1936")&&(e.datumCode="osgb36"),~e.datumCode.indexOf("osni_1952")&&(e.datumCode="osni52"),(~e.datumCode.indexOf("tm65")||~e.datumCode.indexOf("geodetic_datum_of_1965"))&&(e.datumCode="ire65"),"ch1903+"===e.datumCode&&(e.datumCode="ch1903"),~e.datumCode.indexOf("israel")&&(e.datumCode="isr93")),e.b&&!isFinite(e.b)&&(e.b=e.a),[["standard_parallel_1","Standard_Parallel_1"],["standard_parallel_2","Standard_Parallel_2"],["false_easting","False_Easting"],["false_northing","False_Northing"],["central_meridian","Central_Meridian"],["latitude_of_origin","Latitude_Of_Origin"],["latitude_of_origin","Central_Parallel"],["scale_factor","Scale_Factor"],["k0","scale_factor"],["latitude_of_center","Latitude_Of_Center"],["latitude_of_center","Latitude_of_center"],["lat0","latitude_of_center",r],["longitude_of_center","Longitude_Of_Center"],["longitude_of_center","Longitude_of_center"],["longc","longitude_of_center",r],["x0","false_easting",t],["y0","false_northing",t],["long0","central_meridian",r],["lat0","latitude_of_origin",r],["lat0","standard_parallel_1",r],["lat1","standard_parallel_1",r],["lat2","standard_parallel_2",r],["azimuth","Azimuth"],["alpha","azimuth",r],["srsCode","name"]].forEach(function(t){return s=e,a=(i=t)[0],h=i[1],void(!(a in s)&&h in s&&(s[a]=s[h],3===i.length&&(s[a]=i[2](s[a]))));var s,i,a,h}),e.long0||!e.longc||"Albers_Conic_Equal_Area"!==e.projName&&"Lambert_Azimuthal_Equal_Area"!==e.projName||(e.long0=e.longc),e.lat_ts||!e.lat1||"Stereographic_South_Pole"!==e.projName&&"Polar Stereographic (variant B)"!==e.projName||(e.lat0=r(0<e.lat1?90:-90),e.lat_ts=e.lat1)}function l(t){var s=this;if(2===arguments.length){var i=arguments[1];"string"==typeof i?"+"===i.charAt(0)?l[t]=J(arguments[1]):l[t]=at(arguments[1]):l[t]=i}else if(1===arguments.length){if(Array.isArray(t))return t.map(function(t){Array.isArray(t)?l.apply(s,t):l(t)});if("string"==typeof t){if(t in l)return l[t]}else"EPSG"in t?l["EPSG:"+t.EPSG]=t:"ESRI"in t?l["ESRI:"+t.ESRI]=t:"IAU2000"in t?l["IAU2000:"+t.IAU2000]=t:console.log(t);return}}function E(t){if("string"!=typeof t)return t;if(t in l)return l[t];if(a=t,lt.some(function(t){return-1<a.indexOf(t)})){var s=at(t);if(function(t){var s=k(t,"authority");if(s){var i=k(s,"epsg");return i&&-1<Mt.indexOf(i)}}(s))return l["EPSG:3857"];var i=function(t){var s=k(t,"extension");if(s)return k(s,"proj4")}(s);return i?J(i):s}var a;return"+"===t[0]?J(t):void 0}function t(t){return t}function s(t,s){var i=mt.length;return t.names?((mt[i]=t).names.forEach(function(t){ft[t.toLowerCase()]=i}),this):(console.log(s),!0)}function q(t,s){if(!(this instanceof q))return new q(t);s=s||function(t){if(t)throw t};var i,a,h,e,n,r,o,l,M,c,u,f,m,p,d,y,_,x,g,b,v,w,C,P,S,N=E(t);"object"==typeof N&&(i=q.projections.get(N.projName))?(!N.datumCode||"none"===N.datumCode||(a=k(_t,N.datumCode))&&(N.datum_params=a.towgs84?a.towgs84.split(","):null,N.ellps=a.ellipse,N.datumName=a.datumName?a.datumName:N.datumCode),N.k0=N.k0||1,N.axis=N.axis||"enu",N.ellps=N.ellps||"wgs84",b=N.a,v=N.b,w=N.rf,C=N.ellps,P=N.sphere,b||(b=(S=(S=k(dt,C))||yt).a,v=S.b,w=S.rf),w&&!v&&(v=(1-1/w)*b),(0===w||Math.abs(b-v)<D)&&(P=!0,v=b),m=(h={a:b,b:v,rf:w,sphere:P}).a,p=h.b,d=N.R_A,x=((y=m*m)-(_=p*p))/y,g=0,d?(y=(m*=1-x*(R+x*(L+x*T)))*m,x=0):g=Math.sqrt(x),e={es:x,e:g,ep2:(y-_)/_},n=N.datum||(r=N.datumCode,o=N.datum_params,l=h.a,M=h.b,c=e.es,u=e.ep2,(f={}).datum_type=void 0===r||"none"===r?G:A,o&&(f.datum_params=o.map(parseFloat),0===f.datum_params[0]&&0===f.datum_params[1]&&0===f.datum_params[2]||(f.datum_type=I),3<f.datum_params.length&&(0===f.datum_params[3]&&0===f.datum_params[4]&&0===f.datum_params[5]&&0===f.datum_params[6]||(f.datum_type=O,f.datum_params[3]*=j,f.datum_params[4]*=j,f.datum_params[5]*=j,f.datum_params[6]=f.datum_params[6]/1e6+1))),f.a=l,f.b=M,f.es=c,f.ep2=u,f),ct(this,N),ct(this,i),this.a=h.a,this.b=h.b,this.rf=h.rf,this.sphere=h.sphere,this.es=e.es,this.e=e.e,this.ep2=e.ep2,this.datum=n,this.init(),s(null,this)):s(t)}function M(t,s,i){var a,h,e,n,r=t.x,o=t.y,l=t.z?t.z:0;if(o<-z&&-1.001*z<o)o=-z;else if(z<o&&o<1.001*z)o=z;else{if(o<-z)return{x:-1/0,y:-1/0,z:t.z};if(z<o)return{x:1/0,y:1/0,z:t.z}}return r>Math.PI&&(r-=2*Math.PI),h=Math.sin(o),n=Math.cos(o),e=h*h,{x:((a=i/Math.sqrt(1-s*e))+l)*n*Math.cos(r),y:(a+l)*n*Math.sin(r),z:(a*(1-s)+l)*h}}function c(t,s,i,a){var h,e,n,r,o,l,M,c,u,f,m,p,d,y=t.x,_=t.y,x=t.z?t.z:0,g=Math.sqrt(y*y+_*_),b=Math.sqrt(y*y+_*_+x*x);if(g/i<1e-12){if(p=0,b/i<1e-12)return d=-a,{x:t.x,y:t.y,z:t.z}}else p=Math.atan2(_,y);for(h=x/b,l=(e=g/b)*(1-s)*(n=1/Math.sqrt(1-s*(2-s)*e*e)),M=h*n,m=0;m++,r=s*(o=i/Math.sqrt(1-s*M*M))/(o+(d=g*l+x*M-o*(1-s*M*M))),f=(u=h*(n=1/Math.sqrt(1-r*(2-r)*e*e)))*l-(c=e*(1-r)*n)*M,l=c,M=u,1e-24<f*f&&m<30;);return{x:p,y:Math.atan(u/Math.abs(c)),z:d}}function u(t){return t===I||t===O}function i(t){if("function"==typeof Number.isFinite){if(Number.isFinite(t))return;throw new TypeError("coordinates must be finite numbers")}if("number"!=typeof t||t!=t||!isFinite(t))throw new TypeError("coordinates must be finite numbers")}function f(t,s,i){var a,h,e;if(Array.isArray(i)&&(i=bt(i)),vt(i),t.datum&&s.datum&&(e=s,((h=t).datum.datum_type===I||h.datum.datum_type===O)&&"WGS84"!==e.datumCode||(e.datum.datum_type===I||e.datum.datum_type===O)&&"WGS84"!==h.datumCode)&&(i=f(t,a=new q("WGS84"),i),t=a),"enu"!==t.axis&&(i=gt(t,!1,i)),"longlat"===t.projName)i={x:i.x*N,y:i.y*N,z:i.z||0};else if(t.to_meter&&(i={x:i.x*t.to_meter,y:i.y*t.to_meter,z:i.z||0}),!(i=t.inverse(i)))return;return t.from_greenwich&&(i.x+=t.from_greenwich),i=xt(t.datum,s.datum,i),s.from_greenwich&&(i={x:i.x-s.from_greenwich,y:i.y,z:i.z||0}),"longlat"===s.projName?i={x:i.x*B,y:i.y*B,z:i.z||0}:(i=s.forward(i),s.to_meter&&(i={x:i.x/s.to_meter,y:i.y/s.to_meter,z:i.z||0})),"enu"!==s.axis?gt(s,!0,i):i}function m(s,i,a){var t,h,e;return Array.isArray(a)?(t=f(s,i,a)||{x:NaN,y:NaN},2<a.length?void 0!==s.name&&"geocent"===s.name||void 0!==i.name&&"geocent"===i.name?"number"==typeof t.z?[t.x,t.y,t.z].concat(a.splice(3)):[t.x,t.y,a[2]].concat(a.splice(3)):[t.x,t.y].concat(a.splice(2)):[t.x,t.y]):(h=f(s,i,a),2===(e=Object.keys(a)).length||e.forEach(function(t){if(void 0!==s.name&&"geocent"===s.name||void 0!==i.name&&"geocent"===i.name){if("x"===t||"y"===t||"z"===t)return}else if("x"===t||"y"===t)return;h[t]=a[t]}),h)}function p(t){return t instanceof q?t:t.oProj?t.oProj:q(t)}function a(s,i,t){s=p(s);var a,h=!1;return void 0===i?(i=s,s=wt,h=!0):void 0===i.x&&!Array.isArray(i)||(t=i,i=s,s=wt,h=!0),i=p(i),t?m(s,i,t):(a={forward:function(t){return m(s,i,t)},inverse:function(t){return m(i,s,t)}},h&&(a.oProj=i),a)}function d(t,s){return s=s||5,i=function(t){var s,i,a,h,e,n,r=t.lat,o=t.lon,l=_(r),M=_(o);n=Math.floor((o+180)/6)+1,180===o&&(n=60),56<=r&&r<64&&3<=o&&o<12&&(n=32),72<=r&&r<84&&(0<=o&&o<9?n=31:9<=o&&o<21?n=33:21<=o&&o<33?n=35:33<=o&&o<42&&(n=37)),e=_(6*(n-1)-180+3),s=6378137/Math.sqrt(1-.00669438*Math.sin(l)*Math.sin(l)),i=Math.tan(l)*Math.tan(l),a=.006739496752268451*Math.cos(l)*Math.cos(l);var c=.9996*s*((h=Math.cos(l)*(M-e))+(1-i+a)*h*h*h/6+(5-18*i+i*i+72*a-.39089081163157013)*h*h*h*h*h/120)+5e5,u=.9996*(6378137*(.9983242984503243*l-.002514607064228144*Math.sin(2*l)+2639046602129982e-21*Math.sin(4*l)-3.418046101696858e-9*Math.sin(6*l))+s*Math.tan(l)*(h*h/2+(5-i+9*a+4*a*a)*h*h*h*h/24+(61-58*i+i*i+600*a-2.2240339282485886)*h*h*h*h*h*h/720));return r<0&&(u+=1e7),{northing:Math.round(u),easting:Math.round(c),zoneNumber:n,zoneLetter:function(t){var s="Z";return t<=84&&72<=t?s="X":t<72&&64<=t?s="W":t<64&&56<=t?s="V":t<56&&48<=t?s="U":t<48&&40<=t?s="T":t<40&&32<=t?s="S":t<32&&24<=t?s="R":t<24&&16<=t?s="Q":t<16&&8<=t?s="P":t<8&&0<=t?s="N":t<0&&-8<=t?s="M":t<-8&&-16<=t?s="L":t<-16&&-24<=t?s="K":t<-24&&-32<=t?s="J":t<-32&&-40<=t?s="H":t<-40&&-48<=t?s="G":t<-48&&-56<=t?s="F":t<-56&&-64<=t?s="E":t<-64&&-72<=t?s="D":t<-72&&-80<=t&&(s="C"),s}(r)}}({lat:t[1],lon:t[0]}),a=s,h="00000"+i.easting,e="00000"+i.northing,i.zoneNumber+i.zoneLetter+function(t,s,i){var a=b(i);return function(t,s,i){var a=i-1,h=Pt.charCodeAt(a),e=St.charCodeAt(a),n=h+t-1,r=e+s,o=!1;return It<n&&(n=n-It+Nt-1,o=!0),(n===kt||h<kt&&kt<n||(kt<n||h<kt)&&o)&&n++,(n===Et||h<Et&&Et<n||(Et<n||h<Et)&&o)&&++n===kt&&n++,It<n&&(n=n-It+Nt-1),o=qt<r&&(r=r-qt+Nt-1,!0),(r===kt||e<kt&&kt<r||(kt<r||e<kt)&&o)&&r++,(r===Et||e<Et&&Et<r||(Et<r||e<Et)&&o)&&++r===kt&&r++,qt<r&&(r=r-qt+Nt-1),String.fromCharCode(n)+String.fromCharCode(r)}(Math.floor(t/1e5),Math.floor(s/1e5)%20,a)}(i.easting,i.northing,i.zoneNumber)+h.substr(h.length-5,a)+e.substr(e.length-5,a);var i,a,h,e}function y(t){var s=g(v(t.toUpperCase()));return s.lat&&s.lon?[s.lon,s.lat]:[(s.left+s.right)/2,(s.top+s.bottom)/2]}function _(t){return t*(Math.PI/180)}function x(t){return t/Math.PI*180}function g(t){var s=t.northing,i=t.easting,a=t.zoneLetter,h=t.zoneNumber;if(h<0||60<h)return null;var e,n,r,o,l,M,c,u,f=(1-Math.sqrt(.99330562))/(1+Math.sqrt(.99330562)),m=i-5e5,p=s;a<"N"&&(p-=1e7),M=6*(h-1)-180+3,u=(c=p/.9996/6367449.145945056)+(3*f/2-27*f*f*f/32)*Math.sin(2*c)+(21*f*f/16-55*f*f*f*f/32)*Math.sin(4*c)+151*f*f*f/96*Math.sin(6*c),e=6378137/Math.sqrt(1-.00669438*Math.sin(u)*Math.sin(u)),n=Math.tan(u)*Math.tan(u),r=.006739496752268451*Math.cos(u)*Math.cos(u),o=6335439.32722994/Math.pow(1-.00669438*Math.sin(u)*Math.sin(u),1.5),l=m/(.9996*e);var d,y=x(y=u-e*Math.tan(u)/o*(l*l/2-(5+3*n+10*r-4*r*r-.06065547077041606)*l*l*l*l/24+(61+90*n+298*r+45*n*n-1.6983531815716497-3*r*r)*l*l*l*l*l*l/720)),_=M+x(_=(l-(1+2*n+r)*l*l*l/6+(5-2*r+28*n-3*r*r+.05391597401814761+24*n*n)*l*l*l*l*l/120)/Math.cos(u));return t.accuracy?{top:(d=g({northing:t.northing+t.accuracy,easting:t.easting+t.accuracy,zoneLetter:t.zoneLetter,zoneNumber:t.zoneNumber})).lat,right:d.lon,bottom:y,left:_}:{lat:y,lon:_}}function b(t){var s=t%Ct;return 0===s&&(s=Ct),s}function v(t){if(t&&0===t.length)throw"MGRSPoint coverting from nothing";for(var s,i=t.length,a=null,h="",e=0;!/[A-Z]/.test(s=t.charAt(e));){if(2<=e)throw"MGRSPoint bad conversion from: "+t;h+=s,e++}var n=parseInt(h,10);if(0===e||i<e+3)throw"MGRSPoint bad conversion from: "+t;var r=t.charAt(e++);if(r<="A"||"B"===r||"Y"===r||"Z"<=r||"I"===r||"O"===r)throw"MGRSPoint zone letter "+r+" not handled: "+t;a=t.substring(e,e+=2);for(var o=b(n),l=function(t,s){for(var i=Pt.charCodeAt(s-1),a=1e5,h=!1;i!==t.charCodeAt(0);){if(++i===kt&&i++,i===Et&&i++,It<i){if(h)throw"Bad character: "+t;i=Nt,h=!0}a+=1e5}return a}(a.charAt(0),o),M=function(t,s){if("V"<t)throw"MGRSPoint given invalid Northing "+t;for(var i=St.charCodeAt(s-1),a=0,h=!1;i!==t.charCodeAt(0);){if(++i===kt&&i++,i===Et&&i++,qt<i){if(h)throw"Bad character: "+t;i=Nt,h=!0}a+=1e5}return a}(a.charAt(1),o);M<w(r);)M+=2e6;var c=i-e;if(c%2!=0)throw"MGRSPoint has to have an even number \nof digits after the zone letter and two 100km letters - front \nhalf for easting meters, second half for \nnorthing meters"+t;var u,f,m,p=c/2,d=0,y=0;return 0<p&&(u=1e5/Math.pow(10,p),f=t.substring(e,e+p),d=parseFloat(f)*u,m=t.substring(e+p),y=parseFloat(m)*u),{easting:d+l,northing:y+M,zoneLetter:r,zoneNumber:n,accuracy:u}}function w(t){var s;switch(t){case"C":s=11e5;break;case"D":s=2e6;break;case"E":s=28e5;break;case"F":s=37e5;break;case"G":s=46e5;break;case"H":s=55e5;break;case"J":s=64e5;break;case"K":s=73e5;break;case"L":s=82e5;break;case"M":s=91e5;break;case"N":s=0;break;case"P":s=8e5;break;case"Q":s=17e5;break;case"R":s=26e5;break;case"S":s=35e5;break;case"T":s=44e5;break;case"U":s=53e5;break;case"V":s=62e5;break;case"W":s=7e6;break;case"X":s=79e5;break;default:s=-1}if(0<=s)return s;throw"Invalid zone letter: "+t}function C(t,s,i){if(!(this instanceof C))return new C(t,s,i);var a;Array.isArray(t)?(this.x=t[0],this.y=t[1],this.z=t[2]||0):"object"==typeof t?(this.x=t.x,this.y=t.y,this.z=t.z||0):"string"==typeof t&&void 0===s?(a=t.split(","),this.x=parseFloat(a[0],10),this.y=parseFloat(a[1],10),this.z=parseFloat(a[2],10)||0):(this.x=t,this.y=s,this.z=i||0),console.warn("proj4.Point will be removed in version 3, use proj4.toPoint")}function P(t,s,i,a){var h;return t<D?(a.value=Os,h=0):(h=Math.atan2(s,i),Math.abs(h)<=U?a.value=Os:U<h&&h<=z+U?(a.value=As,h-=z):z+U<h||h<=-(z+U)?(a.value=Gs,h=0<=h?h-Q:h+Q):(a.value=js,h+=z)),h}function S(t,s){var i=t+s;return i<-Q?i+=F:+Q<i&&(i-=F),i}var I=1,O=2,A=4,G=5,j=484813681109536e-20,z=Math.PI/2,R=.16666666666666666,L=.04722222222222222,T=.022156084656084655,D=1e-10,N=.017453292519943295,B=57.29577951308232,U=Math.PI/4,F=2*Math.PI,Q=3.14159265359,W={greenwich:0,lisbon:-9.131906111111,paris:2.337229166667,bogota:-74.080916666667,madrid:-3.687938888889,rome:12.452333333333,bern:7.439583333333,jakarta:106.807719444444,ferro:-17.666666666667,brussels:4.367975,stockholm:18.058277777778,athens:23.7163375,oslo:10.722916666667},X={ft:{to_meter:.3048},"us-ft":{to_meter:1200/3937}},H=/[\s_\-\/\(\)]/g,J=function(t){var s,i,a,h={},e=t.split("+").map(function(t){return t.trim()}).filter(function(t){return t}).reduce(function(t,s){var i=s.split("=");return i.push(!0),t[i[0].toLowerCase()]=i[1],t},{}),n={proj:"projName",datum:"datumCode",rf:function(t){h.rf=parseFloat(t)},lat_0:function(t){h.lat0=t*N},lat_1:function(t){h.lat1=t*N},lat_2:function(t){h.lat2=t*N},lat_ts:function(t){h.lat_ts=t*N},lon_0:function(t){h.long0=t*N},lon_1:function(t){h.long1=t*N},lon_2:function(t){h.long2=t*N},alpha:function(t){h.alpha=parseFloat(t)*N},lonc:function(t){h.longc=t*N},x_0:function(t){h.x0=parseFloat(t)},y_0:function(t){h.y0=parseFloat(t)},k_0:function(t){h.k0=parseFloat(t)},k:function(t){h.k0=parseFloat(t)},a:function(t){h.a=parseFloat(t)},b:function(t){h.b=parseFloat(t)},r_a:function(){h.R_A=!0},zone:function(t){h.zone=parseInt(t,10)},south:function(){h.utmSouth=!0},towgs84:function(t){h.datum_params=t.split(",").map(function(t){return parseFloat(t)})},to_meter:function(t){h.to_meter=parseFloat(t)},units:function(t){h.units=t;var s=k(X,t);s&&(h.to_meter=s.to_meter)},from_greenwich:function(t){h.from_greenwich=t*N},pm:function(t){var s=k(W,t);h.from_greenwich=(s||parseFloat(t))*N},nadgrids:function(t){"@null"===t?h.datumCode="none":h.nadgrids=t},axis:function(t){3===t.length&&-1!=="ewnsud".indexOf(t.substr(0,1))&&-1!=="ewnsud".indexOf(t.substr(1,1))&&-1!=="ewnsud".indexOf(t.substr(2,1))&&(h.axis=t)}};for(s in e)i=e[s],s in n?"function"==typeof(a=n[s])?a(i):h[a]=i:h[s]=i;return"string"==typeof h.datumCode&&"WGS84"!==h.datumCode&&(h.datumCode=h.datumCode.toLowerCase()),h},K=1,V=/\s/,Z=/[A-Za-z]/,Y=/[A-Za-z84]/,$=/[,\]]/,tt=/[\d\.E\-\+]/;e.prototype.readCharicter=function(){var t=this.text[this.place++];if(4!==this.state)for(;V.test(t);){if(this.place>=this.text.length)return;t=this.text[this.place++]}switch(this.state){case K:return this.neutral(t);case 2:return this.keyword(t);case 4:return this.quoted(t);case 5:return this.afterquote(t);case 3:return this.number(t);case-1:return}},e.prototype.afterquote=function(t){if('"'===t)return this.word+='"',void(this.state=4);if($.test(t))return this.word=this.word.trim(),void this.afterItem(t);throw new Error("havn't handled \""+t+'" in afterquote yet, index '+this.place)},e.prototype.afterItem=function(t){return","===t?(null!==this.word&&this.currentObject.push(this.word),this.word=null,void(this.state=K)):"]"===t?(this.level--,null!==this.word&&(this.currentObject.push(this.word),this.word=null),this.state=K,this.currentObject=this.stack.pop(),void(this.currentObject||(this.state=-1))):void 0},e.prototype.number=function(t){if(!tt.test(t)){if($.test(t))return this.word=parseFloat(this.word),void this.afterItem(t);throw new Error("havn't handled \""+t+'" in number yet, index '+this.place)}this.word+=t},e.prototype.quoted=function(t){'"'!==t?this.word+=t:this.state=5},e.prototype.keyword=function(t){if(Y.test(t))this.word+=t;else{if("["===t){var s=[];return s.push(this.word),this.level++,null===this.root?this.root=s:this.currentObject.push(s),this.stack.push(this.currentObject),this.currentObject=s,void(this.state=K)}if(!$.test(t))throw new Error("havn't handled \""+t+'" in keyword yet, index '+this.place);this.afterItem(t)}},e.prototype.neutral=function(t){if(Z.test(t))return this.word=t,void(this.state=2);if('"'===t)return this.word="",void(this.state=4);if(tt.test(t))return this.word=t,void(this.state=3);if(!$.test(t))throw new Error("havn't handled \""+t+'" in neutral yet, index '+this.place);this.afterItem(t)},e.prototype.output=function(){for(;this.place<this.text.length;)this.readCharicter();if(-1===this.state)return this.root;throw new Error('unable to parse string "'+this.text+'". State is '+this.state)};var st,it=.017453292519943295,at=function(t){var s=new e(t).output(),i=s.shift(),a=s.shift();s.unshift(["name",a]),s.unshift(["type",i]);var h={};return n(s,h),o(h),h};(st=l)("EPSG:4326","+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees"),st("EPSG:4269","+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees"),st("EPSG:3857","+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs"),st.WGS84=st["EPSG:4326"],st["EPSG:3785"]=st["EPSG:3857"],st.GOOGLE=st["EPSG:3857"],st["EPSG:900913"]=st["EPSG:3857"],st["EPSG:102113"]=st["EPSG:3857"];function ht(t,s,i){var a=t*s;return i/Math.sqrt(1-a*a)}function et(t){return t<0?-1:1}function nt(t){return Math.abs(t)<=Q?t:t-et(t)*F}function rt(t,s,i){var a=t*i,h=.5*t,a=Math.pow((1-a)/(1+a),h);return Math.tan(.5*(z-s))/a}function ot(t,s){for(var i,a,h=.5*t,e=z-2*Math.atan(s),n=0;n<=15;n++)if(i=t*Math.sin(e),e+=a=z-2*Math.atan(s*Math.pow((1-i)/(1+i),h))-e,Math.abs(a)<=1e-10)return e;return-9999}var lt=["PROJECTEDCRS","PROJCRS","GEOGCS","GEOCCS","PROJCS","LOCAL_CS","GEODCRS","GEODETICCRS","GEODETICDATUM","ENGCRS","ENGINEERINGCRS"],Mt=["3857","900913","3785","102113"],ct=function(t,s){var i,a;if(t=t||{},!s)return t;for(a in s)void 0!==(i=s[a])&&(t[a]=i);return t},ut=[{init:function(){var t=this.b/this.a;this.es=1-t*t,"x0"in this||(this.x0=0),"y0"in this||(this.y0=0),this.e=Math.sqrt(this.es),this.lat_ts?this.sphere?this.k0=Math.cos(this.lat_ts):this.k0=ht(this.e,Math.sin(this.lat_ts),Math.cos(this.lat_ts)):this.k0||(this.k?this.k0=this.k:this.k0=1)},forward:function(t){var s,i,a,h,e=t.x,n=t.y;return 90<n*B&&n*B<-90&&180<e*B&&e*B<-180||Math.abs(Math.abs(n)-z)<=D?null:(h=this.sphere?(a=this.x0+this.a*this.k0*nt(e-this.long0),this.y0+this.a*this.k0*Math.log(Math.tan(U+.5*n))):(s=Math.sin(n),i=rt(this.e,n,s),a=this.x0+this.a*this.k0*nt(e-this.long0),this.y0-this.a*this.k0*Math.log(i)),t.x=a,t.y=h,t)},inverse:function(t){var s,i,a=t.x-this.x0,h=t.y-this.y0;if(this.sphere)i=z-2*Math.atan(Math.exp(-h/(this.a*this.k0)));else{var e=Math.exp(-h/(this.a*this.k0));if(-9999===(i=ot(this.e,e)))return null}return s=nt(this.long0+a/(this.a*this.k0)),t.x=s,t.y=i,t},names:["Mercator","Popular Visualisation Pseudo Mercator","Mercator_1SP","Mercator_Auxiliary_Sphere","merc"]},{init:function(){},forward:t,inverse:t,names:["longlat","identity"]}],ft={},mt=[],pt={start:function(){ut.forEach(s)},add:s,get:function(t){if(!t)return!1;var s=t.toLowerCase();return void 0!==ft[s]&&mt[ft[s]]?mt[ft[s]]:void 0}},dt={MERIT:{a:6378137,rf:298.257,ellipseName:"MERIT 1983"},SGS85:{a:6378136,rf:298.257,ellipseName:"Soviet Geodetic System 85"},GRS80:{a:6378137,rf:298.257222101,ellipseName:"GRS 1980(IUGG, 1980)"},IAU76:{a:6378140,rf:298.257,ellipseName:"IAU 1976"},airy:{a:6377563.396,b:6356256.91,ellipseName:"Airy 1830"},APL4:{a:6378137,rf:298.25,ellipseName:"Appl. Physics. 1965"},NWL9D:{a:6378145,rf:298.25,ellipseName:"Naval Weapons Lab., 1965"},mod_airy:{a:6377340.189,b:6356034.446,ellipseName:"Modified Airy"},andrae:{a:6377104.43,rf:300,ellipseName:"Andrae 1876 (Den., Iclnd.)"},aust_SA:{a:6378160,rf:298.25,ellipseName:"Australian Natl & S. Amer. 1969"},GRS67:{a:6378160,rf:298.247167427,ellipseName:"GRS 67(IUGG 1967)"},bessel:{a:6377397.155,rf:299.1528128,ellipseName:"Bessel 1841"},bess_nam:{a:6377483.865,rf:299.1528128,ellipseName:"Bessel 1841 (Namibia)"},clrk66:{a:6378206.4,b:6356583.8,ellipseName:"Clarke 1866"},clrk80:{a:6378249.145,rf:293.4663,ellipseName:"Clarke 1880 mod."},clrk58:{a:6378293.645208759,rf:294.2606763692654,ellipseName:"Clarke 1858"},CPM:{a:6375738.7,rf:334.29,ellipseName:"Comm. des Poids et Mesures 1799"},delmbr:{a:6376428,rf:311.5,ellipseName:"Delambre 1810 (Belgium)"},engelis:{a:6378136.05,rf:298.2566,ellipseName:"Engelis 1985"},evrst30:{a:6377276.345,rf:300.8017,ellipseName:"Everest 1830"},evrst48:{a:6377304.063,rf:300.8017,ellipseName:"Everest 1948"},evrst56:{a:6377301.243,rf:300.8017,ellipseName:"Everest 1956"},evrst69:{a:6377295.664,rf:300.8017,ellipseName:"Everest 1969"},evrstSS:{a:6377298.556,rf:300.8017,ellipseName:"Everest (Sabah & Sarawak)"},fschr60:{a:6378166,rf:298.3,ellipseName:"Fischer (Mercury Datum) 1960"},fschr60m:{a:6378155,rf:298.3,ellipseName:"Fischer 1960"},fschr68:{a:6378150,rf:298.3,ellipseName:"Fischer 1968"},helmert:{a:6378200,rf:298.3,ellipseName:"Helmert 1906"},hough:{a:6378270,rf:297,ellipseName:"Hough"},intl:{a:6378388,rf:297,ellipseName:"International 1909 (Hayford)"},kaula:{a:6378163,rf:298.24,ellipseName:"Kaula 1961"},lerch:{a:6378139,rf:298.257,ellipseName:"Lerch 1979"},mprts:{a:6397300,rf:191,ellipseName:"Maupertius 1738"},new_intl:{a:6378157.5,b:6356772.2,ellipseName:"New International 1967"},plessis:{a:6376523,rf:6355863,ellipseName:"Plessis 1817 (France)"},krass:{a:6378245,rf:298.3,ellipseName:"Krassovsky, 1942"},SEasia:{a:6378155,b:6356773.3205,ellipseName:"Southeast Asia"},walbeck:{a:6376896,b:6355834.8467,ellipseName:"Walbeck"},WGS60:{a:6378165,rf:298.3,ellipseName:"WGS 60"},WGS66:{a:6378145,rf:298.25,ellipseName:"WGS 66"},WGS7:{a:6378135,rf:298.26,ellipseName:"WGS 72"}},yt=dt.WGS84={a:6378137,rf:298.257223563,ellipseName:"WGS 84"};dt.sphere={a:6370997,b:6370997,ellipseName:"Normal Sphere (r=6370997)"};var _t={wgs84:{towgs84:"0,0,0",ellipse:"WGS84",datumName:"WGS84"},ch1903:{towgs84:"674.374,15.056,405.346",ellipse:"bessel",datumName:"swiss"},ggrs87:{towgs84:"-199.87,74.79,246.62",ellipse:"GRS80",datumName:"Greek_Geodetic_Reference_System_1987"},nad83:{towgs84:"0,0,0",ellipse:"GRS80",datumName:"North_American_Datum_1983"},nad27:{nadgrids:"@conus,@alaska,@ntv2_0.gsb,@ntv1_can.dat",ellipse:"clrk66",datumName:"North_American_Datum_1927"},potsdam:{towgs84:"606.0,23.0,413.0",ellipse:"bessel",datumName:"Potsdam Rauenberg 1950 DHDN"},carthage:{towgs84:"-263.0,6.0,431.0",ellipse:"clark80",datumName:"Carthage 1934 Tunisia"},hermannskogel:{towgs84:"653.0,-212.0,449.0",ellipse:"bessel",datumName:"Hermannskogel"},osni52:{towgs84:"482.530,-130.596,564.557,-1.042,-0.214,-0.631,8.15",ellipse:"airy",datumName:"Irish National"},ire65:{towgs84:"482.530,-130.596,564.557,-1.042,-0.214,-0.631,8.15",ellipse:"mod_airy",datumName:"Ireland 1965"},rassadiran:{towgs84:"-133.63,-157.5,-158.62",ellipse:"intl",datumName:"Rassadiran"},nzgd49:{towgs84:"59.47,-5.04,187.44,0.47,-0.1,1.024,-4.5993",ellipse:"intl",datumName:"New Zealand Geodetic Datum 1949"},osgb36:{towgs84:"446.448,-125.157,542.060,0.1502,0.2470,0.8421,-20.4894",ellipse:"airy",datumName:"Airy 1830"},s_jtsk:{towgs84:"589,76,480",ellipse:"bessel",datumName:"S-JTSK (Ferro)"},beduaram:{towgs84:"-106,-87,188",ellipse:"clrk80",datumName:"Beduaram"},gunung_segara:{towgs84:"-403,684,41",ellipse:"bessel",datumName:"Gunung Segara Jakarta"},rnb72:{towgs84:"106.869,-52.2978,103.724,-0.33657,0.456955,-1.84218,1",ellipse:"intl",datumName:"Reseau National Belge 1972"}};q.projections=pt,q.projections.start();var xt=function(t,s,i){return h=s,((a=t).datum_type!==h.datum_type||a.a!==h.a||5e-11<Math.abs(a.es-h.es)||(a.datum_type===I?a.datum_params[0]!==h.datum_params[0]||a.datum_params[1]!==h.datum_params[1]||a.datum_params[2]!==h.datum_params[2]:a.datum_type===O&&(a.datum_params[0]!==h.datum_params[0]||a.datum_params[1]!==h.datum_params[1]||a.datum_params[2]!==h.datum_params[2]||a.datum_params[3]!==h.datum_params[3]||a.datum_params[4]!==h.datum_params[4]||a.datum_params[5]!==h.datum_params[5]||a.datum_params[6]!==h.datum_params[6])))&&t.datum_type!==G&&s.datum_type!==G&&(t.es!==s.es||t.a!==s.a||u(t.datum_type)||u(s.datum_type))?(i=M(i,t.es,t.a),u(t.datum_type)&&(i=function(t,s,i){if(s===I)return{x:t.x+i[0],y:t.y+i[1],z:t.z+i[2]};if(s===O){var a=i[0],h=i[1],e=i[2],n=i[3],r=i[4],o=i[5],l=i[6];return{x:l*(t.x-o*t.y+r*t.z)+a,y:l*(o*t.x+t.y-n*t.z)+h,z:l*(-r*t.x+n*t.y+t.z)+e}}}(i,t.datum_type,t.datum_params)),u(s.datum_type)&&(i=function(t,s,i){if(s===I)return{x:t.x-i[0],y:t.y-i[1],z:t.z-i[2]};if(s===O){var a=i[0],h=i[1],e=i[2],n=i[3],r=i[4],o=i[5],l=i[6],M=(t.x-a)/l,c=(t.y-h)/l,u=(t.z-e)/l;return{x:M+o*c-r*u,y:-o*M+c+n*u,z:r*M-n*c+u}}}(i,s.datum_type,s.datum_params)),c(i,s.es,s.a,s.b)):i;var a,h},gt=function(t,s,i){for(var a,h,e=i.x,n=i.y,r=i.z||0,o={},l=0;l<3;l++)if(!s||2!==l||void 0!==i.z)switch(h=0===l?(a=e,-1!=="ew".indexOf(t.axis[l])?"x":"y"):1===l?(a=n,-1!=="ns".indexOf(t.axis[l])?"y":"x"):(a=r,"z"),t.axis[l]){case"e":case"w":case"n":case"s":o[h]=a;break;case"u":void 0!==i[h]&&(o.z=a);break;case"d":void 0!==i[h]&&(o.z=-a);break;default:return null}return o},bt=function(t){var s={x:t[0],y:t[1]};return 2<t.length&&(s.z=t[2]),3<t.length&&(s.m=t[3]),s},vt=function(t){i(t.x),i(t.y)},wt=q("WGS84"),Ct=6,Pt="AJSAJS",St="AFAFAF",Nt=65,kt=73,Et=79,qt=86,It=90,Ot={forward:d,inverse:function(t){var s=g(v(t.toUpperCase()));return s.lat&&s.lon?[s.lon,s.lat,s.lon,s.lat]:[s.left,s.bottom,s.right,s.top]},toPoint:y};C.fromMGRS=function(t){return new C(y(t))},C.prototype.toMGRS=function(t){return d([this.x,this.y],t)};function At(t){var s=[];s[0]=1-t*(.25+t*(.046875+t*(.01953125+t*ts))),s[1]=t*(.75-t*(.046875+t*(.01953125+t*ts)));var i=t*t;return s[2]=i*(.46875-t*(.013020833333333334+.007120768229166667*t)),i*=t,s[3]=i*(.3645833333333333-.005696614583333333*t),s[4]=i*t*.3076171875,s}function Gt(t,s,i,a){return i*=s,s*=s,a[0]*t-i*(a[1]+s*(a[2]+s*(a[3]+s*a[4])))}function jt(t,s,i){for(var a=1/(1-s),h=t,e=20;e;--e){var n=Math.sin(h),r=1-s*n*n;if(h-=r=(Gt(h,n,Math.cos(h),i)-t)*(r*Math.sqrt(r))*a,Math.abs(r)<D)return h}return h}function zt(t){var s=Math.exp(t);return(s-1/s)/2}function Rt(t,s){t=Math.abs(t),s=Math.abs(s);var i=Math.max(t,s),a=Math.min(t,s)/(i||1);return i*Math.sqrt(1+Math.pow(a,2))}function Lt(t){var s,i,a,h=Math.abs(t);return s=h*(1+h/(Rt(1,h)+1)),h=0==(a=(i=1+s)-1)?s:s*Math.log(i)/a,t<0?-h:h}function Tt(t,s){for(var i,a=2*Math.cos(2*s),h=t.length-1,e=t[h],n=0;0<=--h;)i=a*e-n+t[h],n=e,e=i;return s+i*Math.sin(2*s)}function Dt(t,s,i){for(var a,h,e,n,r=Math.sin(s),o=Math.cos(s),l=zt(i),M=(e=i,((n=Math.exp(e))+1/n)/2),c=2*o*M,u=-2*r*l,f=t.length-1,m=t[f],p=0,d=0,y=0;0<=--f;)a=d,h=p,m=c*(d=m)-a-u*(p=y)+t[f],y=u*d-h+c*p;return[(c=r*M)*m-(u=o*l)*y,c*y+u*m]}function Bt(t,s){return Math.pow((1-t)/(1+t),s)}function Ut(t,s,i,a,h){return t*h-s*Math.sin(2*h)+i*Math.sin(4*h)-a*Math.sin(6*h)}function Ft(t){return 1-.25*t*(1+t/16*(3+1.25*t))}function Qt(t){return.375*t*(1+.25*t*(1+.46875*t))}function Wt(t){return.05859375*t*t*(1+.75*t)}function Xt(t){return t*t*t*(35/3072)}function Ht(t,s,i){var a=s*i;return t/Math.sqrt(1-a*a)}function Jt(t){return Math.abs(t)<z?t:t-et(t)*Math.PI}function Kt(t,s,i,a,h){for(var e,n=t/s,r=0;r<15;r++)if(n+=e=(t-(s*n-i*Math.sin(2*n)+a*Math.sin(4*n)-h*Math.sin(6*n)))/(s-2*i*Math.cos(2*n)+4*a*Math.cos(4*n)-6*h*Math.cos(6*n)),Math.abs(e)<=1e-10)return n;return NaN}function Vt(t,s){var i;return 1e-7<t?(1-t*t)*(s/(1-(i=t*s)*i)-.5/t*Math.log((1-i)/(1+i))):2*s}function Zt(t){return 1<Math.abs(t)&&(t=1<t?1:-1),Math.asin(t)}function Yt(t,s){return t[0]+s*(t[1]+s*(t[2]+s*t[3]))}var $t,ts=.01068115234375,ss={init:function(){this.x0=void 0!==this.x0?this.x0:0,this.y0=void 0!==this.y0?this.y0:0,this.long0=void 0!==this.long0?this.long0:0,this.lat0=void 0!==this.lat0?this.lat0:0,this.es&&(this.en=At(this.es),this.ml0=Gt(this.lat0,Math.sin(this.lat0),Math.cos(this.lat0),this.en))},forward:function(t){var s=t.x,i=t.y,a=nt(s-this.long0),h=Math.sin(i),e=Math.cos(i);if(this.es){var n=e*a,r=Math.pow(n,2),o=this.ep2*Math.pow(e,2),l=Math.pow(o,2),M=Math.abs(e)>D?Math.tan(i):0,c=Math.pow(M,2),u=Math.pow(c,2),f=1-this.es*Math.pow(h,2);n/=Math.sqrt(f);var m=Gt(i,h,e,this.en),p=this.a*(this.k0*n*(1+r/6*(1-c+o+r/20*(5-18*c+u+14*o-58*c*o+r/42*(61+179*u-u*c-479*c)))))+this.x0,d=this.a*(this.k0*(m-this.ml0+h*a*n/2*(1+r/12*(5-c+9*o+4*l+r/30*(61+u-58*c+270*o-330*c*o+r/56*(1385+543*u-u*c-3111*c))))))+this.y0}else{var y=e*Math.sin(a);if(Math.abs(Math.abs(y)-1)<D)return 93;if(p=.5*this.a*this.k0*Math.log((1+y)/(1-y))+this.x0,d=e*Math.cos(a)/Math.sqrt(1-Math.pow(y,2)),1<=(y=Math.abs(d))){if(D<y-1)return 93;d=0}else d=Math.acos(d);i<0&&(d=-d),d=this.a*this.k0*(d-this.lat0)+this.y0}return t.x=p,t.y=d,t},inverse:function(t){var s,i,a,h,e,n,r,o,l,M,c,u,f,m,p,d,y,_=(t.x-this.x0)*(1/this.a),x=(t.y-this.y0)*(1/this.a);return f=this.es?(l=this.ml0+x/this.k0,s=jt(l,this.es,this.en),Math.abs(s)<z?(i=Math.sin(s),a=Math.cos(s),h=Math.abs(a)>D?Math.tan(s):0,e=this.ep2*Math.pow(a,2),n=Math.pow(e,2),r=Math.pow(h,2),o=Math.pow(r,2),l=1-this.es*Math.pow(i,2),M=_*Math.sqrt(l)/this.k0,u=s-(l*=h)*(c=Math.pow(M,2))/(1-this.es)*.5*(1-c/12*(5+3*r-9*e*r+e-4*n-c/30*(61+90*r-252*e*r+45*o+46*e-c/56*(1385+3633*r+4095*o+1574*o*r)))),nt(this.long0+M*(1-c/6*(1+2*r+e-c/20*(5+28*r+24*o+8*e*r+6*e-c/42*(61+662*r+1320*o+720*o*r))))/a)):(u=z*et(x),0)):(p=.5*((m=Math.exp(_/this.k0))-1/m),d=this.lat0+x/this.k0,y=Math.cos(d),l=Math.sqrt((1-Math.pow(y,2))/(1+Math.pow(p,2))),u=Math.asin(l),x<0&&(u=-u),0==p&&0===y?0:nt(Math.atan2(p,y)+this.long0)),t.x=f,t.y=u,t},names:["Transverse_Mercator","Transverse Mercator","tmerc"]},is={init:function(){if(void 0===this.es||this.es<=0)throw new Error("incorrect elliptical usage");this.x0=void 0!==this.x0?this.x0:0,this.y0=void 0!==this.y0?this.y0:0,this.long0=void 0!==this.long0?this.long0:0,this.lat0=void 0!==this.lat0?this.lat0:0,this.cgb=[],this.cbg=[],this.utg=[],this.gtu=[];var t=this.es/(1+Math.sqrt(1-this.es)),s=t/(2-t),i=s;this.cgb[0]=s*(2+s*(-2/3+s*(s*(116/45+s*(26/45+-2854/675*s))-2))),this.cbg[0]=s*(s*(2/3+s*(4/3+s*(-82/45+s*(32/45+4642/4725*s))))-2),i*=s,this.cgb[1]=i*(7/3+s*(s*(-227/45+s*(2704/315+2323/945*s))-1.6)),this.cbg[1]=i*(5/3+s*(-16/15+s*(-13/9+s*(904/315+-1522/945*s)))),i*=s,this.cgb[2]=i*(56/15+s*(-136/35+s*(-1262/105+73814/2835*s))),this.cbg[2]=i*(-26/15+s*(34/21+s*(1.6+-12686/2835*s))),i*=s,this.cgb[3]=i*(4279/630+s*(-332/35+-399572/14175*s)),this.cbg[3]=i*(1237/630+s*(-24832/14175*s-2.4)),i*=s,this.cgb[4]=i*(4174/315+-144838/6237*s),this.cbg[4]=i*(-734/315+109598/31185*s),i*=s,this.cgb[5]=i*(601676/22275),this.cbg[5]=i*(444337/155925),i=Math.pow(s,2),this.Qn=this.k0/(1+s)*(1+i*(.25+i*(1/64+i/256))),this.utg[0]=s*(s*(2/3+s*(-37/96+s*(1/360+s*(81/512+-96199/604800*s))))-.5),this.gtu[0]=s*(.5+s*(-2/3+s*(5/16+s*(41/180+s*(-127/288+7891/37800*s))))),this.utg[1]=i*(-1/48+s*(-1/15+s*(437/1440+s*(-46/105+1118711/3870720*s)))),this.gtu[1]=i*(13/48+s*(s*(557/1440+s*(281/630+-1983433/1935360*s))-.6)),i*=s,this.utg[2]=i*(-17/480+s*(37/840+s*(209/4480+-5569/90720*s))),this.gtu[2]=i*(61/240+s*(-103/140+s*(15061/26880+167603/181440*s))),i*=s,this.utg[3]=i*(-4397/161280+s*(11/504+830251/7257600*s)),this.gtu[3]=i*(49561/161280+s*(-179/168+6601661/7257600*s)),i*=s,this.utg[4]=i*(-4583/161280+108847/3991680*s),this.gtu[4]=i*(34729/80640+-3418889/1995840*s),i*=s,this.utg[5]=-.03233083094085698*i,this.gtu[5]=.6650675310896665*i;var a=Tt(this.cbg,this.lat0);this.Zb=-this.Qn*(a+function(t,s){for(var i,a=2*Math.cos(s),h=t.length-1,e=t[h],n=0;0<=--h;)i=a*e-n+t[h],n=e,e=i;return Math.sin(s)*i}(this.gtu,2*a))},forward:function(t){var s=nt(t.x-this.long0),i=t.y,i=Tt(this.cbg,i),a=Math.sin(i),h=Math.cos(i),e=Math.sin(s),n=Math.cos(s);i=Math.atan2(a,n*h),s=Math.atan2(e*h,Rt(a,h*n)),s=Lt(Math.tan(s));var r,o,l=Dt(this.gtu,2*i,2*s);return i+=l[0],s+=l[1],o=Math.abs(s)<=2.623395162778?(r=this.a*(this.Qn*s)+this.x0,this.a*(this.Qn*i+this.Zb)+this.y0):r=1/0,t.x=r,t.y=o,t},inverse:function(t){var s,i,a,h,e,n,r,o=(t.x-this.x0)*(1/this.a),l=(t.y-this.y0)*(1/this.a);return l=(l-this.Zb)/this.Qn,o/=this.Qn,r=Math.abs(o)<=2.623395162778?(l+=(s=Dt(this.utg,2*l,2*o))[0],o+=s[1],o=Math.atan(zt(o)),i=Math.sin(l),a=Math.cos(l),h=Math.sin(o),e=Math.cos(o),l=Math.atan2(i*e,Rt(h,e*a)),o=Math.atan2(h,e*a),n=nt(o+this.long0),Tt(this.cgb,l)):n=1/0,t.x=n,t.y=r,t},names:["Extended_Transverse_Mercator","Extended Transverse Mercator","etmerc"]},as={init:function(){var t=function(t,s){if(void 0===t){if((t=Math.floor(30*(nt(s)+Math.PI)/Math.PI)+1)<0)return 0;if(60<t)return 60}return t}(this.zone,this.long0);if(void 0===t)throw new Error("unknown utm zone");this.lat0=0,this.long0=(6*Math.abs(t)-183)*N,this.x0=5e5,this.y0=this.utmSouth?1e7:0,this.k0=.9996,is.init.apply(this),this.forward=is.forward,this.inverse=is.inverse},names:["Universal Transverse Mercator System","utm"],dependsOn:"etmerc"},hs={init:function(){var t=Math.sin(this.lat0),s=Math.cos(this.lat0);s*=s,this.rc=Math.sqrt(1-this.es)/(1-this.es*t*t),this.C=Math.sqrt(1+this.es*s*s/(1-this.es)),this.phic0=Math.asin(t/this.C),this.ratexp=.5*this.C*this.e,this.K=Math.tan(.5*this.phic0+U)/(Math.pow(Math.tan(.5*this.lat0+U),this.C)*Bt(this.e*t,this.ratexp))},forward:function(t){var s=t.x,i=t.y;return t.y=2*Math.atan(this.K*Math.pow(Math.tan(.5*i+U),this.C)*Bt(this.e*Math.sin(i),this.ratexp))-z,t.x=this.C*s,t},inverse:function(t){for(var s=t.x/this.C,i=t.y,a=Math.pow(Math.tan(.5*i+U)/this.K,1/this.C),h=20;0<h&&(i=2*Math.atan(a*Bt(this.e*Math.sin(t.y),-.5*this.e))-z,!(Math.abs(i-t.y)<1e-14));--h)t.y=i;return h?(t.x=s,t.y=i,t):null},names:["gauss"]},es={init:function(){hs.init.apply(this),this.rc&&(this.sinc0=Math.sin(this.phic0),this.cosc0=Math.cos(this.phic0),this.R2=2*this.rc,this.title||(this.title="Oblique Stereographic Alternative"))},forward:function(t){var s,i,a,h;return t.x=nt(t.x-this.long0),hs.forward.apply(this,[t]),s=Math.sin(t.y),i=Math.cos(t.y),a=Math.cos(t.x),h=this.k0*this.R2/(1+this.sinc0*s+this.cosc0*i*a),t.x=h*i*Math.sin(t.x),t.y=h*(this.cosc0*s-this.sinc0*i*a),t.x=this.a*t.x+this.x0,t.y=this.a*t.y+this.y0,t},inverse:function(t){var s,i,a,h,e,n;return t.x=(t.x-this.x0)/this.a,t.y=(t.y-this.y0)/this.a,t.x/=this.k0,t.y/=this.k0,n=(s=Math.sqrt(t.x*t.x+t.y*t.y))?(i=2*Math.atan2(s,this.R2),a=Math.sin(i),h=Math.cos(i),e=Math.asin(h*this.sinc0+t.y*a*this.cosc0/s),Math.atan2(t.x*a,s*this.cosc0*h-t.y*this.sinc0*a)):(e=this.phic0,0),t.x=n,t.y=e,hs.inverse.apply(this,[t]),t.x=nt(t.x+this.long0),t},names:["Stereographic_North_Pole","Oblique_Stereographic","Polar_Stereographic","sterea","Oblique Stereographic Alternative","Double_Stereographic"]},ns={init:function(){this.coslat0=Math.cos(this.lat0),this.sinlat0=Math.sin(this.lat0),this.sphere?1===this.k0&&!isNaN(this.lat_ts)&&Math.abs(this.coslat0)<=D&&(this.k0=.5*(1+et(this.lat0)*Math.sin(this.lat_ts))):(Math.abs(this.coslat0)<=D&&(0<this.lat0?this.con=1:this.con=-1),this.cons=Math.sqrt(Math.pow(1+this.e,1+this.e)*Math.pow(1-this.e,1-this.e)),1===this.k0&&!isNaN(this.lat_ts)&&Math.abs(this.coslat0)<=D&&(this.k0=.5*this.cons*ht(this.e,Math.sin(this.lat_ts),Math.cos(this.lat_ts))/rt(this.e,this.con*this.lat_ts,this.con*Math.sin(this.lat_ts))),this.ms1=ht(this.e,this.sinlat0,this.coslat0),this.X0=2*Math.atan(this.ssfn_(this.lat0,this.sinlat0,this.e))-z,this.cosX0=Math.cos(this.X0),this.sinX0=Math.sin(this.X0))},forward:function(t){var s,i,a,h,e,n,r=t.x,o=t.y,l=Math.sin(o),M=Math.cos(o),c=nt(r-this.long0);return Math.abs(Math.abs(r-this.long0)-Math.PI)<=D&&Math.abs(o+this.lat0)<=D?(t.x=NaN,t.y=NaN):this.sphere?(s=2*this.k0/(1+this.sinlat0*l+this.coslat0*M*Math.cos(c)),t.x=this.a*s*M*Math.sin(c)+this.x0,t.y=this.a*s*(this.coslat0*l-this.sinlat0*M*Math.cos(c))+this.y0):(i=2*Math.atan(this.ssfn_(o,l,this.e))-z,h=Math.cos(i),a=Math.sin(i),Math.abs(this.coslat0)<=D?(e=rt(this.e,o*this.con,this.con*l),n=2*this.a*this.k0*e/this.cons,t.x=this.x0+n*Math.sin(r-this.long0),t.y=this.y0-this.con*n*Math.cos(r-this.long0)):(Math.abs(this.sinlat0)<D?(s=2*this.a*this.k0/(1+h*Math.cos(c)),t.y=s*a):(s=2*this.a*this.k0*this.ms1/(this.cosX0*(1+this.sinX0*a+this.cosX0*h*Math.cos(c))),t.y=s*(this.cosX0*a-this.sinX0*h*Math.cos(c))+this.y0),t.x=s*h*Math.sin(c)+this.x0)),t},inverse:function(t){t.x-=this.x0,t.y-=this.y0;var s,i,a,h=Math.sqrt(t.x*t.x+t.y*t.y);if(this.sphere){var e=2*Math.atan(h/(2*this.a*this.k0)),n=this.long0,r=this.lat0;return h<=D||(r=Math.asin(Math.cos(e)*this.sinlat0+t.y*Math.sin(e)*this.coslat0/h),n=nt(Math.abs(this.coslat0)<D?0<this.lat0?this.long0+Math.atan2(t.x,-1*t.y):this.long0+Math.atan2(t.x,t.y):this.long0+Math.atan2(t.x*Math.sin(e),h*this.coslat0*Math.cos(e)-t.y*this.sinlat0*Math.sin(e)))),t.x=n,t.y=r,t}if(Math.abs(this.coslat0)<=D){if(h<=D)return r=this.lat0,n=this.long0,t.x=n,t.y=r,t;t.x*=this.con,t.y*=this.con,s=h*this.cons/(2*this.a*this.k0),r=this.con*ot(this.e,s),n=this.con*nt(this.con*this.long0+Math.atan2(t.x,-1*t.y))}else i=2*Math.atan(h*this.cosX0/(2*this.a*this.k0*this.ms1)),n=this.long0,h<=D?a=this.X0:(a=Math.asin(Math.cos(i)*this.sinX0+t.y*Math.sin(i)*this.cosX0/h),n=nt(this.long0+Math.atan2(t.x*Math.sin(i),h*this.cosX0*Math.cos(i)-t.y*this.sinX0*Math.sin(i)))),r=-1*ot(this.e,Math.tan(.5*(z+a)));return t.x=n,t.y=r,t},names:["stere","Stereographic_South_Pole","Polar Stereographic (variant B)"],ssfn_:function(t,s,i){return s*=i,Math.tan(.5*(z+t))*Math.pow((1-s)/(1+s),.5*i)}},rs={init:function(){var t=this.lat0;this.lambda0=this.long0;var s=Math.sin(t),i=this.a,a=1/this.rf,h=2*a-Math.pow(a,2),e=this.e=Math.sqrt(h);this.R=this.k0*i*Math.sqrt(1-h)/(1-h*Math.pow(s,2)),this.alpha=Math.sqrt(1+h/(1-h)*Math.pow(Math.cos(t),4)),this.b0=Math.asin(s/this.alpha);var n=Math.log(Math.tan(Math.PI/4+this.b0/2)),r=Math.log(Math.tan(Math.PI/4+t/2)),o=Math.log((1+e*s)/(1-e*s));this.K=n-this.alpha*r+this.alpha*e/2*o},forward:function(t){var s=Math.log(Math.tan(Math.PI/4-t.y/2)),i=this.e/2*Math.log((1+this.e*Math.sin(t.y))/(1-this.e*Math.sin(t.y))),a=-this.alpha*(s+i)+this.K,h=2*(Math.atan(Math.exp(a))-Math.PI/4),e=this.alpha*(t.x-this.lambda0),n=Math.atan(Math.sin(e)/(Math.sin(this.b0)*Math.tan(h)+Math.cos(this.b0)*Math.cos(e))),r=Math.asin(Math.cos(this.b0)*Math.sin(h)-Math.sin(this.b0)*Math.cos(h)*Math.cos(e));return t.y=this.R/2*Math.log((1+Math.sin(r))/(1-Math.sin(r)))+this.y0,t.x=this.R*n+this.x0,t},inverse:function(t){for(var s=t.x-this.x0,i=t.y-this.y0,a=s/this.R,h=2*(Math.atan(Math.exp(i/this.R))-Math.PI/4),e=Math.asin(Math.cos(this.b0)*Math.sin(h)+Math.sin(this.b0)*Math.cos(h)*Math.cos(a)),n=Math.atan(Math.sin(a)/(Math.cos(this.b0)*Math.cos(a)-Math.sin(this.b0)*Math.tan(h))),r=this.lambda0+n/this.alpha,o=0,l=e,M=-1e3,c=0;1e-7<Math.abs(l-M);){if(20<++c)return;o=1/this.alpha*(Math.log(Math.tan(Math.PI/4+e/2))-this.K)+this.e*Math.log(Math.tan(Math.PI/4+Math.asin(this.e*Math.sin(l))/2)),M=l,l=2*Math.atan(Math.exp(o))-Math.PI/2}return t.x=r,t.y=l,t},names:["somerc"]},os={init:function(){this.no_off=this.no_off||!1,this.no_rot=this.no_rot||!1,isNaN(this.k0)&&(this.k0=1);var t=Math.sin(this.lat0),s=Math.cos(this.lat0),i=this.e*t;this.bl=Math.sqrt(1+this.es/(1-this.es)*Math.pow(s,4)),this.al=this.a*this.bl*this.k0*Math.sqrt(1-this.es)/(1-i*i);var a,h,e,n,r,o,l,M,c,u,f=rt(this.e,this.lat0,t),m=this.bl/s*Math.sqrt((1-this.es)/(1-i*i));m*m<1&&(m=1),isNaN(this.longc)?(h=rt(this.e,this.lat1,Math.sin(this.lat1)),e=rt(this.e,this.lat2,Math.sin(this.lat2)),0<=this.lat0?this.el=(m+Math.sqrt(m*m-1))*Math.pow(f,this.bl):this.el=(m-Math.sqrt(m*m-1))*Math.pow(f,this.bl),n=Math.pow(h,this.bl),r=Math.pow(e,this.bl),o=.5*((a=this.el/n)-1/a),l=(this.el*this.el-r*n)/(this.el*this.el+r*n),M=(r-n)/(r+n),c=nt(this.long1-this.long2),this.long0=.5*(this.long1+this.long2)-Math.atan(l*Math.tan(.5*this.bl*c)/M)/this.bl,this.long0=nt(this.long0),u=nt(this.long1-this.long0),this.gamma0=Math.atan(Math.sin(this.bl*u)/o),this.alpha=Math.asin(m*Math.sin(this.gamma0))):(a=0<=this.lat0?m+Math.sqrt(m*m-1):m-Math.sqrt(m*m-1),this.el=a*Math.pow(f,this.bl),o=.5*(a-1/a),this.gamma0=Math.asin(Math.sin(this.alpha)/m),this.long0=this.longc-Math.asin(o*Math.tan(this.gamma0))/this.bl),this.no_off?this.uc=0:0<=this.lat0?this.uc=this.al/this.bl*Math.atan2(Math.sqrt(m*m-1),Math.cos(this.alpha)):this.uc=-1*this.al/this.bl*Math.atan2(Math.sqrt(m*m-1),Math.cos(this.alpha))},forward:function(t){var s,i,a,h,e,n,r,o,l,M=t.x,c=t.y,u=nt(M-this.long0);return l=Math.abs(Math.abs(c)-z)<=D?(s=0<c?-1:1,o=this.al/this.bl*Math.log(Math.tan(U+s*this.gamma0*.5)),-1*s*z*this.al/this.bl):(i=rt(this.e,c,Math.sin(c)),h=.5*((a=this.el/Math.pow(i,this.bl))-1/a),e=.5*(a+1/a),n=Math.sin(this.bl*u),r=(h*Math.sin(this.gamma0)-n*Math.cos(this.gamma0))/e,o=Math.abs(Math.abs(r)-1)<=D?Number.POSITIVE_INFINITY:.5*this.al*Math.log((1-r)/(1+r))/this.bl,Math.abs(Math.cos(this.bl*u))<=D?this.al*this.bl*u:this.al*Math.atan2(h*Math.cos(this.gamma0)+n*Math.sin(this.gamma0),Math.cos(this.bl*u))/this.bl),this.no_rot?(t.x=this.x0+l,t.y=this.y0+o):(l-=this.uc,t.x=this.x0+o*Math.cos(this.alpha)+l*Math.sin(this.alpha),t.y=this.y0+l*Math.cos(this.alpha)-o*Math.sin(this.alpha)),t},inverse:function(t){var s,i;this.no_rot?(i=t.y-this.y0,s=t.x-this.x0):(i=(t.x-this.x0)*Math.cos(this.alpha)-(t.y-this.y0)*Math.sin(this.alpha),s=(t.y-this.y0)*Math.cos(this.alpha)+(t.x-this.x0)*Math.sin(this.alpha),s+=this.uc);var a=Math.exp(-1*this.bl*i/this.al),h=.5*(a-1/a),e=.5*(a+1/a),n=Math.sin(this.bl*s/this.al),r=(n*Math.cos(this.gamma0)+h*Math.sin(this.gamma0))/e,o=Math.pow(this.el/Math.sqrt((1+r)/(1-r)),1/this.bl);return Math.abs(r-1)<D?(t.x=this.long0,t.y=z):Math.abs(1+r)<D?(t.x=this.long0,t.y=-1*z):(t.y=ot(this.e,o),t.x=nt(this.long0-Math.atan2(h*Math.cos(this.gamma0)-n*Math.sin(this.gamma0),Math.cos(this.bl*s/this.al))/this.bl)),t},names:["Hotine_Oblique_Mercator","Hotine Oblique Mercator","Hotine_Oblique_Mercator_Azimuth_Natural_Origin","Hotine_Oblique_Mercator_Azimuth_Center","omerc"]},ls={init:function(){var t,s,i,a,h,e,n,r,o,l;this.lat2||(this.lat2=this.lat1),this.k0||(this.k0=1),this.x0=this.x0||0,this.y0=this.y0||0,Math.abs(this.lat1+this.lat2)<D||(t=this.b/this.a,this.e=Math.sqrt(1-t*t),s=Math.sin(this.lat1),i=Math.cos(this.lat1),a=ht(this.e,s,i),h=rt(this.e,this.lat1,s),e=Math.sin(this.lat2),n=Math.cos(this.lat2),r=ht(this.e,e,n),o=rt(this.e,this.lat2,e),l=rt(this.e,this.lat0,Math.sin(this.lat0)),Math.abs(this.lat1-this.lat2)>D?this.ns=Math.log(a/r)/Math.log(h/o):this.ns=s,isNaN(this.ns)&&(this.ns=s),this.f0=a/(this.ns*Math.pow(h,this.ns)),this.rh=this.a*this.f0*Math.pow(l,this.ns),this.title||(this.title="Lambert Conformal Conic"))},forward:function(t){var s=t.x,i=t.y;Math.abs(2*Math.abs(i)-Math.PI)<=D&&(i=et(i)*(z-2*D));var a,h,e=Math.abs(Math.abs(i)-z);if(D<e)a=rt(this.e,i,Math.sin(i)),h=this.a*this.f0*Math.pow(a,this.ns);else{if((e=i*this.ns)<=0)return null;h=0}var n=this.ns*nt(s-this.long0);return t.x=this.k0*(h*Math.sin(n))+this.x0,t.y=this.k0*(this.rh-h*Math.cos(n))+this.y0,t},inverse:function(t){var s,i,a,h,e=(t.x-this.x0)/this.k0,n=this.rh-(t.y-this.y0)/this.k0,r=0<this.ns?(s=Math.sqrt(e*e+n*n),1):(s=-Math.sqrt(e*e+n*n),-1),o=0;if(0!==s&&(o=Math.atan2(r*e,r*n)),0!==s||0<this.ns){if(r=1/this.ns,i=Math.pow(s/(this.a*this.f0),r),-9999===(a=ot(this.e,i)))return null}else a=-z;return h=nt(o/this.ns+this.long0),t.x=h,t.y=a,t},names:["Lambert Tangential Conformal Conic Projection","Lambert_Conformal_Conic","Lambert_Conformal_Conic_2SP","lcc"]},Ms={init:function(){this.a=6377397.155,this.es=.006674372230614,this.e=Math.sqrt(this.es),this.lat0||(this.lat0=.863937979737193),this.long0||(this.long0=.4334234309119251),this.k0||(this.k0=.9999),this.s45=.785398163397448,this.s90=2*this.s45,this.fi0=this.lat0,this.e2=this.es,this.e=Math.sqrt(this.e2),this.alfa=Math.sqrt(1+this.e2*Math.pow(Math.cos(this.fi0),4)/(1-this.e2)),this.uq=1.04216856380474,this.u0=Math.asin(Math.sin(this.fi0)/this.alfa),this.g=Math.pow((1+this.e*Math.sin(this.fi0))/(1-this.e*Math.sin(this.fi0)),this.alfa*this.e/2),this.k=Math.tan(this.u0/2+this.s45)/Math.pow(Math.tan(this.fi0/2+this.s45),this.alfa)*this.g,this.k1=this.k0,this.n0=this.a*Math.sqrt(1-this.e2)/(1-this.e2*Math.pow(Math.sin(this.fi0),2)),this.s0=1.37008346281555,this.n=Math.sin(this.s0),this.ro0=this.k1*this.n0/Math.tan(this.s0),this.ad=this.s90-this.uq},forward:function(t){var s=t.x,i=t.y,a=nt(s-this.long0),h=Math.pow((1+this.e*Math.sin(i))/(1-this.e*Math.sin(i)),this.alfa*this.e/2),e=2*(Math.atan(this.k*Math.pow(Math.tan(i/2+this.s45),this.alfa)/h)-this.s45),n=-a*this.alfa,r=Math.asin(Math.cos(this.ad)*Math.sin(e)+Math.sin(this.ad)*Math.cos(e)*Math.cos(n)),o=Math.asin(Math.cos(e)*Math.sin(n)/Math.cos(r)),l=this.n*o,M=this.ro0*Math.pow(Math.tan(this.s0/2+this.s45),this.n)/Math.pow(Math.tan(r/2+this.s45),this.n);return t.y=M*Math.cos(l),t.x=M*Math.sin(l),this.czech||(t.y*=-1,t.x*=-1),t},inverse:function(t){var s,i,a,h,e,n,r,o=t.x;t.x=t.y,t.y=o,this.czech||(t.y*=-1,t.x*=-1),e=Math.sqrt(t.x*t.x+t.y*t.y),h=Math.atan2(t.y,t.x)/Math.sin(this.s0),a=2*(Math.atan(Math.pow(this.ro0/e,1/this.n)*Math.tan(this.s0/2+this.s45))-this.s45),s=Math.asin(Math.cos(this.ad)*Math.sin(a)-Math.sin(this.ad)*Math.cos(a)*Math.cos(h)),i=Math.asin(Math.cos(a)*Math.sin(h)/Math.cos(s)),t.x=this.long0-i/this.alfa,n=s;for(var l=r=0;t.y=2*(Math.atan(Math.pow(this.k,-1/this.alfa)*Math.pow(Math.tan(s/2+this.s45),1/this.alfa)*Math.pow((1+this.e*Math.sin(n))/(1-this.e*Math.sin(n)),this.e/2))-this.s45),Math.abs(n-t.y)<1e-10&&(r=1),n=t.y,l+=1,0===r&&l<15;);return 15<=l?null:t},names:["Krovak","krovak"]},cs={init:function(){this.sphere||(this.e0=Ft(this.es),this.e1=Qt(this.es),this.e2=Wt(this.es),this.e3=Xt(this.es),this.ml0=this.a*Ut(this.e0,this.e1,this.e2,this.e3,this.lat0))},forward:function(t){var s,i,a,h,e,n,r,o,l,M=t.x,c=t.y,M=nt(M-this.long0);return l=this.sphere?(o=this.a*Math.asin(Math.cos(c)*Math.sin(M)),this.a*(Math.atan2(Math.tan(c),Math.cos(M))-this.lat0)):(s=Math.sin(c),i=Math.cos(c),a=Ht(this.a,this.e,s),h=Math.tan(c)*Math.tan(c),o=a*(e=M*Math.cos(c))*(1-(n=e*e)*h*(1/6-(8-h+8*(r=this.es*i*i/(1-this.es)))*n/120)),this.a*Ut(this.e0,this.e1,this.e2,this.e3,c)-this.ml0+a*s/i*n*(.5+(5-h+6*r)*n/24)),t.x=o+this.x0,t.y=l+this.y0,t},inverse:function(t){t.x-=this.x0,t.y-=this.y0;var s=t.x/this.a,i=t.y/this.a;if(this.sphere)var a=i+this.lat0,h=Math.asin(Math.sin(a)*Math.cos(s)),e=Math.atan2(Math.tan(s),Math.cos(a));else{var n=this.ml0/this.a+i,r=Kt(n,this.e0,this.e1,this.e2,this.e3);if(Math.abs(Math.abs(r)-z)<=D)return t.x=this.long0,t.y=z,i<0&&(t.y*=-1),t;var o=Ht(this.a,this.e,Math.sin(r)),l=o*o*o/this.a/this.a*(1-this.es),M=Math.pow(Math.tan(r),2),c=s*this.a/o,u=c*c;h=r-o*Math.tan(r)/l*c*c*(.5-(1+3*M)*c*c/24),e=c*(1-u*(M/3+(1+3*M)*M*u/15))/Math.cos(r)}return t.x=nt(e+this.long0),t.y=Jt(h),t},names:["Cassini","Cassini_Soldner","cass"]},us={init:function(){var t,s,i,a,h=Math.abs(this.lat0);if(Math.abs(h-z)<D?this.mode=this.lat0<0?this.S_POLE:this.N_POLE:Math.abs(h)<D?this.mode=this.EQUIT:this.mode=this.OBLIQ,0<this.es)switch(this.qp=Vt(this.e,1),this.mmf=.5/(1-this.es),this.apa=(s=this.es,(a=[])[0]=.3333333333333333*s,i=s*s,a[0]+=.17222222222222222*i,a[1]=.06388888888888888*i,i*=s,a[0]+=.10257936507936508*i,a[1]+=.0664021164021164*i,a[2]=.016415012942191543*i,a),this.mode){case this.N_POLE:case this.S_POLE:this.dd=1;break;case this.EQUIT:this.rq=Math.sqrt(.5*this.qp),this.dd=1/this.rq,this.xmf=1,this.ymf=.5*this.qp;break;case this.OBLIQ:this.rq=Math.sqrt(.5*this.qp),t=Math.sin(this.lat0),this.sinb1=Vt(this.e,t)/this.qp,this.cosb1=Math.sqrt(1-this.sinb1*this.sinb1),this.dd=Math.cos(this.lat0)/(Math.sqrt(1-this.es*t*t)*this.rq*this.cosb1),this.ymf=(this.xmf=this.rq)/this.dd,this.xmf*=this.dd}else this.mode===this.OBLIQ&&(this.sinph0=Math.sin(this.lat0),this.cosph0=Math.cos(this.lat0))},forward:function(t){var s,i,a,h,e,n,r,o,l,M,c=t.x,u=t.y,c=nt(c-this.long0);if(this.sphere){if(e=Math.sin(u),M=Math.cos(u),a=Math.cos(c),this.mode===this.OBLIQ||this.mode===this.EQUIT){if((i=this.mode===this.EQUIT?1+M*a:1+this.sinph0*e+this.cosph0*M*a)<=D)return null;s=(i=Math.sqrt(2/i))*M*Math.sin(c),i*=this.mode===this.EQUIT?e:this.cosph0*e-this.sinph0*M*a}else if(this.mode===this.N_POLE||this.mode===this.S_POLE){if(this.mode===this.N_POLE&&(a=-a),Math.abs(u+this.lat0)<D)return null;i=U-.5*u,s=(i=2*(this.mode===this.S_POLE?Math.cos(i):Math.sin(i)))*Math.sin(c),i*=a}}else{switch(l=o=r=0,a=Math.cos(c),h=Math.sin(c),e=Math.sin(u),n=Vt(this.e,e),this.mode!==this.OBLIQ&&this.mode!==this.EQUIT||(r=n/this.qp,o=Math.sqrt(1-r*r)),this.mode){case this.OBLIQ:l=1+this.sinb1*r+this.cosb1*o*a;break;case this.EQUIT:l=1+o*a;break;case this.N_POLE:l=z+u,n=this.qp-n;break;case this.S_POLE:l=u-z,n=this.qp+n}if(Math.abs(l)<D)return null;switch(this.mode){case this.OBLIQ:case this.EQUIT:l=Math.sqrt(2/l),i=this.mode===this.OBLIQ?this.ymf*l*(this.cosb1*r-this.sinb1*o*a):(l=Math.sqrt(2/(1+o*a)))*r*this.ymf,s=this.xmf*l*o*h;break;case this.N_POLE:case this.S_POLE:0<=n?(s=(l=Math.sqrt(n))*h,i=a*(this.mode===this.S_POLE?l:-l)):s=i=0}}return t.x=this.a*s+this.x0,t.y=this.a*i+this.y0,t},inverse:function(t){t.x-=this.x0,t.y-=this.y0;var s,i,a,h,e,n,r,o,l,M,c=t.x/this.a,u=t.y/this.a;if(this.sphere){var f=0,m=0,p=Math.sqrt(c*c+u*u);if(1<(i=.5*p))return null;switch(i=2*Math.asin(i),this.mode!==this.OBLIQ&&this.mode!==this.EQUIT||(m=Math.sin(i),f=Math.cos(i)),this.mode){case this.EQUIT:i=Math.abs(p)<=D?0:Math.asin(u*m/p),c*=m,u=f*p;break;case this.OBLIQ:i=Math.abs(p)<=D?this.lat0:Math.asin(f*this.sinph0+u*m*this.cosph0/p),c*=m*this.cosph0,u=(f-Math.sin(i)*this.sinph0)*p;break;case this.N_POLE:u=-u,i=z-i;break;case this.S_POLE:i-=z}s=0!==u||this.mode!==this.EQUIT&&this.mode!==this.OBLIQ?Math.atan2(c,u):0}else{if(r=0,this.mode===this.OBLIQ||this.mode===this.EQUIT){if(c/=this.dd,u*=this.dd,(n=Math.sqrt(c*c+u*u))<D)return t.x=this.long0,t.y=this.lat0,t;h=2*Math.asin(.5*n/this.rq),a=Math.cos(h),c*=h=Math.sin(h),u=this.mode===this.OBLIQ?(r=a*this.sinb1+u*h*this.cosb1/n,e=this.qp*r,n*this.cosb1*a-u*this.sinb1*h):(r=u*h/n,e=this.qp*r,n*a)}else if(this.mode===this.N_POLE||this.mode===this.S_POLE){if(this.mode===this.N_POLE&&(u=-u),!(e=c*c+u*u))return t.x=this.long0,t.y=this.lat0,t;r=1-e/this.qp,this.mode===this.S_POLE&&(r=-r)}s=Math.atan2(c,u),o=Math.asin(r),l=this.apa,M=o+o,i=o+l[0]*Math.sin(M)+l[1]*Math.sin(M+M)+l[2]*Math.sin(M+M+M)}return t.x=nt(this.long0+s),t.y=i,t},names:["Lambert Azimuthal Equal Area","Lambert_Azimuthal_Equal_Area","laea"],S_POLE:1,N_POLE:2,EQUIT:3,OBLIQ:4},fs={init:function(){Math.abs(this.lat1+this.lat2)<D||(this.temp=this.b/this.a,this.es=1-Math.pow(this.temp,2),this.e3=Math.sqrt(this.es),this.sin_po=Math.sin(this.lat1),this.cos_po=Math.cos(this.lat1),this.t1=this.sin_po,this.con=this.sin_po,this.ms1=ht(this.e3,this.sin_po,this.cos_po),this.qs1=Vt(this.e3,this.sin_po,this.cos_po),this.sin_po=Math.sin(this.lat2),this.cos_po=Math.cos(this.lat2),this.t2=this.sin_po,this.ms2=ht(this.e3,this.sin_po,this.cos_po),this.qs2=Vt(this.e3,this.sin_po,this.cos_po),this.sin_po=Math.sin(this.lat0),this.cos_po=Math.cos(this.lat0),this.t3=this.sin_po,this.qs0=Vt(this.e3,this.sin_po,this.cos_po),Math.abs(this.lat1-this.lat2)>D?this.ns0=(this.ms1*this.ms1-this.ms2*this.ms2)/(this.qs2-this.qs1):this.ns0=this.con,this.c=this.ms1*this.ms1+this.ns0*this.qs1,this.rh=this.a*Math.sqrt(this.c-this.ns0*this.qs0)/this.ns0)},forward:function(t){var s=t.x,i=t.y;this.sin_phi=Math.sin(i),this.cos_phi=Math.cos(i);var a=Vt(this.e3,this.sin_phi,this.cos_phi),h=this.a*Math.sqrt(this.c-this.ns0*a)/this.ns0,e=this.ns0*nt(s-this.long0),n=h*Math.sin(e)+this.x0,r=this.rh-h*Math.cos(e)+this.y0;return t.x=n,t.y=r,t},inverse:function(t){var s,i,a,h,e,n;return t.x-=this.x0,t.y=this.rh-t.y+this.y0,a=0<=this.ns0?(s=Math.sqrt(t.x*t.x+t.y*t.y),1):(s=-Math.sqrt(t.x*t.x+t.y*t.y),-1),(h=0)!==s&&(h=Math.atan2(a*t.x,a*t.y)),a=s*this.ns0/this.a,n=this.sphere?Math.asin((this.c-a*a)/(2*this.ns0)):(i=(this.c-a*a)/this.ns0,this.phi1z(this.e3,i)),e=nt(h/this.ns0+this.long0),t.x=e,t.y=n,t},names:["Albers_Conic_Equal_Area","Albers","aea"],phi1z:function(t,s){var i,a,h,e,n=Zt(.5*s);if(t<D)return n;for(var r=t*t,o=1;o<=25;o++)if(n+=e=.5*(h=1-(a=t*(i=Math.sin(n)))*a)*h/Math.cos(n)*(s/(1-r)-i/h+.5/t*Math.log((1-a)/(1+a))),Math.abs(e)<=1e-7)return n;return null}},ms={init:function(){this.sin_p14=Math.sin(this.lat0),this.cos_p14=Math.cos(this.lat0),this.infinity_dist=1e3*this.a,this.rc=1},forward:function(t){var s,i,a=t.x,h=t.y,e=nt(a-this.long0),n=Math.sin(h),r=Math.cos(h),o=Math.cos(e),l=0<(s=this.sin_p14*n+this.cos_p14*r*o)||Math.abs(s)<=D?(i=this.x0+this.a*r*Math.sin(e)/s,this.y0+this.a*(this.cos_p14*n-this.sin_p14*r*o)/s):(i=this.x0+this.infinity_dist*r*Math.sin(e),this.y0+this.infinity_dist*(this.cos_p14*n-this.sin_p14*r*o));return t.x=i,t.y=l,t},inverse:function(t){var s,i,a,h,e,n;return t.x=(t.x-this.x0)/this.a,t.y=(t.y-this.y0)/this.a,t.x/=this.k0,t.y/=this.k0,e=(s=Math.sqrt(t.x*t.x+t.y*t.y))?(h=Math.atan2(s,this.rc),i=Math.sin(h),a=Math.cos(h),n=Zt(a*this.sin_p14+t.y*i*this.cos_p14/s),e=Math.atan2(t.x*i,s*this.cos_p14*a-t.y*this.sin_p14*i),nt(this.long0+e)):(n=this.phic0,0),t.x=e,t.y=n,t},names:["gnom"]},ps={init:function(){this.sphere||(this.k0=ht(this.e,Math.sin(this.lat_ts),Math.cos(this.lat_ts)))},forward:function(t){var s,i,a,h=t.x,e=t.y,n=nt(h-this.long0);return a=this.sphere?(i=this.x0+this.a*n*Math.cos(this.lat_ts),this.y0+this.a*Math.sin(e)/Math.cos(this.lat_ts)):(s=Vt(this.e,Math.sin(e)),i=this.x0+this.a*this.k0*n,this.y0+this.a*s*.5/this.k0),t.x=i,t.y=a,t},inverse:function(t){var s,i;return t.x-=this.x0,t.y-=this.y0,this.sphere?(s=nt(this.long0+t.x/this.a/Math.cos(this.lat_ts)),i=Math.asin(t.y/this.a*Math.cos(this.lat_ts))):(i=function(t,s){var i=1-(1-t*t)/(2*t)*Math.log((1-t)/(1+t));if(Math.abs(Math.abs(s)-i)<1e-6)return s<0?-1*z:z;for(var a,h,e,n,r=Math.asin(.5*s),o=0;o<30;o++)if(h=Math.sin(r),e=Math.cos(r),n=t*h,r+=a=Math.pow(1-n*n,2)/(2*e)*(s/(1-t*t)-h/(1-n*n)+.5/t*Math.log((1-n)/(1+n))),Math.abs(a)<=1e-10)return r;return NaN}(this.e,2*t.y*this.k0/this.a),s=nt(this.long0+t.x/(this.a*this.k0))),t.x=s,t.y=i,t},names:["cea"]},ds={init:function(){this.x0=this.x0||0,this.y0=this.y0||0,this.lat0=this.lat0||0,this.long0=this.long0||0,this.lat_ts=this.lat_ts||0,this.title=this.title||"Equidistant Cylindrical (Plate Carre)",this.rc=Math.cos(this.lat_ts)},forward:function(t){var s=t.x,i=t.y,a=nt(s-this.long0),h=Jt(i-this.lat0);return t.x=this.x0+this.a*a*this.rc,t.y=this.y0+this.a*h,t},inverse:function(t){var s=t.x,i=t.y;return t.x=nt(this.long0+(s-this.x0)/(this.a*this.rc)),t.y=Jt(this.lat0+(i-this.y0)/this.a),t},names:["Equirectangular","Equidistant_Cylindrical","eqc"]},ys={init:function(){this.temp=this.b/this.a,this.es=1-Math.pow(this.temp,2),this.e=Math.sqrt(this.es),this.e0=Ft(this.es),this.e1=Qt(this.es),this.e2=Wt(this.es),this.e3=Xt(this.es),this.ml0=this.a*Ut(this.e0,this.e1,this.e2,this.e3,this.lat0)},forward:function(t){var s,i,a,h=t.x,e=t.y,n=nt(h-this.long0),r=n*Math.sin(e);return a=this.sphere?Math.abs(e)<=D?(i=this.a*n,-1*this.a*this.lat0):(i=this.a*Math.sin(r)/Math.tan(e),this.a*(Jt(e-this.lat0)+(1-Math.cos(r))/Math.tan(e))):Math.abs(e)<=D?(i=this.a*n,-1*this.ml0):(i=(s=Ht(this.a,this.e,Math.sin(e))/Math.tan(e))*Math.sin(r),this.a*Ut(this.e0,this.e1,this.e2,this.e3,e)-this.ml0+s*(1-Math.cos(r))),t.x=i+this.x0,t.y=a+this.y0,t},inverse:function(t){var s,i,a,h,e,n,r,o,l=t.x-this.x0,M=t.y-this.y0;if(this.sphere)if(Math.abs(M+this.a*this.lat0)<=D)s=nt(l/this.a+this.long0),i=0;else{for(var c,u=this.lat0+M/this.a,f=l*l/this.a/this.a+u*u,m=u,p=20;p;--p)if(m+=a=-1*(u*(m*(c=Math.tan(m))+1)-m-.5*(m*m+f)*c)/((m-u)/c-1),Math.abs(a)<=D){i=m;break}s=nt(this.long0+Math.asin(l*Math.tan(m)/this.a)/Math.sin(i))}else if(Math.abs(M+this.ml0)<=D)i=0,s=nt(this.long0+l/this.a);else{for(u=(this.ml0+M)/this.a,f=l*l/this.a/this.a+u*u,m=u,p=20;p;--p)if(o=this.e*Math.sin(m),h=Math.sqrt(1-o*o)*Math.tan(m),e=this.a*Ut(this.e0,this.e1,this.e2,this.e3,m),n=this.e0-2*this.e1*Math.cos(2*m)+4*this.e2*Math.cos(4*m)-6*this.e3*Math.cos(6*m),m-=a=(u*(h*(r=e/this.a)+1)-r-.5*h*(r*r+f))/(this.es*Math.sin(2*m)*(r*r+f-2*u*r)/(4*h)+(u-r)*(h*n-2/Math.sin(2*m))-n),Math.abs(a)<=D){i=m;break}h=Math.sqrt(1-this.es*Math.pow(Math.sin(i),2))*Math.tan(i),s=nt(this.long0+Math.asin(l*h/this.a)/Math.sin(i))}return t.x=s,t.y=i,t},names:["Polyconic","poly"]},_s={init:function(){this.A=[],this.A[1]=.6399175073,this.A[2]=-.1358797613,this.A[3]=.063294409,this.A[4]=-.02526853,this.A[5]=.0117879,this.A[6]=-.0055161,this.A[7]=.0026906,this.A[8]=-.001333,this.A[9]=67e-5,this.A[10]=-34e-5,this.B_re=[],this.B_im=[],this.B_re[1]=.7557853228,this.B_im[1]=0,this.B_re[2]=.249204646,this.B_im[2]=.003371507,this.B_re[3]=-.001541739,this.B_im[3]=.04105856,this.B_re[4]=-.10162907,this.B_im[4]=.01727609,this.B_re[5]=-.26623489,this.B_im[5]=-.36249218,this.B_re[6]=-.6870983,this.B_im[6]=-1.1651967,this.C_re=[],this.C_im=[],this.C_re[1]=1.3231270439,this.C_im[1]=0,this.C_re[2]=-.577245789,this.C_im[2]=-.007809598,this.C_re[3]=.508307513,this.C_im[3]=-.112208952,this.C_re[4]=-.15094762,this.C_im[4]=.18200602,this.C_re[5]=1.01418179,this.C_im[5]=1.64497696,this.C_re[6]=1.9660549,this.C_im[6]=2.5127645,this.D=[],this.D[1]=1.5627014243,this.D[2]=.5185406398,this.D[3]=-.03333098,this.D[4]=-.1052906,this.D[5]=-.0368594,this.D[6]=.007317,this.D[7]=.0122,this.D[8]=.00394,this.D[9]=-.0013},forward:function(t){for(var s=t.x,i=t.y-this.lat0,a=s-this.long0,h=i/j*1e-5,e=a,n=1,r=0,o=1;o<=10;o++)n*=h,r+=this.A[o]*n;var l,M=r,c=e,u=1,f=0,m=0,p=0;for(o=1;o<=6;o++)l=f*M+u*c,u=u*M-f*c,f=l,m=m+this.B_re[o]*u-this.B_im[o]*f,p=p+this.B_im[o]*u+this.B_re[o]*f;return t.x=p*this.a+this.x0,t.y=m*this.a+this.y0,t},inverse:function(t){var s,i=t.x,a=t.y,h=i-this.x0,e=(a-this.y0)/this.a,n=h/this.a,r=1,o=0,l=0,M=0;for(y=1;y<=6;y++)s=o*e+r*n,r=r*e-o*n,o=s,l=l+this.C_re[y]*r-this.C_im[y]*o,M=M+this.C_im[y]*r+this.C_re[y]*o;for(var c=0;c<this.iterations;c++){for(var u,f=l,m=M,p=e,d=n,y=2;y<=6;y++)u=m*l+f*M,f=f*l-m*M,m=u,p+=(y-1)*(this.B_re[y]*f-this.B_im[y]*m),d+=(y-1)*(this.B_im[y]*f+this.B_re[y]*m);f=1,m=0;var _=this.B_re[1],x=this.B_im[1];for(y=2;y<=6;y++)u=m*l+f*M,f=f*l-m*M,m=u,_+=y*(this.B_re[y]*f-this.B_im[y]*m),x+=y*(this.B_im[y]*f+this.B_re[y]*m);var g=_*_+x*x,l=(p*_+d*x)/g,M=(d*_-p*x)/g}var b=l,v=M,w=1,C=0;for(y=1;y<=9;y++)w*=b,C+=this.D[y]*w;var P=this.lat0+C*j*1e5,S=this.long0+v;return t.x=S,t.y=P,t},names:["New_Zealand_Map_Grid","nzmg"]},xs={init:function(){},forward:function(t){var s=t.x,i=t.y,a=nt(s-this.long0),h=this.x0+this.a*a,e=this.y0+this.a*Math.log(Math.tan(Math.PI/4+i/2.5))*1.25;return t.x=h,t.y=e,t},inverse:function(t){t.x-=this.x0,t.y-=this.y0;var s=nt(this.long0+t.x/this.a),i=2.5*(Math.atan(Math.exp(.8*t.y/this.a))-Math.PI/4);return t.x=s,t.y=i,t},names:["Miller_Cylindrical","mill"]},gs={init:function(){this.sphere?(this.n=1,this.m=0,this.es=0,this.C_y=Math.sqrt((this.m+1)/this.n),this.C_x=this.C_y/(this.m+1)):this.en=At(this.es)},forward:function(t){var s=t.x,i=t.y,s=nt(s-this.long0);if(this.sphere){if(this.m)for(var a=this.n*Math.sin(i),h=20;h;--h){var e=(this.m*i+Math.sin(i)-a)/(this.m+Math.cos(i));if(i-=e,Math.abs(e)<D)break}else i=1!==this.n?Math.asin(this.n*Math.sin(i)):i;l=this.a*this.C_x*s*(this.m+Math.cos(i)),o=this.a*this.C_y*i}else var n=Math.sin(i),r=Math.cos(i),o=this.a*Gt(i,n,r,this.en),l=this.a*s*r/Math.sqrt(1-this.es*n*n);return t.x=l,t.y=o,t},inverse:function(t){var s,i,a,h;return t.x-=this.x0,a=t.x/this.a,t.y-=this.y0,s=t.y/this.a,this.sphere?(s/=this.C_y,a/=this.C_x*(this.m+Math.cos(s)),this.m?s=Zt((this.m*s+Math.sin(s))/this.n):1!==this.n&&(s=Zt(Math.sin(s)/this.n)),a=nt(a+this.long0),s=Jt(s)):(s=jt(t.y/this.a,this.es,this.en),(h=Math.abs(s))<z?(h=Math.sin(s),i=this.long0+t.x*Math.sqrt(1-this.es*h*h)/(this.a*Math.cos(s)),a=nt(i)):h-D<z&&(a=this.long0)),t.x=a,t.y=s,t},names:["Sinusoidal","sinu"]},bs={init:function(){},forward:function(t){for(var s=t.x,i=t.y,a=nt(s-this.long0),h=i,e=Math.PI*Math.sin(i);;){var n=-(h+Math.sin(h)-e)/(1+Math.cos(h));if(h+=n,Math.abs(n)<D)break}h/=2,Math.PI/2-Math.abs(i)<D&&(a=0);var r=.900316316158*this.a*a*Math.cos(h)+this.x0,o=1.4142135623731*this.a*Math.sin(h)+this.y0;return t.x=r,t.y=o,t},inverse:function(t){var s,i;t.x-=this.x0,t.y-=this.y0,i=t.y/(1.4142135623731*this.a),.999999999999<Math.abs(i)&&(i=.999999999999),s=Math.asin(i);var a=nt(this.long0+t.x/(.900316316158*this.a*Math.cos(s)));a<-Math.PI&&(a=-Math.PI),a>Math.PI&&(a=Math.PI),i=(2*s+Math.sin(2*s))/Math.PI,1<Math.abs(i)&&(i=1);var h=Math.asin(i);return t.x=a,t.y=h,t},names:["Mollweide","moll"]},vs={init:function(){Math.abs(this.lat1+this.lat2)<D||(this.lat2=this.lat2||this.lat1,this.temp=this.b/this.a,this.es=1-Math.pow(this.temp,2),this.e=Math.sqrt(this.es),this.e0=Ft(this.es),this.e1=Qt(this.es),this.e2=Wt(this.es),this.e3=Xt(this.es),this.sinphi=Math.sin(this.lat1),this.cosphi=Math.cos(this.lat1),this.ms1=ht(this.e,this.sinphi,this.cosphi),this.ml1=Ut(this.e0,this.e1,this.e2,this.e3,this.lat1),Math.abs(this.lat1-this.lat2)<D?this.ns=this.sinphi:(this.sinphi=Math.sin(this.lat2),this.cosphi=Math.cos(this.lat2),this.ms2=ht(this.e,this.sinphi,this.cosphi),this.ml2=Ut(this.e0,this.e1,this.e2,this.e3,this.lat2),this.ns=(this.ms1-this.ms2)/(this.ml2-this.ml1)),this.g=this.ml1+this.ms1/this.ns,this.ml0=Ut(this.e0,this.e1,this.e2,this.e3,this.lat0),this.rh=this.a*(this.g-this.ml0))},forward:function(t){var s,i,a=t.x,h=t.y;i=this.sphere?this.a*(this.g-h):(s=Ut(this.e0,this.e1,this.e2,this.e3,h),this.a*(this.g-s));var e=this.ns*nt(a-this.long0),n=this.x0+i*Math.sin(e),r=this.y0+this.rh-i*Math.cos(e);return t.x=n,t.y=r,t},inverse:function(t){var s,i;t.x-=this.x0,t.y=this.rh-t.y+this.y0,s=0<=this.ns?(i=Math.sqrt(t.x*t.x+t.y*t.y),1):(i=-Math.sqrt(t.x*t.x+t.y*t.y),-1);var a=0;if(0!==i&&(a=Math.atan2(s*t.x,s*t.y)),this.sphere)return n=nt(this.long0+a/this.ns),e=Jt(this.g-i/this.a),t.x=n,t.y=e,t;var h=this.g-i/this.a,e=Kt(h,this.e0,this.e1,this.e2,this.e3),n=nt(this.long0+a/this.ns);return t.x=n,t.y=e,t},names:["Equidistant_Conic","eqdc"]},ws={init:function(){this.R=this.a},forward:function(t){var s,i=t.x,a=t.y,h=nt(i-this.long0);Math.abs(a)<=D&&(s=this.x0+this.R*h,d=this.y0);var e=Zt(2*Math.abs(a/Math.PI));(Math.abs(h)<=D||Math.abs(Math.abs(a)-z)<=D)&&(s=this.x0,d=0<=a?this.y0+Math.PI*this.R*Math.tan(.5*e):this.y0+Math.PI*this.R*-Math.tan(.5*e));var n=.5*Math.abs(Math.PI/h-h/Math.PI),r=n*n,o=Math.sin(e),l=Math.cos(e),M=l/(o+l-1),c=M*M,u=M*(2/o-1),f=u*u,m=Math.PI*this.R*(n*(M-f)+Math.sqrt(r*(M-f)*(M-f)-(f+r)*(c-f)))/(f+r);h<0&&(m=-m),s=this.x0+m;var p=r+M,m=Math.PI*this.R*(u*p-n*Math.sqrt((f+r)*(1+r)-p*p))/(f+r),d=0<=a?this.y0+m:this.y0-m;return t.x=s,t.y=d,t},inverse:function(t){var s,i,a,h,e,n,r,o,l,M,c,u;return t.x-=this.x0,t.y-=this.y0,c=Math.PI*this.R,e=(a=t.x/c)*a+(h=t.y/c)*h,c=3*(h*h/(o=-2*(n=-Math.abs(h)*(1+e))+1+2*h*h+e*e)+(2*(r=n-2*h*h+a*a)*r*r/o/o/o-9*n*r/o/o)/27)/(l=(n-r*r/3/o)/o)/(M=2*Math.sqrt(-l/3)),1<Math.abs(c)&&(c=0<=c?1:-1),u=Math.acos(c)/3,i=0<=t.y?(-M*Math.cos(u+Math.PI/3)-r/3/o)*Math.PI:-(-M*Math.cos(u+Math.PI/3)-r/3/o)*Math.PI,s=Math.abs(a)<D?this.long0:nt(this.long0+Math.PI*(e-1+Math.sqrt(1+2*(a*a-h*h)+e*e))/2/a),t.x=s,t.y=i,t},names:["Van_der_Grinten_I","VanDerGrinten","vandg"]},Cs={init:function(){this.sin_p12=Math.sin(this.lat0),this.cos_p12=Math.cos(this.lat0)},forward:function(t){var s,i,a,h,e,n,r,o,l,M,c,u,f,m,p,d,y,_,x,g,b,v,w=t.x,C=t.y,P=Math.sin(t.y),S=Math.cos(t.y),N=nt(w-this.long0);return this.sphere?Math.abs(this.sin_p12-1)<=D?(t.x=this.x0+this.a*(z-C)*Math.sin(N),t.y=this.y0-this.a*(z-C)*Math.cos(N)):Math.abs(this.sin_p12+1)<=D?(t.x=this.x0+this.a*(z+C)*Math.sin(N),t.y=this.y0+this.a*(z+C)*Math.cos(N)):(_=this.sin_p12*P+this.cos_p12*S*Math.cos(N),y=(d=Math.acos(_))?d/Math.sin(d):1,t.x=this.x0+this.a*y*S*Math.sin(N),t.y=this.y0+this.a*y*(this.cos_p12*P-this.sin_p12*S*Math.cos(N))):(s=Ft(this.es),i=Qt(this.es),a=Wt(this.es),h=Xt(this.es),Math.abs(this.sin_p12-1)<=D?(e=this.a*Ut(s,i,a,h,z),n=this.a*Ut(s,i,a,h,C),t.x=this.x0+(e-n)*Math.sin(N),t.y=this.y0-(e-n)*Math.cos(N)):Math.abs(this.sin_p12+1)<=D?(e=this.a*Ut(s,i,a,h,z),n=this.a*Ut(s,i,a,h,C),t.x=this.x0+(e+n)*Math.sin(N),t.y=this.y0+(e+n)*Math.cos(N)):(r=P/S,o=Ht(this.a,this.e,this.sin_p12),l=Ht(this.a,this.e,P),M=Math.atan((1-this.es)*r+this.es*o*this.sin_p12/(l*S)),x=0===(c=Math.atan2(Math.sin(N),this.cos_p12*Math.tan(M)-this.sin_p12*Math.cos(N)))?Math.asin(this.cos_p12*Math.sin(M)-this.sin_p12*Math.cos(M)):Math.abs(Math.abs(c)-Math.PI)<=D?-Math.asin(this.cos_p12*Math.sin(M)-this.sin_p12*Math.cos(M)):Math.asin(Math.sin(N)*Math.cos(M)/Math.sin(c)),u=this.e*this.sin_p12/Math.sqrt(1-this.es),d=o*x*(1-(g=x*x)*(p=(f=this.e*this.cos_p12*Math.cos(c)/Math.sqrt(1-this.es))*f)*(1-p)/6+(b=g*x)/8*(m=u*f)*(1-2*p)+(v=b*x)/120*(p*(4-7*p)-3*u*u*(1-7*p))-v*x/48*m),t.x=this.x0+d*Math.sin(c),t.y=this.y0+d*Math.cos(c))),t},inverse:function(t){var s,i,a,h,e,n,r,o,l,M,c,u,f,m,p,d,y,_,x,g,b,v,w;if(t.x-=this.x0,t.y-=this.y0,this.sphere){if((s=Math.sqrt(t.x*t.x+t.y*t.y))>2*z*this.a)return;return i=s/this.a,a=Math.sin(i),h=Math.cos(i),e=this.long0,Math.abs(s)<=D?n=this.lat0:(n=Zt(h*this.sin_p12+t.y*a*this.cos_p12/s),r=Math.abs(this.lat0)-z,e=nt(Math.abs(r)<=D?0<=this.lat0?this.long0+Math.atan2(t.x,-t.y):this.long0-Math.atan2(-t.x,t.y):this.long0+Math.atan2(t.x*a,s*this.cos_p12*h-t.y*this.sin_p12*a))),t.x=e,t.y=n,t}return o=Ft(this.es),l=Qt(this.es),M=Wt(this.es),c=Xt(this.es),Math.abs(this.sin_p12-1)<=D?(u=this.a*Ut(o,l,M,c,z),s=Math.sqrt(t.x*t.x+t.y*t.y),n=Kt((u-s)/this.a,o,l,M,c),e=nt(this.long0+Math.atan2(t.x,-1*t.y))):Math.abs(this.sin_p12+1)<=D?(u=this.a*Ut(o,l,M,c,z),s=Math.sqrt(t.x*t.x+t.y*t.y),n=Kt((s-u)/this.a,o,l,M,c),e=nt(this.long0+Math.atan2(t.x,t.y))):(s=Math.sqrt(t.x*t.x+t.y*t.y),p=Math.atan2(t.x,t.y),f=Ht(this.a,this.e,this.sin_p12),d=Math.cos(p),_=-(y=this.e*this.cos_p12*d)*y/(1-this.es),x=3*this.es*(1-_)*this.sin_p12*this.cos_p12*d/(1-this.es),v=1-_*(b=(g=s/f)-_*(1+_)*Math.pow(g,3)/6-x*(1+3*_)*Math.pow(g,4)/24)*b/2-g*b*b*b/6,m=Math.asin(this.sin_p12*Math.cos(b)+this.cos_p12*Math.sin(b)*d),e=nt(this.long0+Math.asin(Math.sin(p)*Math.sin(b)/Math.cos(m))),w=Math.sin(m),n=Math.atan2((w-this.es*v*this.sin_p12)*Math.tan(m),w*(1-this.es))),t.x=e,t.y=n,t},names:["Azimuthal_Equidistant","aeqd"]},Ps={init:function(){this.sin_p14=Math.sin(this.lat0),this.cos_p14=Math.cos(this.lat0)},forward:function(t){var s,i,a,h=t.x,e=t.y,n=nt(h-this.long0),r=Math.sin(e),o=Math.cos(e),l=Math.cos(n);return(0<(s=this.sin_p14*r+this.cos_p14*o*l)||Math.abs(s)<=D)&&(i=this.a*o*Math.sin(n),a=this.y0+this.a*(this.cos_p14*r-this.sin_p14*o*l)),t.x=i,t.y=a,t},inverse:function(t){var s,i,a,h,e,n,r;return t.x-=this.x0,t.y-=this.y0,s=Math.sqrt(t.x*t.x+t.y*t.y),i=Zt(s/this.a),a=Math.sin(i),h=Math.cos(i),n=this.long0,Math.abs(s)<=D?r=this.lat0:(r=Zt(h*this.sin_p14+t.y*a*this.cos_p14/s),e=Math.abs(this.lat0)-z,n=Math.abs(e)<=D?nt(0<=this.lat0?this.long0+Math.atan2(t.x,-t.y):this.long0-Math.atan2(-t.x,t.y)):nt(this.long0+Math.atan2(t.x*a,s*this.cos_p14*h-t.y*this.sin_p14*a))),t.x=n,t.y=r,t},names:["ortho"]},Ss=1,Ns=2,ks=3,Es=4,qs=5,Is=6,Os=1,As=2,Gs=3,js=4,zs={init:function(){this.x0=this.x0||0,this.y0=this.y0||0,this.lat0=this.lat0||0,this.long0=this.long0||0,this.lat_ts=this.lat_ts||0,this.title=this.title||"Quadrilateralized Spherical Cube",this.lat0>=z-U/2?this.face=qs:this.lat0<=-(z-U/2)?this.face=Is:Math.abs(this.long0)<=U?this.face=Ss:Math.abs(this.long0)<=z+U?this.face=0<this.long0?Ns:Es:this.face=ks,0!==this.es&&(this.one_minus_f=1-(this.a-this.b)/this.a,this.one_minus_f_squared=this.one_minus_f*this.one_minus_f)},forward:function(t){var s,i,a,h,e,n,r,o,l,M,c,u,f={x:0,y:0},m={value:0};return t.x-=this.long0,s=0!==this.es?Math.atan(this.one_minus_f_squared*Math.tan(t.y)):t.y,i=t.x,this.face===qs?(h=z-s,a=U<=i&&i<=z+U?(m.value=Os,i-z):z+U<i||i<=-(z+U)?(m.value=As,0<i?i-Q:i+Q):-(z+U)<i&&i<=-U?(m.value=Gs,i+z):(m.value=js,i)):this.face===Is?(h=z+s,a=U<=i&&i<=z+U?(m.value=Os,z-i):i<U&&-U<=i?(m.value=As,-i):i<-U&&-(z+U)<=i?(m.value=Gs,-i-z):(m.value=js,0<i?Q-i:-i-Q)):(this.face===Ns?i=S(i,+z):this.face===ks?i=S(i,+Q):this.face===Es&&(i=S(i,-z)),M=Math.sin(s),c=Math.cos(s),u=Math.sin(i),r=c*Math.cos(i),o=c*u,l=M,this.face===Ss?a=P(h=Math.acos(r),l,o,m):this.face===Ns?a=P(h=Math.acos(o),l,-r,m):this.face===ks?a=P(h=Math.acos(-r),l,-o,m):this.face===Es?a=P(h=Math.acos(-o),l,r,m):(h=a=0,m.value=Os)),n=Math.atan(12/Q*(a+Math.acos(Math.sin(a)*Math.cos(U))-z)),e=Math.sqrt((1-Math.cos(h))/(Math.cos(n)*Math.cos(n))/(1-Math.cos(Math.atan(1/Math.cos(a))))),m.value===As?n+=z:m.value===Gs?n+=Q:m.value===js&&(n+=1.5*Q),f.x=e*Math.cos(n),f.y=e*Math.sin(n),f.x=f.x*this.a+this.x0,f.y=f.y*this.a+this.y0,t.x=f.x,t.y=f.y,t},inverse:function(t){var s,i,a,h,e,n,r,o,l,M,c,u,f,m,p,d={lam:0,phi:0},y={value:0};return t.x=(t.x-this.x0)/this.a,t.y=(t.y-this.y0)/this.a,i=Math.atan(Math.sqrt(t.x*t.x+t.y*t.y)),s=Math.atan2(t.y,t.x),0<=t.x&&t.x>=Math.abs(t.y)?y.value=Os:0<=t.y&&t.y>=Math.abs(t.x)?(y.value=As,s-=z):t.x<0&&-t.x>=Math.abs(t.y)?(y.value=Gs,s=s<0?s+Q:s-Q):(y.value=js,s+=z),c=Q/12*Math.tan(s),e=Math.sin(c)/(Math.cos(c)-1/Math.sqrt(2)),n=Math.atan(e),(r=1-(a=Math.cos(s))*a*(h=Math.tan(i))*h*(1-Math.cos(Math.atan(1/Math.cos(n)))))<-1?r=-1:1<r&&(r=1),this.face===qs?(o=Math.acos(r),d.phi=z-o,y.value===Os?d.lam=n+z:y.value===As?d.lam=n<0?n+Q:n-Q:y.value===Gs?d.lam=n-z:d.lam=n):this.face===Is?(o=Math.acos(r),d.phi=o-z,y.value===Os?d.lam=z-n:y.value===As?d.lam=-n:y.value===Gs?d.lam=-n-z:d.lam=n<0?-n-Q:Q-n):(c=(l=r)*l,u=1<=(c+=(M=1<=c?0:Math.sqrt(1-c)*Math.sin(n))*M)?0:Math.sqrt(1-c),y.value===As?(c=u,u=-M,M=c):y.value===Gs?(u=-u,M=-M):y.value===js&&(c=u,u=M,M=-c),this.face===Ns?(c=l,l=-u,u=c):this.face===ks?(l=-l,u=-u):this.face===Es&&(c=l,l=u,u=-c),d.phi=Math.acos(-M)-z,d.lam=Math.atan2(u,l),this.face===Ns?d.lam=S(d.lam,-z):this.face===ks?d.lam=S(d.lam,-Q):this.face===Es&&(d.lam=S(d.lam,+z))),0!==this.es&&(f=d.phi<0?1:0,m=Math.tan(d.phi),p=this.b/Math.sqrt(m*m+this.one_minus_f_squared),d.phi=Math.atan(Math.sqrt(this.a*this.a-p*p)/(this.one_minus_f*p)),f&&(d.phi=-d.phi)),d.lam+=this.long0,t.x=d.lam,t.y=d.phi,t},names:["Quadrilateralized Spherical Cube","Quadrilateralized_Spherical_Cube","qsc"]},Rs=[[1,22199e-21,-715515e-10,31103e-10],[.9986,-482243e-9,-24897e-9,-13309e-10],[.9954,-83103e-8,-448605e-10,-9.86701e-7],[.99,-.00135364,-59661e-9,36777e-10],[.9822,-.00167442,-449547e-11,-572411e-11],[.973,-.00214868,-903571e-10,1.8736e-8],[.96,-.00305085,-900761e-10,164917e-11],[.9427,-.00382792,-653386e-10,-26154e-10],[.9216,-.00467746,-10457e-8,481243e-11],[.8962,-.00536223,-323831e-10,-543432e-11],[.8679,-.00609363,-113898e-9,332484e-11],[.835,-.00698325,-640253e-10,9.34959e-7],[.7986,-.00755338,-500009e-10,9.35324e-7],[.7597,-.00798324,-35971e-9,-227626e-11],[.7186,-.00851367,-701149e-10,-86303e-10],[.6732,-.00986209,-199569e-9,191974e-10],[.6213,-.010418,883923e-10,624051e-11],[.5722,-.00906601,182e-6,624051e-11],[.5322,-.00677797,275608e-9,624051e-11]],Ls=[[-520417e-23,.0124,121431e-23,-845284e-16],[.062,.0124,-1.26793e-9,4.22642e-10],[.124,.0124,5.07171e-9,-1.60604e-9],[.186,.0123999,-1.90189e-8,6.00152e-9],[.248,.0124002,7.10039e-8,-2.24e-8],[.31,.0123992,-2.64997e-7,8.35986e-8],[.372,.0124029,9.88983e-7,-3.11994e-7],[.434,.0123893,-369093e-11,-4.35621e-7],[.4958,.0123198,-102252e-10,-3.45523e-7],[.5571,.0121916,-154081e-10,-5.82288e-7],[.6176,.0119938,-241424e-10,-5.25327e-7],[.6769,.011713,-320223e-10,-5.16405e-7],[.7346,.0113541,-397684e-10,-6.09052e-7],[.7903,.0109107,-489042e-10,-104739e-11],[.8435,.0103431,-64615e-9,-1.40374e-9],[.8936,.00969686,-64636e-9,-8547e-9],[.9394,.00840947,-192841e-9,-42106e-10],[.9761,.00616527,-256e-6,-42106e-10],[1,.00328947,-319159e-9,-42106e-10]],Ts=B/5,Ds=1/Ts,Bs={init:function(){this.x0=this.x0||0,this.y0=this.y0||0,this.long0=this.long0||0,this.es=0,this.title=this.title||"Robinson"},forward:function(t){var s=nt(t.x-this.long0),i=Math.abs(t.y),a=Math.floor(i*Ts);a<0?a=0:18<=a&&(a=17);var h={x:Yt(Rs[a],i=B*(i-Ds*a))*s,y:Yt(Ls[a],i)};return t.y<0&&(h.y=-h.y),h.x=h.x*this.a*.8487+this.x0,h.y=h.y*this.a*1.3523+this.y0,h},inverse:function(t){var a={x:(t.x-this.x0)/(.8487*this.a),y:Math.abs(t.y-this.y0)/(1.3523*this.a)};if(1<=a.y)a.x/=Rs[18][0],a.y=t.y<0?-z:z;else{var s=Math.floor(18*a.y);for(s<0?s=0:18<=s&&(s=17);;)if(Ls[s][0]>a.y)--s;else{if(!(Ls[s+1][0]<=a.y))break;++s}var h=Ls[s],i=function(t,s,i,a){for(var h=s;a;--a){var e=t(h);if(h-=e,Math.abs(e)<i)break}return h}(function(t){return(Yt(h,t)-a.y)/(i=t,(s=h)[1]+i*(2*s[2]+3*i*s[3]));var s,i},i=5*(a.y-h[0])/(Ls[s+1][0]-h[0]),D,100);a.x/=Yt(Rs[s],i),a.y=(5*s+i)*N,t.y<0&&(a.y=-a.y)}return a.x=nt(a.x+this.long0),a},names:["Robinson","robin"]},Us={init:function(){this.name="geocent"},forward:function(t){return M(t,this.es,this.a)},inverse:function(t){return c(t,this.es,this.a,this.b)},names:["Geocentric","geocentric","geocent","Geocent"]};return a.defaultDatum="WGS84",a.Proj=q,a.WGS84=new a.Proj("WGS84"),a.Point=C,a.toPoint=bt,a.defs=l,a.transform=f,a.mgrs=Ot,a.version="2.6.2",($t=a).Proj.projections.add(ss),$t.Proj.projections.add(is),$t.Proj.projections.add(as),$t.Proj.projections.add(es),$t.Proj.projections.add(ns),$t.Proj.projections.add(rs),$t.Proj.projections.add(os),$t.Proj.projections.add(ls),$t.Proj.projections.add(Ms),$t.Proj.projections.add(cs),$t.Proj.projections.add(us),$t.Proj.projections.add(fs),$t.Proj.projections.add(ms),$t.Proj.projections.add(ps),$t.Proj.projections.add(ds),$t.Proj.projections.add(ys),$t.Proj.projections.add(_s),$t.Proj.projections.add(xs),$t.Proj.projections.add(gs),$t.Proj.projections.add(bs),$t.Proj.projections.add(vs),$t.Proj.projections.add(ws),$t.Proj.projections.add(Cs),$t.Proj.projections.add(Ps),$t.Proj.projections.add(zs),$t.Proj.projections.add(Bs),$t.Proj.projections.add(Us),a});</script>
|
|
<script>(function (factory) {
|
|
var L, proj4;
|
|
if (typeof define === 'function' && define.amd) {
|
|
// AMD
|
|
define(['leaflet', 'proj4'], factory);
|
|
} else if (typeof module === 'object' && typeof module.exports === "object") {
|
|
// Node/CommonJS
|
|
L = require('leaflet');
|
|
proj4 = require('proj4');
|
|
module.exports = factory(L, proj4);
|
|
} else {
|
|
// Browser globals
|
|
if (typeof window.L === 'undefined' || typeof window.proj4 === 'undefined')
|
|
throw 'Leaflet and proj4 must be loaded first';
|
|
factory(window.L, window.proj4);
|
|
}
|
|
}(function (L, proj4) {
|
|
if (proj4.__esModule && proj4.default) {
|
|
// If proj4 was bundled as an ES6 module, unwrap it to get
|
|
// to the actual main proj4 object.
|
|
// See discussion in https://github.com/kartena/Proj4Leaflet/pull/147
|
|
proj4 = proj4.default;
|
|
}
|
|
|
|
L.Proj = {};
|
|
|
|
L.Proj._isProj4Obj = function(a) {
|
|
return (typeof a.inverse !== 'undefined' &&
|
|
typeof a.forward !== 'undefined');
|
|
};
|
|
|
|
L.Proj.Projection = L.Class.extend({
|
|
initialize: function(code, def, bounds) {
|
|
var isP4 = L.Proj._isProj4Obj(code);
|
|
this._proj = isP4 ? code : this._projFromCodeDef(code, def);
|
|
this.bounds = isP4 ? def : bounds;
|
|
},
|
|
|
|
project: function (latlng) {
|
|
var point = this._proj.forward([latlng.lng, latlng.lat]);
|
|
return new L.Point(point[0], point[1]);
|
|
},
|
|
|
|
unproject: function (point, unbounded) {
|
|
var point2 = this._proj.inverse([point.x, point.y]);
|
|
return new L.LatLng(point2[1], point2[0], unbounded);
|
|
},
|
|
|
|
_projFromCodeDef: function(code, def) {
|
|
if (def) {
|
|
proj4.defs(code, def);
|
|
} else if (proj4.defs[code] === undefined) {
|
|
var urn = code.split(':');
|
|
if (urn.length > 3) {
|
|
code = urn[urn.length - 3] + ':' + urn[urn.length - 1];
|
|
}
|
|
if (proj4.defs[code] === undefined) {
|
|
throw 'No projection definition for code ' + code;
|
|
}
|
|
}
|
|
|
|
return proj4(code);
|
|
}
|
|
});
|
|
|
|
L.Proj.CRS = L.Class.extend({
|
|
includes: L.CRS,
|
|
|
|
options: {
|
|
transformation: new L.Transformation(1, 0, -1, 0)
|
|
},
|
|
|
|
initialize: function(a, b, c) {
|
|
var code,
|
|
proj,
|
|
def,
|
|
options;
|
|
|
|
if (L.Proj._isProj4Obj(a)) {
|
|
proj = a;
|
|
code = proj.srsCode;
|
|
options = b || {};
|
|
|
|
this.projection = new L.Proj.Projection(proj, options.bounds);
|
|
} else {
|
|
code = a;
|
|
def = b;
|
|
options = c || {};
|
|
this.projection = new L.Proj.Projection(code, def, options.bounds);
|
|
}
|
|
|
|
L.Util.setOptions(this, options);
|
|
this.code = code;
|
|
this.transformation = this.options.transformation;
|
|
|
|
if (this.options.origin) {
|
|
this.transformation =
|
|
new L.Transformation(1, -this.options.origin[0],
|
|
-1, this.options.origin[1]);
|
|
}
|
|
|
|
if (this.options.scales) {
|
|
this._scales = this.options.scales;
|
|
} else if (this.options.resolutions) {
|
|
this._scales = [];
|
|
for (var i = this.options.resolutions.length - 1; i >= 0; i--) {
|
|
if (this.options.resolutions[i]) {
|
|
this._scales[i] = 1 / this.options.resolutions[i];
|
|
}
|
|
}
|
|
}
|
|
|
|
this.infinite = !this.options.bounds;
|
|
|
|
},
|
|
|
|
scale: function(zoom) {
|
|
var iZoom = Math.floor(zoom),
|
|
baseScale,
|
|
nextScale,
|
|
scaleDiff,
|
|
zDiff;
|
|
if (zoom === iZoom) {
|
|
return this._scales[zoom];
|
|
} else {
|
|
// Non-integer zoom, interpolate
|
|
baseScale = this._scales[iZoom];
|
|
nextScale = this._scales[iZoom + 1];
|
|
scaleDiff = nextScale - baseScale;
|
|
zDiff = (zoom - iZoom);
|
|
return baseScale + scaleDiff * zDiff;
|
|
}
|
|
},
|
|
|
|
zoom: function(scale) {
|
|
// Find closest number in this._scales, down
|
|
var downScale = this._closestElement(this._scales, scale),
|
|
downZoom = this._scales.indexOf(downScale),
|
|
nextScale,
|
|
nextZoom,
|
|
scaleDiff;
|
|
// Check if scale is downScale => return array index
|
|
if (scale === downScale) {
|
|
return downZoom;
|
|
}
|
|
if (downScale === undefined) {
|
|
return -Infinity;
|
|
}
|
|
// Interpolate
|
|
nextZoom = downZoom + 1;
|
|
nextScale = this._scales[nextZoom];
|
|
if (nextScale === undefined) {
|
|
return Infinity;
|
|
}
|
|
scaleDiff = nextScale - downScale;
|
|
return (scale - downScale) / scaleDiff + downZoom;
|
|
},
|
|
|
|
distance: L.CRS.Earth.distance,
|
|
|
|
R: L.CRS.Earth.R,
|
|
|
|
/* Get the closest lowest element in an array */
|
|
_closestElement: function(array, element) {
|
|
var low;
|
|
for (var i = array.length; i--;) {
|
|
if (array[i] <= element && (low === undefined || low < array[i])) {
|
|
low = array[i];
|
|
}
|
|
}
|
|
return low;
|
|
}
|
|
});
|
|
|
|
L.Proj.GeoJSON = L.GeoJSON.extend({
|
|
initialize: function(geojson, options) {
|
|
this._callLevel = 0;
|
|
L.GeoJSON.prototype.initialize.call(this, geojson, options);
|
|
},
|
|
|
|
addData: function(geojson) {
|
|
var crs;
|
|
|
|
if (geojson) {
|
|
if (geojson.crs && geojson.crs.type === 'name') {
|
|
crs = new L.Proj.CRS(geojson.crs.properties.name);
|
|
} else if (geojson.crs && geojson.crs.type) {
|
|
crs = new L.Proj.CRS(geojson.crs.type + ':' + geojson.crs.properties.code);
|
|
}
|
|
|
|
if (crs !== undefined) {
|
|
this.options.coordsToLatLng = function(coords) {
|
|
var point = L.point(coords[0], coords[1]);
|
|
return crs.projection.unproject(point);
|
|
};
|
|
}
|
|
}
|
|
|
|
// Base class' addData might call us recursively, but
|
|
// CRS shouldn't be cleared in that case, since CRS applies
|
|
// to the whole GeoJSON, inluding sub-features.
|
|
this._callLevel++;
|
|
try {
|
|
L.GeoJSON.prototype.addData.call(this, geojson);
|
|
} finally {
|
|
this._callLevel--;
|
|
if (this._callLevel === 0) {
|
|
delete this.options.coordsToLatLng;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
L.Proj.geoJson = function(geojson, options) {
|
|
return new L.Proj.GeoJSON(geojson, options);
|
|
};
|
|
|
|
L.Proj.ImageOverlay = L.ImageOverlay.extend({
|
|
initialize: function (url, bounds, options) {
|
|
L.ImageOverlay.prototype.initialize.call(this, url, null, options);
|
|
this._projectedBounds = bounds;
|
|
},
|
|
|
|
// Danger ahead: Overriding internal methods in Leaflet.
|
|
// Decided to do this rather than making a copy of L.ImageOverlay
|
|
// and doing very tiny modifications to it.
|
|
// Future will tell if this was wise or not.
|
|
_animateZoom: function (event) {
|
|
var scale = this._map.getZoomScale(event.zoom);
|
|
var northWest = L.point(this._projectedBounds.min.x, this._projectedBounds.max.y);
|
|
var offset = this._projectedToNewLayerPoint(northWest, event.zoom, event.center);
|
|
|
|
L.DomUtil.setTransform(this._image, offset, scale);
|
|
},
|
|
|
|
_reset: function () {
|
|
var zoom = this._map.getZoom();
|
|
var pixelOrigin = this._map.getPixelOrigin();
|
|
var bounds = L.bounds(
|
|
this._transform(this._projectedBounds.min, zoom)._subtract(pixelOrigin),
|
|
this._transform(this._projectedBounds.max, zoom)._subtract(pixelOrigin)
|
|
);
|
|
var size = bounds.getSize();
|
|
|
|
L.DomUtil.setPosition(this._image, bounds.min);
|
|
this._image.style.width = size.x + 'px';
|
|
this._image.style.height = size.y + 'px';
|
|
},
|
|
|
|
_projectedToNewLayerPoint: function (point, zoom, center) {
|
|
var viewHalf = this._map.getSize()._divideBy(2);
|
|
var newTopLeft = this._map.project(center, zoom)._subtract(viewHalf)._round();
|
|
var topLeft = newTopLeft.add(this._map._getMapPanePos());
|
|
|
|
return this._transform(point, zoom)._subtract(topLeft);
|
|
},
|
|
|
|
_transform: function (point, zoom) {
|
|
var crs = this._map.options.crs;
|
|
var transformation = crs.transformation;
|
|
var scale = crs.scale(zoom);
|
|
|
|
return transformation.transform(point, scale);
|
|
}
|
|
});
|
|
|
|
L.Proj.imageOverlay = function (url, bounds, options) {
|
|
return new L.Proj.ImageOverlay(url, bounds, options);
|
|
};
|
|
|
|
return L.Proj;
|
|
}));
|
|
</script>
|
|
<style type="text/css">.leaflet-tooltip.leaflet-tooltip-text-only,
|
|
.leaflet-tooltip.leaflet-tooltip-text-only:before,
|
|
.leaflet-tooltip.leaflet-tooltip-text-only:after {
|
|
background: none;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
.leaflet-tooltip.leaflet-tooltip-text-only.leaflet-tooltip-left {
|
|
margin-left: 5px;
|
|
}
|
|
.leaflet-tooltip.leaflet-tooltip-text-only.leaflet-tooltip-right {
|
|
margin-left: -5px;
|
|
}
|
|
.leaflet-tooltip:after {
|
|
border-right: 6px solid transparent;
|
|
|
|
}
|
|
.leaflet-popup-pane .leaflet-popup-tip-container {
|
|
|
|
pointer-events: all;
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
.leaflet-map-pane {
|
|
z-index: auto;
|
|
}
|
|
|
|
.leaflet-container .leaflet-right-pane img,
|
|
.leaflet-container .leaflet-left-pane img {
|
|
max-width: none !important;
|
|
max-height: none !important;
|
|
}
|
|
</style>
|
|
<script>(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = undefined;
|
|
|
|
var _util = require("./util");
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
var ClusterLayerStore = /*#__PURE__*/function () {
|
|
function ClusterLayerStore(group) {
|
|
_classCallCheck(this, ClusterLayerStore);
|
|
|
|
this._layers = {};
|
|
this._group = group;
|
|
}
|
|
|
|
_createClass(ClusterLayerStore, [{
|
|
key: "add",
|
|
value: function add(layer, id) {
|
|
if (typeof id !== "undefined" && id !== null) {
|
|
if (this._layers[id]) {
|
|
this._group.removeLayer(this._layers[id]);
|
|
}
|
|
|
|
this._layers[id] = layer;
|
|
}
|
|
|
|
this._group.addLayer(layer);
|
|
}
|
|
}, {
|
|
key: "remove",
|
|
value: function remove(id) {
|
|
if (typeof id === "undefined" || id === null) {
|
|
return;
|
|
}
|
|
|
|
id = (0, _util.asArray)(id);
|
|
|
|
for (var i = 0; i < id.length; i++) {
|
|
if (this._layers[id[i]]) {
|
|
this._group.removeLayer(this._layers[id[i]]);
|
|
|
|
delete this._layers[id[i]];
|
|
}
|
|
}
|
|
}
|
|
}, {
|
|
key: "clear",
|
|
value: function clear() {
|
|
this._layers = {};
|
|
|
|
this._group.clearLayers();
|
|
}
|
|
}]);
|
|
|
|
return ClusterLayerStore;
|
|
}();
|
|
|
|
exports["default"] = ClusterLayerStore;
|
|
|
|
|
|
},{"./util":17}],2:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
var ControlStore = /*#__PURE__*/function () {
|
|
function ControlStore(map) {
|
|
_classCallCheck(this, ControlStore);
|
|
|
|
this._controlsNoId = [];
|
|
this._controlsById = {};
|
|
this._map = map;
|
|
}
|
|
|
|
_createClass(ControlStore, [{
|
|
key: "add",
|
|
value: function add(control, id, html) {
|
|
if (typeof id !== "undefined" && id !== null) {
|
|
if (this._controlsById[id]) {
|
|
this._map.removeControl(this._controlsById[id]);
|
|
}
|
|
|
|
this._controlsById[id] = control;
|
|
} else {
|
|
this._controlsNoId.push(control);
|
|
}
|
|
|
|
this._map.addControl(control);
|
|
}
|
|
}, {
|
|
key: "get",
|
|
value: function get(id) {
|
|
var control = null;
|
|
|
|
if (this._controlsById[id]) {
|
|
control = this._controlsById[id];
|
|
}
|
|
|
|
return control;
|
|
}
|
|
}, {
|
|
key: "remove",
|
|
value: function remove(id) {
|
|
if (this._controlsById[id]) {
|
|
var control = this._controlsById[id];
|
|
|
|
this._map.removeControl(control);
|
|
|
|
delete this._controlsById[id];
|
|
}
|
|
}
|
|
}, {
|
|
key: "clear",
|
|
value: function clear() {
|
|
for (var i = 0; i < this._controlsNoId.length; i++) {
|
|
var control = this._controlsNoId[i];
|
|
|
|
this._map.removeControl(control);
|
|
}
|
|
|
|
this._controlsNoId = [];
|
|
|
|
for (var key in this._controlsById) {
|
|
var _control = this._controlsById[key];
|
|
|
|
this._map.removeControl(_control);
|
|
}
|
|
|
|
this._controlsById = {};
|
|
}
|
|
}]);
|
|
|
|
return ControlStore;
|
|
}();
|
|
|
|
exports["default"] = ControlStore;
|
|
|
|
|
|
},{}],3:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.getCRS = getCRS;
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
var _proj4leaflet = require("./global/proj4leaflet");
|
|
|
|
var _proj4leaflet2 = _interopRequireDefault(_proj4leaflet);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
// Helper function to instanciate a ICRS instance.
|
|
function getCRS(crsOptions) {
|
|
var crs = _leaflet2["default"].CRS.EPSG3857; // Default Spherical Mercator
|
|
|
|
switch (crsOptions.crsClass) {
|
|
case "L.CRS.EPSG3857":
|
|
crs = _leaflet2["default"].CRS.EPSG3857;
|
|
break;
|
|
|
|
case "L.CRS.EPSG4326":
|
|
crs = _leaflet2["default"].CRS.EPSG4326;
|
|
break;
|
|
|
|
case "L.CRS.EPSG3395":
|
|
crs = _leaflet2["default"].CRS.EPSG3395;
|
|
break;
|
|
|
|
case "L.CRS.Simple":
|
|
crs = _leaflet2["default"].CRS.Simple;
|
|
break;
|
|
|
|
case "L.Proj.CRS":
|
|
if (crsOptions.options && crsOptions.options.bounds) {
|
|
crsOptions.options.bounds = _leaflet2["default"].bounds(crsOptions.options.bounds);
|
|
}
|
|
|
|
if (crsOptions.options && crsOptions.options.transformation) {
|
|
crsOptions.options.transformation = new _leaflet2["default"].Transformation(crsOptions.options.transformation[0], crsOptions.options.transformation[1], crsOptions.options.transformation[2], crsOptions.options.transformation[3]);
|
|
}
|
|
|
|
crs = new _proj4leaflet2["default"].CRS(crsOptions.code, crsOptions.proj4def, crsOptions.options);
|
|
break;
|
|
|
|
case "L.Proj.CRS.TMS":
|
|
if (crsOptions.options && crsOptions.options.bounds) {
|
|
crsOptions.options.bounds = _leaflet2["default"].bounds(crsOptions.options.bounds);
|
|
}
|
|
|
|
if (crsOptions.options && crsOptions.options.transformation) {
|
|
crsOptions.options.transformation = _leaflet2["default"].Transformation(crsOptions.options.transformation[0], crsOptions.options.transformation[1], crsOptions.options.transformation[2], crsOptions.options.transformation[3]);
|
|
} // L.Proj.CRS.TMS is deprecated as of Leaflet 1.x, fall back to L.Proj.CRS
|
|
//crs = new Proj4Leaflet.CRS.TMS(crsOptions.code, crsOptions.proj4def, crsOptions.projectedBounds, crsOptions.options);
|
|
|
|
|
|
crs = new _proj4leaflet2["default"].CRS(crsOptions.code, crsOptions.proj4def, crsOptions.options);
|
|
break;
|
|
}
|
|
|
|
return crs;
|
|
}
|
|
|
|
|
|
},{"./global/leaflet":10,"./global/proj4leaflet":11}],4:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = undefined;
|
|
|
|
var _util = require("./util");
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
var DataFrame = /*#__PURE__*/function () {
|
|
function DataFrame() {
|
|
_classCallCheck(this, DataFrame);
|
|
|
|
this.columns = [];
|
|
this.colnames = [];
|
|
this.colstrict = [];
|
|
this.effectiveLength = 0;
|
|
this.colindices = {};
|
|
}
|
|
|
|
_createClass(DataFrame, [{
|
|
key: "_updateCachedProperties",
|
|
value: function _updateCachedProperties() {
|
|
var _this = this;
|
|
|
|
this.effectiveLength = 0;
|
|
this.colindices = {};
|
|
this.columns.forEach(function (column, i) {
|
|
_this.effectiveLength = Math.max(_this.effectiveLength, column.length);
|
|
_this.colindices[_this.colnames[i]] = i;
|
|
});
|
|
}
|
|
}, {
|
|
key: "_colIndex",
|
|
value: function _colIndex(colname) {
|
|
var index = this.colindices[colname];
|
|
if (typeof index === "undefined") return -1;
|
|
return index;
|
|
}
|
|
}, {
|
|
key: "col",
|
|
value: function col(name, values, strict) {
|
|
if (typeof name !== "string") throw new Error("Invalid column name \"" + name + "\"");
|
|
|
|
var index = this._colIndex(name);
|
|
|
|
if (arguments.length === 1) {
|
|
if (index < 0) return null;else return (0, _util.recycle)(this.columns[index], this.effectiveLength);
|
|
}
|
|
|
|
if (index < 0) {
|
|
index = this.colnames.length;
|
|
this.colnames.push(name);
|
|
}
|
|
|
|
this.columns[index] = (0, _util.asArray)(values);
|
|
this.colstrict[index] = !!strict; // TODO: Validate strictness (ensure lengths match up with other stricts)
|
|
|
|
this._updateCachedProperties();
|
|
|
|
return this;
|
|
}
|
|
}, {
|
|
key: "cbind",
|
|
value: function cbind(obj, strict) {
|
|
var _this2 = this;
|
|
|
|
Object.keys(obj).forEach(function (name) {
|
|
var coldata = obj[name];
|
|
|
|
_this2.col(name, coldata);
|
|
});
|
|
return this;
|
|
}
|
|
}, {
|
|
key: "get",
|
|
value: function get(row, col, missingOK) {
|
|
var _this3 = this;
|
|
|
|
if (row > this.effectiveLength) throw new Error("Row argument was out of bounds: " + row + " > " + this.effectiveLength);
|
|
var colIndex = -1;
|
|
|
|
if (typeof col === "undefined") {
|
|
var rowData = {};
|
|
this.colnames.forEach(function (name, i) {
|
|
rowData[name] = _this3.columns[i][row % _this3.columns[i].length];
|
|
});
|
|
return rowData;
|
|
} else if (typeof col === "string") {
|
|
colIndex = this._colIndex(col);
|
|
} else if (typeof col === "number") {
|
|
colIndex = col;
|
|
}
|
|
|
|
if (colIndex < 0 || colIndex > this.columns.length) {
|
|
if (missingOK) return void 0;else throw new Error("Unknown column index: " + col);
|
|
}
|
|
|
|
return this.columns[colIndex][row % this.columns[colIndex].length];
|
|
}
|
|
}, {
|
|
key: "nrow",
|
|
value: function nrow() {
|
|
return this.effectiveLength;
|
|
}
|
|
}]);
|
|
|
|
return DataFrame;
|
|
}();
|
|
|
|
exports["default"] = DataFrame;
|
|
|
|
|
|
},{"./util":17}],5:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
// In RMarkdown's self-contained mode, we don't have a way to carry around the
|
|
// images that Leaflet needs but doesn't load into the page. Instead, we'll use
|
|
// the unpkg CDN.
|
|
if (typeof _leaflet2["default"].Icon.Default.imagePath === "undefined") {
|
|
_leaflet2["default"].Icon.Default.imagePath = "https://unpkg.com/leaflet@1.3.1/dist/images/";
|
|
}
|
|
|
|
|
|
},{"./global/leaflet":10}],6:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
// add texxtsize, textOnly, and style
|
|
_leaflet2["default"].Tooltip.prototype.options.textsize = "10px";
|
|
_leaflet2["default"].Tooltip.prototype.options.textOnly = false;
|
|
_leaflet2["default"].Tooltip.prototype.options.style = null; // copy original layout to not completely stomp it.
|
|
|
|
var initLayoutOriginal = _leaflet2["default"].Tooltip.prototype._initLayout;
|
|
|
|
_leaflet2["default"].Tooltip.prototype._initLayout = function () {
|
|
initLayoutOriginal.call(this);
|
|
this._container.style.fontSize = this.options.textsize;
|
|
|
|
if (this.options.textOnly) {
|
|
_leaflet2["default"].DomUtil.addClass(this._container, "leaflet-tooltip-text-only");
|
|
}
|
|
|
|
if (this.options.style) {
|
|
for (var property in this.options.style) {
|
|
this._container.style[property] = this.options.style[property];
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
},{"./global/leaflet":10}],7:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
var protocolRegex = /^\/\//;
|
|
|
|
var upgrade_protocol = function upgrade_protocol(urlTemplate) {
|
|
if (protocolRegex.test(urlTemplate)) {
|
|
if (window.location.protocol === "file:") {
|
|
// if in a local file, support http
|
|
// http should auto upgrade if necessary
|
|
urlTemplate = "http:" + urlTemplate;
|
|
}
|
|
}
|
|
|
|
return urlTemplate;
|
|
};
|
|
|
|
var originalLTileLayerInitialize = _leaflet2["default"].TileLayer.prototype.initialize;
|
|
|
|
_leaflet2["default"].TileLayer.prototype.initialize = function (urlTemplate, options) {
|
|
urlTemplate = upgrade_protocol(urlTemplate);
|
|
originalLTileLayerInitialize.call(this, urlTemplate, options);
|
|
};
|
|
|
|
var originalLTileLayerWMSInitialize = _leaflet2["default"].TileLayer.WMS.prototype.initialize;
|
|
|
|
_leaflet2["default"].TileLayer.WMS.prototype.initialize = function (urlTemplate, options) {
|
|
urlTemplate = upgrade_protocol(urlTemplate);
|
|
originalLTileLayerWMSInitialize.call(this, urlTemplate, options);
|
|
};
|
|
|
|
|
|
},{"./global/leaflet":10}],8:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = global.HTMLWidgets;
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{}],9:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = global.jQuery;
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{}],10:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = global.L;
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{}],11:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = global.L.Proj;
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{}],12:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = global.Shiny;
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{}],13:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
var _jquery = require("./global/jquery");
|
|
|
|
var _jquery2 = _interopRequireDefault(_jquery);
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
var _shiny = require("./global/shiny");
|
|
|
|
var _shiny2 = _interopRequireDefault(_shiny);
|
|
|
|
var _htmlwidgets = require("./global/htmlwidgets");
|
|
|
|
var _htmlwidgets2 = _interopRequireDefault(_htmlwidgets);
|
|
|
|
var _util = require("./util");
|
|
|
|
var _crs_utils = require("./crs_utils");
|
|
|
|
var _controlStore = require("./control-store");
|
|
|
|
var _controlStore2 = _interopRequireDefault(_controlStore);
|
|
|
|
var _layerManager = require("./layer-manager");
|
|
|
|
var _layerManager2 = _interopRequireDefault(_layerManager);
|
|
|
|
var _methods = require("./methods");
|
|
|
|
var _methods2 = _interopRequireDefault(_methods);
|
|
|
|
require("./fixup-default-icon");
|
|
|
|
require("./fixup-default-tooltip");
|
|
|
|
require("./fixup-url-protocol");
|
|
|
|
var _dataframe = require("./dataframe");
|
|
|
|
var _dataframe2 = _interopRequireDefault(_dataframe);
|
|
|
|
var _clusterLayerStore = require("./cluster-layer-store");
|
|
|
|
var _clusterLayerStore2 = _interopRequireDefault(_clusterLayerStore);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
window.LeafletWidget = {};
|
|
window.LeafletWidget.utils = {};
|
|
|
|
var methods = window.LeafletWidget.methods = _jquery2["default"].extend({}, _methods2["default"]);
|
|
|
|
window.LeafletWidget.DataFrame = _dataframe2["default"];
|
|
window.LeafletWidget.ClusterLayerStore = _clusterLayerStore2["default"];
|
|
window.LeafletWidget.utils.getCRS = _crs_utils.getCRS; // Send updated bounds back to app. Takes a leaflet event object as input.
|
|
|
|
function updateBounds(map) {
|
|
var id = map.getContainer().id;
|
|
var bounds = map.getBounds();
|
|
|
|
_shiny2["default"].onInputChange(id + "_bounds", {
|
|
north: bounds.getNorthEast().lat,
|
|
east: bounds.getNorthEast().lng,
|
|
south: bounds.getSouthWest().lat,
|
|
west: bounds.getSouthWest().lng
|
|
});
|
|
|
|
_shiny2["default"].onInputChange(id + "_center", {
|
|
lng: map.getCenter().lng,
|
|
lat: map.getCenter().lat
|
|
});
|
|
|
|
_shiny2["default"].onInputChange(id + "_zoom", map.getZoom());
|
|
}
|
|
|
|
function preventUnintendedZoomOnScroll(map) {
|
|
// Prevent unwanted scroll capturing. Similar in purpose to
|
|
// https://github.com/CliffCloud/Leaflet.Sleep but with a
|
|
// different set of heuristics.
|
|
// The basic idea is that when a mousewheel/DOMMouseScroll
|
|
// event is seen, we disable scroll wheel zooming until the
|
|
// user moves their mouse cursor or clicks on the map. This
|
|
// is slightly trickier than just listening for mousemove,
|
|
// because mousemove is fired when the page is scrolled,
|
|
// even if the user did not physically move the mouse. We
|
|
// handle this by examining the mousemove event's screenX
|
|
// and screenY properties; if they change, we know it's a
|
|
// "true" move.
|
|
// lastScreen can never be null, but its x and y can.
|
|
var lastScreen = {
|
|
x: null,
|
|
y: null
|
|
};
|
|
(0, _jquery2["default"])(document).on("mousewheel DOMMouseScroll", "*", function (e) {
|
|
// Disable zooming (until the mouse moves or click)
|
|
map.scrollWheelZoom.disable(); // Any mousemove events at this screen position will be ignored.
|
|
|
|
lastScreen = {
|
|
x: e.originalEvent.screenX,
|
|
y: e.originalEvent.screenY
|
|
};
|
|
});
|
|
(0, _jquery2["default"])(document).on("mousemove", "*", function (e) {
|
|
// Did the mouse really move?
|
|
if (map.options.scrollWheelZoom) {
|
|
if (lastScreen.x !== null && e.screenX !== lastScreen.x || e.screenY !== lastScreen.y) {
|
|
// It really moved. Enable zooming.
|
|
map.scrollWheelZoom.enable();
|
|
lastScreen = {
|
|
x: null,
|
|
y: null
|
|
};
|
|
}
|
|
}
|
|
});
|
|
(0, _jquery2["default"])(document).on("mousedown", ".leaflet", function (e) {
|
|
// Clicking always enables zooming.
|
|
if (map.options.scrollWheelZoom) {
|
|
map.scrollWheelZoom.enable();
|
|
lastScreen = {
|
|
x: null,
|
|
y: null
|
|
};
|
|
}
|
|
});
|
|
}
|
|
|
|
_htmlwidgets2["default"].widget({
|
|
name: "leaflet",
|
|
type: "output",
|
|
factory: function factory(el, width, height) {
|
|
var map = null;
|
|
return {
|
|
// we need to store our map in our returned object.
|
|
getMap: function getMap() {
|
|
return map;
|
|
},
|
|
renderValue: function renderValue(data) {
|
|
// Create an appropriate CRS Object if specified
|
|
if (data && data.options && data.options.crs) {
|
|
data.options.crs = (0, _crs_utils.getCRS)(data.options.crs);
|
|
} // As per https://github.com/rstudio/leaflet/pull/294#discussion_r79584810
|
|
|
|
|
|
if (map) {
|
|
map.remove();
|
|
|
|
map = function () {
|
|
return;
|
|
}(); // undefine map
|
|
|
|
}
|
|
|
|
if (data.options.mapFactory && typeof data.options.mapFactory === "function") {
|
|
map = data.options.mapFactory(el, data.options);
|
|
} else {
|
|
map = _leaflet2["default"].map(el, data.options);
|
|
}
|
|
|
|
preventUnintendedZoomOnScroll(map); // Store some state in the map object
|
|
|
|
map.leafletr = {
|
|
// Has the map ever rendered successfully?
|
|
hasRendered: false,
|
|
// Data to be rendered when resize is called with area != 0
|
|
pendingRenderData: null
|
|
}; // Check if the map is rendered statically (no output binding)
|
|
|
|
if (_htmlwidgets2["default"].shinyMode && /\bshiny-bound-output\b/.test(el.className)) {
|
|
map.id = el.id; // Store the map on the element so we can find it later by ID
|
|
|
|
(0, _jquery2["default"])(el).data("leaflet-map", map); // When the map is clicked, send the coordinates back to the app
|
|
|
|
map.on("click", function (e) {
|
|
_shiny2["default"].onInputChange(map.id + "_click", {
|
|
lat: e.latlng.lat,
|
|
lng: e.latlng.lng,
|
|
".nonce": Math.random() // Force reactivity if lat/lng hasn't changed
|
|
|
|
});
|
|
});
|
|
var groupTimerId = null;
|
|
map.on("moveend", function (e) {
|
|
updateBounds(e.target);
|
|
}).on("layeradd layerremove", function (e) {
|
|
// If the layer that's coming or going is a group we created, tell
|
|
// the server.
|
|
if (map.layerManager.getGroupNameFromLayerGroup(e.layer)) {
|
|
// But to avoid chattiness, coalesce events
|
|
if (groupTimerId) {
|
|
clearTimeout(groupTimerId);
|
|
groupTimerId = null;
|
|
}
|
|
|
|
groupTimerId = setTimeout(function () {
|
|
groupTimerId = null;
|
|
|
|
_shiny2["default"].onInputChange(map.id + "_groups", map.layerManager.getVisibleGroups());
|
|
}, 100);
|
|
}
|
|
});
|
|
}
|
|
|
|
this.doRenderValue(data, map);
|
|
},
|
|
doRenderValue: function doRenderValue(data, map) {
|
|
// Leaflet does not behave well when you set up a bunch of layers when
|
|
// the map is not visible (width/height == 0). Popups get misaligned
|
|
// relative to their owning markers, and the fitBounds calculations
|
|
// are off. Therefore we wait until the map is actually showing to
|
|
// render the value (we rely on the resize() callback being invoked
|
|
// at the appropriate time).
|
|
if (el.offsetWidth === 0 || el.offsetHeight === 0) {
|
|
map.leafletr.pendingRenderData = data;
|
|
return;
|
|
}
|
|
|
|
map.leafletr.pendingRenderData = null; // Merge data options into defaults
|
|
|
|
var options = _jquery2["default"].extend({
|
|
zoomToLimits: "always"
|
|
}, data.options);
|
|
|
|
if (!map.layerManager) {
|
|
map.controls = new _controlStore2["default"](map);
|
|
map.layerManager = new _layerManager2["default"](map);
|
|
} else {
|
|
map.controls.clear();
|
|
map.layerManager.clear();
|
|
}
|
|
|
|
var explicitView = false;
|
|
|
|
if (data.setView) {
|
|
explicitView = true;
|
|
map.setView.apply(map, data.setView);
|
|
}
|
|
|
|
if (data.fitBounds) {
|
|
explicitView = true;
|
|
methods.fitBounds.apply(map, data.fitBounds);
|
|
}
|
|
|
|
if (data.flyTo) {
|
|
if (!explicitView && !map.leafletr.hasRendered) {
|
|
// must be done to give a initial starting point
|
|
map.fitWorld();
|
|
}
|
|
|
|
explicitView = true;
|
|
map.flyTo.apply(map, data.flyTo);
|
|
}
|
|
|
|
if (data.flyToBounds) {
|
|
if (!explicitView && !map.leafletr.hasRendered) {
|
|
// must be done to give a initial starting point
|
|
map.fitWorld();
|
|
}
|
|
|
|
explicitView = true;
|
|
methods.flyToBounds.apply(map, data.flyToBounds);
|
|
}
|
|
|
|
if (data.options.center) {
|
|
explicitView = true;
|
|
} // Returns true if the zoomToLimits option says that the map should be
|
|
// zoomed to map elements.
|
|
|
|
|
|
function needsZoom() {
|
|
return options.zoomToLimits === "always" || options.zoomToLimits === "first" && !map.leafletr.hasRendered;
|
|
}
|
|
|
|
if (!explicitView && needsZoom() && !map.getZoom()) {
|
|
if (data.limits && !_jquery2["default"].isEmptyObject(data.limits)) {
|
|
// Use the natural limits of what's being drawn on the map
|
|
// If the size of the bounding box is 0, leaflet gets all weird
|
|
var pad = 0.006;
|
|
|
|
if (data.limits.lat[0] === data.limits.lat[1]) {
|
|
data.limits.lat[0] = data.limits.lat[0] - pad;
|
|
data.limits.lat[1] = data.limits.lat[1] + pad;
|
|
}
|
|
|
|
if (data.limits.lng[0] === data.limits.lng[1]) {
|
|
data.limits.lng[0] = data.limits.lng[0] - pad;
|
|
data.limits.lng[1] = data.limits.lng[1] + pad;
|
|
}
|
|
|
|
map.fitBounds([[data.limits.lat[0], data.limits.lng[0]], [data.limits.lat[1], data.limits.lng[1]]]);
|
|
} else {
|
|
map.fitWorld();
|
|
}
|
|
}
|
|
|
|
for (var i = 0; data.calls && i < data.calls.length; i++) {
|
|
var call = data.calls[i];
|
|
if (methods[call.method]) methods[call.method].apply(map, call.args);else (0, _util.log)("Unknown method " + call.method);
|
|
}
|
|
|
|
map.leafletr.hasRendered = true;
|
|
|
|
if (_htmlwidgets2["default"].shinyMode) {
|
|
setTimeout(function () {
|
|
updateBounds(map);
|
|
}, 1);
|
|
}
|
|
},
|
|
resize: function resize(width, height) {
|
|
if (map) {
|
|
map.invalidateSize();
|
|
|
|
if (map.leafletr.pendingRenderData) {
|
|
this.doRenderValue(map.leafletr.pendingRenderData, map);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
});
|
|
|
|
if (_htmlwidgets2["default"].shinyMode) {
|
|
_shiny2["default"].addCustomMessageHandler("leaflet-calls", function (data) {
|
|
var id = data.id;
|
|
var el = document.getElementById(id);
|
|
var map = el ? (0, _jquery2["default"])(el).data("leaflet-map") : null;
|
|
|
|
if (!map) {
|
|
(0, _util.log)("Couldn't find map with id " + id);
|
|
return;
|
|
} // If the map has not rendered, stash the proposed `leafletProxy()` calls
|
|
// in `pendingRenderData.calls` to be run on display via `doRenderValue()`.
|
|
// This is necessary if the map has not been rendered.
|
|
// If new pendingRenderData is set via a new `leaflet()`, the previous calls will be discarded.
|
|
|
|
|
|
if (!map.leafletr.hasRendered) {
|
|
map.leafletr.pendingRenderData.calls = map.leafletr.pendingRenderData.calls.concat(data.calls);
|
|
return;
|
|
}
|
|
|
|
for (var i = 0; i < data.calls.length; i++) {
|
|
var call = data.calls[i];
|
|
var args = call.args;
|
|
|
|
for (var _i = 0; _i < call.evals.length; _i++) {
|
|
window.HTMLWidgets.evaluateStringMember(args, call.evals[_i]);
|
|
}
|
|
|
|
if (call.dependencies) {
|
|
_shiny2["default"].renderDependencies(call.dependencies);
|
|
}
|
|
|
|
if (methods[call.method]) methods[call.method].apply(map, args);else (0, _util.log)("Unknown method " + call.method);
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
},{"./cluster-layer-store":1,"./control-store":2,"./crs_utils":3,"./dataframe":4,"./fixup-default-icon":5,"./fixup-default-tooltip":6,"./fixup-url-protocol":7,"./global/htmlwidgets":8,"./global/jquery":9,"./global/leaflet":10,"./global/shiny":12,"./layer-manager":14,"./methods":15,"./util":17}],14:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = undefined;
|
|
|
|
var _jquery = require("./global/jquery");
|
|
|
|
var _jquery2 = _interopRequireDefault(_jquery);
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
var _util = require("./util");
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
var LayerManager = /*#__PURE__*/function () {
|
|
function LayerManager(map) {
|
|
_classCallCheck(this, LayerManager);
|
|
|
|
this._map = map; // BEGIN layer indices
|
|
// {<groupname>: {<stamp>: layer}}
|
|
|
|
this._byGroup = {}; // {<categoryName>: {<stamp>: layer}}
|
|
|
|
this._byCategory = {}; // {<categoryName_layerId>: layer}
|
|
|
|
this._byLayerId = {}; // {<stamp>: {
|
|
// "group": <groupname>,
|
|
// "layerId": <layerId>,
|
|
// "category": <category>,
|
|
// "container": <container>
|
|
// }
|
|
// }
|
|
|
|
this._byStamp = {}; // {<crosstalkGroupName>: {<key>: [<stamp>, <stamp>, ...], ...}}
|
|
|
|
this._byCrosstalkGroup = {}; // END layer indices
|
|
// {<categoryName>: L.layerGroup}
|
|
|
|
this._categoryContainers = {}; // {<groupName>: L.layerGroup}
|
|
|
|
this._groupContainers = {};
|
|
}
|
|
|
|
_createClass(LayerManager, [{
|
|
key: "addLayer",
|
|
value: function addLayer(layer, category, layerId, group, ctGroup, ctKey) {
|
|
var _this = this;
|
|
|
|
// Was a group provided?
|
|
var hasId = typeof layerId === "string";
|
|
var grouped = typeof group === "string";
|
|
var stamp = _leaflet2["default"].Util.stamp(layer) + ""; // This will be the default layer group to add the layer to.
|
|
// We may overwrite this let before using it (i.e. if a group is assigned).
|
|
// This one liner creates the _categoryContainers[category] entry if it
|
|
// doesn't already exist.
|
|
|
|
var container = this._categoryContainers[category] = this._categoryContainers[category] || _leaflet2["default"].layerGroup().addTo(this._map);
|
|
|
|
var oldLayer = null;
|
|
|
|
if (hasId) {
|
|
// First, remove any layer with the same category and layerId
|
|
var prefixedLayerId = this._layerIdKey(category, layerId);
|
|
|
|
oldLayer = this._byLayerId[prefixedLayerId];
|
|
|
|
if (oldLayer) {
|
|
this._removeLayer(oldLayer);
|
|
} // Update layerId index
|
|
|
|
|
|
this._byLayerId[prefixedLayerId] = layer;
|
|
} // Update group index
|
|
|
|
|
|
if (grouped) {
|
|
this._byGroup[group] = this._byGroup[group] || {};
|
|
this._byGroup[group][stamp] = layer; // Since a group is assigned, don't add the layer to the category's layer
|
|
// group; instead, use the group's layer group.
|
|
// This one liner creates the _groupContainers[group] entry if it doesn't
|
|
// already exist.
|
|
|
|
container = this.getLayerGroup(group, true);
|
|
} // Update category index
|
|
|
|
|
|
this._byCategory[category] = this._byCategory[category] || {};
|
|
this._byCategory[category][stamp] = layer; // Update stamp index
|
|
|
|
var layerInfo = this._byStamp[stamp] = {
|
|
layer: layer,
|
|
group: group,
|
|
ctGroup: ctGroup,
|
|
ctKey: ctKey,
|
|
layerId: layerId,
|
|
category: category,
|
|
container: container,
|
|
hidden: false
|
|
}; // Update crosstalk group index
|
|
|
|
if (ctGroup) {
|
|
if (layer.setStyle) {
|
|
// Need to save this info so we know what to set opacity to later
|
|
layer.options.origOpacity = typeof layer.options.opacity !== "undefined" ? layer.options.opacity : 0.5;
|
|
layer.options.origFillOpacity = typeof layer.options.fillOpacity !== "undefined" ? layer.options.fillOpacity : 0.2;
|
|
}
|
|
|
|
var ctg = this._byCrosstalkGroup[ctGroup];
|
|
|
|
if (!ctg) {
|
|
ctg = this._byCrosstalkGroup[ctGroup] = {};
|
|
var crosstalk = global.crosstalk;
|
|
|
|
var handleFilter = function handleFilter(e) {
|
|
if (!e.value) {
|
|
var groupKeys = Object.keys(ctg);
|
|
|
|
for (var i = 0; i < groupKeys.length; i++) {
|
|
var key = groupKeys[i];
|
|
var _layerInfo = _this._byStamp[ctg[key]];
|
|
|
|
_this._setVisibility(_layerInfo, true);
|
|
}
|
|
} else {
|
|
var selectedKeys = {};
|
|
|
|
for (var _i = 0; _i < e.value.length; _i++) {
|
|
selectedKeys[e.value[_i]] = true;
|
|
}
|
|
|
|
var _groupKeys = Object.keys(ctg);
|
|
|
|
for (var _i2 = 0; _i2 < _groupKeys.length; _i2++) {
|
|
var _key = _groupKeys[_i2];
|
|
var _layerInfo2 = _this._byStamp[ctg[_key]];
|
|
|
|
_this._setVisibility(_layerInfo2, selectedKeys[_groupKeys[_i2]]);
|
|
}
|
|
}
|
|
};
|
|
|
|
var filterHandle = new crosstalk.FilterHandle(ctGroup);
|
|
filterHandle.on("change", handleFilter);
|
|
|
|
var handleSelection = function handleSelection(e) {
|
|
if (!e.value || !e.value.length) {
|
|
var groupKeys = Object.keys(ctg);
|
|
|
|
for (var i = 0; i < groupKeys.length; i++) {
|
|
var key = groupKeys[i];
|
|
var _layerInfo3 = _this._byStamp[ctg[key]];
|
|
|
|
_this._setOpacity(_layerInfo3, 1.0);
|
|
}
|
|
} else {
|
|
var selectedKeys = {};
|
|
|
|
for (var _i3 = 0; _i3 < e.value.length; _i3++) {
|
|
selectedKeys[e.value[_i3]] = true;
|
|
}
|
|
|
|
var _groupKeys2 = Object.keys(ctg);
|
|
|
|
for (var _i4 = 0; _i4 < _groupKeys2.length; _i4++) {
|
|
var _key2 = _groupKeys2[_i4];
|
|
var _layerInfo4 = _this._byStamp[ctg[_key2]];
|
|
|
|
_this._setOpacity(_layerInfo4, selectedKeys[_groupKeys2[_i4]] ? 1.0 : 0.2);
|
|
}
|
|
}
|
|
};
|
|
|
|
var selHandle = new crosstalk.SelectionHandle(ctGroup);
|
|
selHandle.on("change", handleSelection);
|
|
setTimeout(function () {
|
|
handleFilter({
|
|
value: filterHandle.filteredKeys
|
|
});
|
|
handleSelection({
|
|
value: selHandle.value
|
|
});
|
|
}, 100);
|
|
}
|
|
|
|
if (!ctg[ctKey]) ctg[ctKey] = [];
|
|
ctg[ctKey].push(stamp);
|
|
} // Add to container
|
|
|
|
|
|
if (!layerInfo.hidden) container.addLayer(layer);
|
|
return oldLayer;
|
|
}
|
|
}, {
|
|
key: "brush",
|
|
value: function brush(bounds, extraInfo) {
|
|
var _this2 = this;
|
|
|
|
/* eslint-disable no-console */
|
|
// For each Crosstalk group...
|
|
Object.keys(this._byCrosstalkGroup).forEach(function (ctGroupName) {
|
|
var ctg = _this2._byCrosstalkGroup[ctGroupName];
|
|
var selection = []; // ...iterate over each Crosstalk key (each of which may have multiple
|
|
// layers)...
|
|
|
|
Object.keys(ctg).forEach(function (ctKey) {
|
|
// ...and for each layer...
|
|
ctg[ctKey].forEach(function (stamp) {
|
|
var layerInfo = _this2._byStamp[stamp]; // ...if it's something with a point...
|
|
|
|
if (layerInfo.layer.getLatLng) {
|
|
// ... and it's inside the selection bounds...
|
|
// TODO: Use pixel containment, not lat/lng containment
|
|
if (bounds.contains(layerInfo.layer.getLatLng())) {
|
|
// ...add the key to the selection.
|
|
selection.push(ctKey);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
new global.crosstalk.SelectionHandle(ctGroupName).set(selection, extraInfo);
|
|
});
|
|
}
|
|
}, {
|
|
key: "unbrush",
|
|
value: function unbrush(extraInfo) {
|
|
Object.keys(this._byCrosstalkGroup).forEach(function (ctGroupName) {
|
|
new global.crosstalk.SelectionHandle(ctGroupName).clear(extraInfo);
|
|
});
|
|
}
|
|
}, {
|
|
key: "_setVisibility",
|
|
value: function _setVisibility(layerInfo, visible) {
|
|
if (layerInfo.hidden ^ visible) {
|
|
return;
|
|
} else if (visible) {
|
|
layerInfo.container.addLayer(layerInfo.layer);
|
|
layerInfo.hidden = false;
|
|
} else {
|
|
layerInfo.container.removeLayer(layerInfo.layer);
|
|
layerInfo.hidden = true;
|
|
}
|
|
}
|
|
}, {
|
|
key: "_setOpacity",
|
|
value: function _setOpacity(layerInfo, opacity) {
|
|
if (layerInfo.layer.setOpacity) {
|
|
layerInfo.layer.setOpacity(opacity);
|
|
} else if (layerInfo.layer.setStyle) {
|
|
layerInfo.layer.setStyle({
|
|
opacity: opacity * layerInfo.layer.options.origOpacity,
|
|
fillOpacity: opacity * layerInfo.layer.options.origFillOpacity
|
|
});
|
|
}
|
|
}
|
|
}, {
|
|
key: "getLayer",
|
|
value: function getLayer(category, layerId) {
|
|
return this._byLayerId[this._layerIdKey(category, layerId)];
|
|
}
|
|
}, {
|
|
key: "removeLayer",
|
|
value: function removeLayer(category, layerIds) {
|
|
var _this3 = this;
|
|
|
|
// Find layer info
|
|
_jquery2["default"].each((0, _util.asArray)(layerIds), function (i, layerId) {
|
|
var layer = _this3._byLayerId[_this3._layerIdKey(category, layerId)];
|
|
|
|
if (layer) {
|
|
_this3._removeLayer(layer);
|
|
}
|
|
});
|
|
}
|
|
}, {
|
|
key: "clearLayers",
|
|
value: function clearLayers(category) {
|
|
var _this4 = this;
|
|
|
|
// Find all layers in _byCategory[category]
|
|
var catTable = this._byCategory[category];
|
|
|
|
if (!catTable) {
|
|
return false;
|
|
} // Remove all layers. Make copy of keys to avoid mutating the collection
|
|
// behind the iterator you're accessing.
|
|
|
|
|
|
var stamps = [];
|
|
|
|
_jquery2["default"].each(catTable, function (k, v) {
|
|
stamps.push(k);
|
|
});
|
|
|
|
_jquery2["default"].each(stamps, function (i, stamp) {
|
|
_this4._removeLayer(stamp);
|
|
});
|
|
}
|
|
}, {
|
|
key: "getLayerGroup",
|
|
value: function getLayerGroup(group, ensureExists) {
|
|
var g = this._groupContainers[group];
|
|
|
|
if (ensureExists && !g) {
|
|
this._byGroup[group] = this._byGroup[group] || {};
|
|
g = this._groupContainers[group] = _leaflet2["default"].featureGroup();
|
|
g.groupname = group;
|
|
g.addTo(this._map);
|
|
}
|
|
|
|
return g;
|
|
}
|
|
}, {
|
|
key: "getGroupNameFromLayerGroup",
|
|
value: function getGroupNameFromLayerGroup(layerGroup) {
|
|
return layerGroup.groupname;
|
|
}
|
|
}, {
|
|
key: "getVisibleGroups",
|
|
value: function getVisibleGroups() {
|
|
var _this5 = this;
|
|
|
|
var result = [];
|
|
|
|
_jquery2["default"].each(this._groupContainers, function (k, v) {
|
|
if (_this5._map.hasLayer(v)) {
|
|
result.push(k);
|
|
}
|
|
});
|
|
|
|
return result;
|
|
}
|
|
}, {
|
|
key: "getAllGroupNames",
|
|
value: function getAllGroupNames() {
|
|
var result = [];
|
|
|
|
_jquery2["default"].each(this._groupContainers, function (k, v) {
|
|
result.push(k);
|
|
});
|
|
|
|
return result;
|
|
}
|
|
}, {
|
|
key: "clearGroup",
|
|
value: function clearGroup(group) {
|
|
var _this6 = this;
|
|
|
|
// Find all layers in _byGroup[group]
|
|
var groupTable = this._byGroup[group];
|
|
|
|
if (!groupTable) {
|
|
return false;
|
|
} // Remove all layers. Make copy of keys to avoid mutating the collection
|
|
// behind the iterator you're accessing.
|
|
|
|
|
|
var stamps = [];
|
|
|
|
_jquery2["default"].each(groupTable, function (k, v) {
|
|
stamps.push(k);
|
|
});
|
|
|
|
_jquery2["default"].each(stamps, function (i, stamp) {
|
|
_this6._removeLayer(stamp);
|
|
});
|
|
}
|
|
}, {
|
|
key: "clear",
|
|
value: function clear() {
|
|
function clearLayerGroup(key, layerGroup) {
|
|
layerGroup.clearLayers();
|
|
} // Clear all indices and layerGroups
|
|
|
|
|
|
this._byGroup = {};
|
|
this._byCategory = {};
|
|
this._byLayerId = {};
|
|
this._byStamp = {};
|
|
this._byCrosstalkGroup = {};
|
|
|
|
_jquery2["default"].each(this._categoryContainers, clearLayerGroup);
|
|
|
|
this._categoryContainers = {};
|
|
|
|
_jquery2["default"].each(this._groupContainers, clearLayerGroup);
|
|
|
|
this._groupContainers = {};
|
|
}
|
|
}, {
|
|
key: "_removeLayer",
|
|
value: function _removeLayer(layer) {
|
|
var stamp;
|
|
|
|
if (typeof layer === "string") {
|
|
stamp = layer;
|
|
} else {
|
|
stamp = _leaflet2["default"].Util.stamp(layer);
|
|
}
|
|
|
|
var layerInfo = this._byStamp[stamp];
|
|
|
|
if (!layerInfo) {
|
|
return false;
|
|
}
|
|
|
|
layerInfo.container.removeLayer(stamp);
|
|
|
|
if (typeof layerInfo.group === "string") {
|
|
delete this._byGroup[layerInfo.group][stamp];
|
|
}
|
|
|
|
if (typeof layerInfo.layerId === "string") {
|
|
delete this._byLayerId[this._layerIdKey(layerInfo.category, layerInfo.layerId)];
|
|
}
|
|
|
|
delete this._byCategory[layerInfo.category][stamp];
|
|
delete this._byStamp[stamp];
|
|
|
|
if (layerInfo.ctGroup) {
|
|
var ctGroup = this._byCrosstalkGroup[layerInfo.ctGroup];
|
|
var layersForKey = ctGroup[layerInfo.ctKey];
|
|
var idx = layersForKey ? layersForKey.indexOf(stamp) : -1;
|
|
|
|
if (idx >= 0) {
|
|
if (layersForKey.length === 1) {
|
|
delete ctGroup[layerInfo.ctKey];
|
|
} else {
|
|
layersForKey.splice(idx, 1);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}, {
|
|
key: "_layerIdKey",
|
|
value: function _layerIdKey(category, layerId) {
|
|
return category + "\n" + layerId;
|
|
}
|
|
}]);
|
|
|
|
return LayerManager;
|
|
}();
|
|
|
|
exports["default"] = LayerManager;
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{"./global/jquery":9,"./global/leaflet":10,"./util":17}],15:[function(require,module,exports){
|
|
(function (global){(function (){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
var _jquery = require("./global/jquery");
|
|
|
|
var _jquery2 = _interopRequireDefault(_jquery);
|
|
|
|
var _leaflet = require("./global/leaflet");
|
|
|
|
var _leaflet2 = _interopRequireDefault(_leaflet);
|
|
|
|
var _shiny = require("./global/shiny");
|
|
|
|
var _shiny2 = _interopRequireDefault(_shiny);
|
|
|
|
var _htmlwidgets = require("./global/htmlwidgets");
|
|
|
|
var _htmlwidgets2 = _interopRequireDefault(_htmlwidgets);
|
|
|
|
var _util = require("./util");
|
|
|
|
var _crs_utils = require("./crs_utils");
|
|
|
|
var _dataframe = require("./dataframe");
|
|
|
|
var _dataframe2 = _interopRequireDefault(_dataframe);
|
|
|
|
var _clusterLayerStore = require("./cluster-layer-store");
|
|
|
|
var _clusterLayerStore2 = _interopRequireDefault(_clusterLayerStore);
|
|
|
|
var _mipmapper = require("./mipmapper");
|
|
|
|
var _mipmapper2 = _interopRequireDefault(_mipmapper);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
var methods = {};
|
|
exports["default"] = methods;
|
|
|
|
function mouseHandler(mapId, layerId, group, eventName, extraInfo) {
|
|
return function (e) {
|
|
if (!_htmlwidgets2["default"].shinyMode) return;
|
|
var latLng = e.target.getLatLng ? e.target.getLatLng() : e.latlng;
|
|
|
|
if (latLng) {
|
|
// retrieve only lat, lon values to remove prototype
|
|
// and extra parameters added by 3rd party modules
|
|
// these objects are for json serialization, not javascript
|
|
var latLngVal = _leaflet2["default"].latLng(latLng); // make sure it has consistent shape
|
|
|
|
|
|
latLng = {
|
|
lat: latLngVal.lat,
|
|
lng: latLngVal.lng
|
|
};
|
|
}
|
|
|
|
var eventInfo = _jquery2["default"].extend({
|
|
id: layerId,
|
|
".nonce": Math.random() // force reactivity
|
|
|
|
}, group !== null ? {
|
|
group: group
|
|
} : null, latLng, extraInfo);
|
|
|
|
_shiny2["default"].onInputChange(mapId + "_" + eventName, eventInfo);
|
|
};
|
|
}
|
|
|
|
methods.mouseHandler = mouseHandler;
|
|
|
|
methods.clearGroup = function (group) {
|
|
var _this = this;
|
|
|
|
_jquery2["default"].each((0, _util.asArray)(group), function (i, v) {
|
|
_this.layerManager.clearGroup(v);
|
|
});
|
|
};
|
|
|
|
methods.setView = function (center, zoom, options) {
|
|
this.setView(center, zoom, options);
|
|
};
|
|
|
|
methods.fitBounds = function (lat1, lng1, lat2, lng2, options) {
|
|
this.fitBounds([[lat1, lng1], [lat2, lng2]], options);
|
|
};
|
|
|
|
methods.flyTo = function (center, zoom, options) {
|
|
this.flyTo(center, zoom, options);
|
|
};
|
|
|
|
methods.flyToBounds = function (lat1, lng1, lat2, lng2, options) {
|
|
this.flyToBounds([[lat1, lng1], [lat2, lng2]], options);
|
|
};
|
|
|
|
methods.setMaxBounds = function (lat1, lng1, lat2, lng2) {
|
|
this.setMaxBounds([[lat1, lng1], [lat2, lng2]]);
|
|
};
|
|
|
|
methods.addPopups = function (lat, lng, popup, layerId, group, options) {
|
|
var _this2 = this;
|
|
|
|
var df = new _dataframe2["default"]().col("lat", lat).col("lng", lng).col("popup", popup).col("layerId", layerId).col("group", group).cbind(options);
|
|
|
|
var _loop = function _loop(i) {
|
|
if (_jquery2["default"].isNumeric(df.get(i, "lat")) && _jquery2["default"].isNumeric(df.get(i, "lng"))) {
|
|
(function () {
|
|
var popup = _leaflet2["default"].popup(df.get(i)).setLatLng([df.get(i, "lat"), df.get(i, "lng")]).setContent(df.get(i, "popup"));
|
|
|
|
var thisId = df.get(i, "layerId");
|
|
var thisGroup = df.get(i, "group");
|
|
this.layerManager.addLayer(popup, "popup", thisId, thisGroup);
|
|
}).call(_this2);
|
|
}
|
|
};
|
|
|
|
for (var i = 0; i < df.nrow(); i++) {
|
|
_loop(i);
|
|
}
|
|
};
|
|
|
|
methods.removePopup = function (layerId) {
|
|
this.layerManager.removeLayer("popup", layerId);
|
|
};
|
|
|
|
methods.clearPopups = function () {
|
|
this.layerManager.clearLayers("popup");
|
|
};
|
|
|
|
methods.addTiles = function (urlTemplate, layerId, group, options) {
|
|
this.layerManager.addLayer(_leaflet2["default"].tileLayer(urlTemplate, options), "tile", layerId, group);
|
|
};
|
|
|
|
methods.removeTiles = function (layerId) {
|
|
this.layerManager.removeLayer("tile", layerId);
|
|
};
|
|
|
|
methods.clearTiles = function () {
|
|
this.layerManager.clearLayers("tile");
|
|
};
|
|
|
|
methods.addWMSTiles = function (baseUrl, layerId, group, options) {
|
|
if (options && options.crs) {
|
|
options.crs = (0, _crs_utils.getCRS)(options.crs);
|
|
}
|
|
|
|
this.layerManager.addLayer(_leaflet2["default"].tileLayer.wms(baseUrl, options), "tile", layerId, group);
|
|
}; // Given:
|
|
// {data: ["a", "b", "c"], index: [0, 1, 0, 2]}
|
|
// returns:
|
|
// ["a", "b", "a", "c"]
|
|
|
|
|
|
function unpackStrings(iconset) {
|
|
if (!iconset) {
|
|
return iconset;
|
|
}
|
|
|
|
if (typeof iconset.index === "undefined") {
|
|
return iconset;
|
|
}
|
|
|
|
iconset.data = (0, _util.asArray)(iconset.data);
|
|
iconset.index = (0, _util.asArray)(iconset.index);
|
|
return _jquery2["default"].map(iconset.index, function (e, i) {
|
|
return iconset.data[e];
|
|
});
|
|
}
|
|
|
|
function addMarkers(map, df, group, clusterOptions, clusterId, markerFunc) {
|
|
(function () {
|
|
var _this3 = this;
|
|
|
|
var clusterGroup = this.layerManager.getLayer("cluster", clusterId),
|
|
cluster = clusterOptions !== null;
|
|
|
|
if (cluster && !clusterGroup) {
|
|
clusterGroup = _leaflet2["default"].markerClusterGroup.layerSupport(clusterOptions);
|
|
|
|
if (clusterOptions.freezeAtZoom) {
|
|
var freezeAtZoom = clusterOptions.freezeAtZoom;
|
|
delete clusterOptions.freezeAtZoom;
|
|
clusterGroup.freezeAtZoom(freezeAtZoom);
|
|
}
|
|
|
|
clusterGroup.clusterLayerStore = new _clusterLayerStore2["default"](clusterGroup);
|
|
}
|
|
|
|
var extraInfo = cluster ? {
|
|
clusterId: clusterId
|
|
} : {};
|
|
|
|
var _loop2 = function _loop2(i) {
|
|
if (_jquery2["default"].isNumeric(df.get(i, "lat")) && _jquery2["default"].isNumeric(df.get(i, "lng"))) {
|
|
(function () {
|
|
var marker = markerFunc(df, i);
|
|
var thisId = df.get(i, "layerId");
|
|
var thisGroup = cluster ? null : df.get(i, "group");
|
|
|
|
if (cluster) {
|
|
clusterGroup.clusterLayerStore.add(marker, thisId);
|
|
} else {
|
|
this.layerManager.addLayer(marker, "marker", thisId, thisGroup, df.get(i, "ctGroup", true), df.get(i, "ctKey", true));
|
|
}
|
|
|
|
var popup = df.get(i, "popup");
|
|
var popupOptions = df.get(i, "popupOptions");
|
|
|
|
if (popup !== null) {
|
|
if (popupOptions !== null) {
|
|
marker.bindPopup(popup, popupOptions);
|
|
} else {
|
|
marker.bindPopup(popup);
|
|
}
|
|
}
|
|
|
|
var label = df.get(i, "label");
|
|
var labelOptions = df.get(i, "labelOptions");
|
|
|
|
if (label !== null) {
|
|
if (labelOptions !== null) {
|
|
if (labelOptions.permanent) {
|
|
marker.bindTooltip(label, labelOptions).openTooltip();
|
|
} else {
|
|
marker.bindTooltip(label, labelOptions);
|
|
}
|
|
} else {
|
|
marker.bindTooltip(label);
|
|
}
|
|
}
|
|
|
|
marker.on("click", mouseHandler(this.id, thisId, thisGroup, "marker_click", extraInfo), this);
|
|
marker.on("mouseover", mouseHandler(this.id, thisId, thisGroup, "marker_mouseover", extraInfo), this);
|
|
marker.on("mouseout", mouseHandler(this.id, thisId, thisGroup, "marker_mouseout", extraInfo), this);
|
|
marker.on("dragend", mouseHandler(this.id, thisId, thisGroup, "marker_dragend", extraInfo), this);
|
|
}).call(_this3);
|
|
}
|
|
};
|
|
|
|
for (var i = 0; i < df.nrow(); i++) {
|
|
_loop2(i);
|
|
}
|
|
|
|
if (cluster) {
|
|
this.layerManager.addLayer(clusterGroup, "cluster", clusterId, group);
|
|
}
|
|
}).call(map);
|
|
}
|
|
|
|
methods.addGenericMarkers = addMarkers;
|
|
|
|
methods.addMarkers = function (lat, lng, icon, layerId, group, options, popup, popupOptions, clusterOptions, clusterId, label, labelOptions, crosstalkOptions) {
|
|
var icondf;
|
|
var getIcon;
|
|
|
|
if (icon) {
|
|
// Unpack icons
|
|
icon.iconUrl = unpackStrings(icon.iconUrl);
|
|
icon.iconRetinaUrl = unpackStrings(icon.iconRetinaUrl);
|
|
icon.shadowUrl = unpackStrings(icon.shadowUrl);
|
|
icon.shadowRetinaUrl = unpackStrings(icon.shadowRetinaUrl); // This cbinds the icon URLs and any other icon options; they're all
|
|
// present on the icon object.
|
|
|
|
icondf = new _dataframe2["default"]().cbind(icon); // Constructs an icon from a specified row of the icon dataframe.
|
|
|
|
getIcon = function getIcon(i) {
|
|
var opts = icondf.get(i);
|
|
|
|
if (!opts.iconUrl) {
|
|
return new _leaflet2["default"].Icon.Default();
|
|
} // Composite options (like points or sizes) are passed from R with each
|
|
// individual component as its own option. We need to combine them now
|
|
// into their composite form.
|
|
|
|
|
|
if (opts.iconWidth) {
|
|
opts.iconSize = [opts.iconWidth, opts.iconHeight];
|
|
}
|
|
|
|
if (opts.shadowWidth) {
|
|
opts.shadowSize = [opts.shadowWidth, opts.shadowHeight];
|
|
}
|
|
|
|
if (opts.iconAnchorX) {
|
|
opts.iconAnchor = [opts.iconAnchorX, opts.iconAnchorY];
|
|
}
|
|
|
|
if (opts.shadowAnchorX) {
|
|
opts.shadowAnchor = [opts.shadowAnchorX, opts.shadowAnchorY];
|
|
}
|
|
|
|
if (opts.popupAnchorX) {
|
|
opts.popupAnchor = [opts.popupAnchorX, opts.popupAnchorY];
|
|
}
|
|
|
|
return new _leaflet2["default"].Icon(opts);
|
|
};
|
|
}
|
|
|
|
if (!(_jquery2["default"].isEmptyObject(lat) || _jquery2["default"].isEmptyObject(lng)) || _jquery2["default"].isNumeric(lat) && _jquery2["default"].isNumeric(lng)) {
|
|
var df = new _dataframe2["default"]().col("lat", lat).col("lng", lng).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).cbind(options).cbind(crosstalkOptions || {});
|
|
if (icon) icondf.effectiveLength = df.nrow();
|
|
addMarkers(this, df, group, clusterOptions, clusterId, function (df, i) {
|
|
var options = df.get(i);
|
|
if (icon) options.icon = getIcon(i);
|
|
return _leaflet2["default"].marker([df.get(i, "lat"), df.get(i, "lng")], options);
|
|
});
|
|
}
|
|
};
|
|
|
|
methods.addAwesomeMarkers = function (lat, lng, icon, layerId, group, options, popup, popupOptions, clusterOptions, clusterId, label, labelOptions, crosstalkOptions) {
|
|
var icondf;
|
|
var getIcon;
|
|
|
|
if (icon) {
|
|
// This cbinds the icon URLs and any other icon options; they're all
|
|
// present on the icon object.
|
|
icondf = new _dataframe2["default"]().cbind(icon); // Constructs an icon from a specified row of the icon dataframe.
|
|
|
|
getIcon = function getIcon(i) {
|
|
var opts = icondf.get(i);
|
|
|
|
if (!opts) {
|
|
return new _leaflet2["default"].AwesomeMarkers.icon();
|
|
}
|
|
|
|
if (opts.squareMarker) {
|
|
opts.className = "awesome-marker awesome-marker-square";
|
|
}
|
|
|
|
return new _leaflet2["default"].AwesomeMarkers.icon(opts);
|
|
};
|
|
}
|
|
|
|
if (!(_jquery2["default"].isEmptyObject(lat) || _jquery2["default"].isEmptyObject(lng)) || _jquery2["default"].isNumeric(lat) && _jquery2["default"].isNumeric(lng)) {
|
|
var df = new _dataframe2["default"]().col("lat", lat).col("lng", lng).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).cbind(options).cbind(crosstalkOptions || {});
|
|
if (icon) icondf.effectiveLength = df.nrow();
|
|
addMarkers(this, df, group, clusterOptions, clusterId, function (df, i) {
|
|
var options = df.get(i);
|
|
if (icon) options.icon = getIcon(i);
|
|
return _leaflet2["default"].marker([df.get(i, "lat"), df.get(i, "lng")], options);
|
|
});
|
|
}
|
|
};
|
|
|
|
function addLayers(map, category, df, layerFunc) {
|
|
var _loop3 = function _loop3(i) {
|
|
(function () {
|
|
var layer = layerFunc(df, i);
|
|
|
|
if (!_jquery2["default"].isEmptyObject(layer)) {
|
|
var thisId = df.get(i, "layerId");
|
|
var thisGroup = df.get(i, "group");
|
|
this.layerManager.addLayer(layer, category, thisId, thisGroup, df.get(i, "ctGroup", true), df.get(i, "ctKey", true));
|
|
|
|
if (layer.bindPopup) {
|
|
var popup = df.get(i, "popup");
|
|
var popupOptions = df.get(i, "popupOptions");
|
|
|
|
if (popup !== null) {
|
|
if (popupOptions !== null) {
|
|
layer.bindPopup(popup, popupOptions);
|
|
} else {
|
|
layer.bindPopup(popup);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (layer.bindTooltip) {
|
|
var label = df.get(i, "label");
|
|
var labelOptions = df.get(i, "labelOptions");
|
|
|
|
if (label !== null) {
|
|
if (labelOptions !== null) {
|
|
layer.bindTooltip(label, labelOptions);
|
|
} else {
|
|
layer.bindTooltip(label);
|
|
}
|
|
}
|
|
}
|
|
|
|
layer.on("click", mouseHandler(this.id, thisId, thisGroup, category + "_click"), this);
|
|
layer.on("mouseover", mouseHandler(this.id, thisId, thisGroup, category + "_mouseover"), this);
|
|
layer.on("mouseout", mouseHandler(this.id, thisId, thisGroup, category + "_mouseout"), this);
|
|
var highlightStyle = df.get(i, "highlightOptions");
|
|
|
|
if (!_jquery2["default"].isEmptyObject(highlightStyle)) {
|
|
var defaultStyle = {};
|
|
|
|
_jquery2["default"].each(highlightStyle, function (k, v) {
|
|
if (k != "bringToFront" && k != "sendToBack") {
|
|
if (df.get(i, k)) {
|
|
defaultStyle[k] = df.get(i, k);
|
|
}
|
|
}
|
|
});
|
|
|
|
layer.on("mouseover", function (e) {
|
|
this.setStyle(highlightStyle);
|
|
|
|
if (highlightStyle.bringToFront) {
|
|
this.bringToFront();
|
|
}
|
|
});
|
|
layer.on("mouseout", function (e) {
|
|
this.setStyle(defaultStyle);
|
|
|
|
if (highlightStyle.sendToBack) {
|
|
this.bringToBack();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}).call(map);
|
|
};
|
|
|
|
for (var i = 0; i < df.nrow(); i++) {
|
|
_loop3(i);
|
|
}
|
|
}
|
|
|
|
methods.addGenericLayers = addLayers;
|
|
|
|
methods.addCircles = function (lat, lng, radius, layerId, group, options, popup, popupOptions, label, labelOptions, highlightOptions, crosstalkOptions) {
|
|
if (!(_jquery2["default"].isEmptyObject(lat) || _jquery2["default"].isEmptyObject(lng)) || _jquery2["default"].isNumeric(lat) && _jquery2["default"].isNumeric(lng)) {
|
|
var df = new _dataframe2["default"]().col("lat", lat).col("lng", lng).col("radius", radius).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).col("highlightOptions", highlightOptions).cbind(options).cbind(crosstalkOptions || {});
|
|
addLayers(this, "shape", df, function (df, i) {
|
|
if (_jquery2["default"].isNumeric(df.get(i, "lat")) && _jquery2["default"].isNumeric(df.get(i, "lng")) && _jquery2["default"].isNumeric(df.get(i, "radius"))) {
|
|
return _leaflet2["default"].circle([df.get(i, "lat"), df.get(i, "lng")], df.get(i, "radius"), df.get(i));
|
|
} else {
|
|
return null;
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
methods.addCircleMarkers = function (lat, lng, radius, layerId, group, options, clusterOptions, clusterId, popup, popupOptions, label, labelOptions, crosstalkOptions) {
|
|
if (!(_jquery2["default"].isEmptyObject(lat) || _jquery2["default"].isEmptyObject(lng)) || _jquery2["default"].isNumeric(lat) && _jquery2["default"].isNumeric(lng)) {
|
|
var df = new _dataframe2["default"]().col("lat", lat).col("lng", lng).col("radius", radius).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).cbind(crosstalkOptions || {}).cbind(options);
|
|
addMarkers(this, df, group, clusterOptions, clusterId, function (df, i) {
|
|
return _leaflet2["default"].circleMarker([df.get(i, "lat"), df.get(i, "lng")], df.get(i));
|
|
});
|
|
}
|
|
};
|
|
/*
|
|
* @param lat Array of arrays of latitude coordinates for polylines
|
|
* @param lng Array of arrays of longitude coordinates for polylines
|
|
*/
|
|
|
|
|
|
methods.addPolylines = function (polygons, layerId, group, options, popup, popupOptions, label, labelOptions, highlightOptions) {
|
|
if (polygons.length > 0) {
|
|
var df = new _dataframe2["default"]().col("shapes", polygons).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).col("highlightOptions", highlightOptions).cbind(options);
|
|
addLayers(this, "shape", df, function (df, i) {
|
|
var shapes = df.get(i, "shapes");
|
|
shapes = shapes.map(function (shape) {
|
|
return _htmlwidgets2["default"].dataframeToD3(shape[0]);
|
|
});
|
|
|
|
if (shapes.length > 1) {
|
|
return _leaflet2["default"].polyline(shapes, df.get(i));
|
|
} else {
|
|
return _leaflet2["default"].polyline(shapes[0], df.get(i));
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
methods.removeMarker = function (layerId) {
|
|
this.layerManager.removeLayer("marker", layerId);
|
|
};
|
|
|
|
methods.clearMarkers = function () {
|
|
this.layerManager.clearLayers("marker");
|
|
};
|
|
|
|
methods.removeMarkerCluster = function (layerId) {
|
|
this.layerManager.removeLayer("cluster", layerId);
|
|
};
|
|
|
|
methods.removeMarkerFromCluster = function (layerId, clusterId) {
|
|
var cluster = this.layerManager.getLayer("cluster", clusterId);
|
|
if (!cluster) return;
|
|
cluster.clusterLayerStore.remove(layerId);
|
|
};
|
|
|
|
methods.clearMarkerClusters = function () {
|
|
this.layerManager.clearLayers("cluster");
|
|
};
|
|
|
|
methods.removeShape = function (layerId) {
|
|
this.layerManager.removeLayer("shape", layerId);
|
|
};
|
|
|
|
methods.clearShapes = function () {
|
|
this.layerManager.clearLayers("shape");
|
|
};
|
|
|
|
methods.addRectangles = function (lat1, lng1, lat2, lng2, layerId, group, options, popup, popupOptions, label, labelOptions, highlightOptions) {
|
|
var df = new _dataframe2["default"]().col("lat1", lat1).col("lng1", lng1).col("lat2", lat2).col("lng2", lng2).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).col("highlightOptions", highlightOptions).cbind(options);
|
|
addLayers(this, "shape", df, function (df, i) {
|
|
if (_jquery2["default"].isNumeric(df.get(i, "lat1")) && _jquery2["default"].isNumeric(df.get(i, "lng1")) && _jquery2["default"].isNumeric(df.get(i, "lat2")) && _jquery2["default"].isNumeric(df.get(i, "lng2"))) {
|
|
return _leaflet2["default"].rectangle([[df.get(i, "lat1"), df.get(i, "lng1")], [df.get(i, "lat2"), df.get(i, "lng2")]], df.get(i));
|
|
} else {
|
|
return null;
|
|
}
|
|
});
|
|
};
|
|
/*
|
|
* @param lat Array of arrays of latitude coordinates for polygons
|
|
* @param lng Array of arrays of longitude coordinates for polygons
|
|
*/
|
|
|
|
|
|
methods.addPolygons = function (polygons, layerId, group, options, popup, popupOptions, label, labelOptions, highlightOptions) {
|
|
if (polygons.length > 0) {
|
|
var df = new _dataframe2["default"]().col("shapes", polygons).col("layerId", layerId).col("group", group).col("popup", popup).col("popupOptions", popupOptions).col("label", label).col("labelOptions", labelOptions).col("highlightOptions", highlightOptions).cbind(options);
|
|
addLayers(this, "shape", df, function (df, i) {
|
|
// This code used to use L.multiPolygon, but that caused
|
|
// double-click on a multipolygon to fail to zoom in on the
|
|
// map. Surprisingly, putting all the rings in a single
|
|
// polygon seems to still work; complicated multipolygons
|
|
// are still rendered correctly.
|
|
var shapes = df.get(i, "shapes").map(function (polygon) {
|
|
return polygon.map(_htmlwidgets2["default"].dataframeToD3);
|
|
}).reduce(function (acc, val) {
|
|
return acc.concat(val);
|
|
}, []);
|
|
return _leaflet2["default"].polygon(shapes, df.get(i));
|
|
});
|
|
}
|
|
};
|
|
|
|
methods.addGeoJSON = function (data, layerId, group, style) {
|
|
// This time, self is actually needed because the callbacks below need
|
|
// to access both the inner and outer senses of "this"
|
|
var self = this;
|
|
|
|
if (typeof data === "string") {
|
|
data = JSON.parse(data);
|
|
}
|
|
|
|
var globalStyle = _jquery2["default"].extend({}, style, data.style || {});
|
|
|
|
var gjlayer = _leaflet2["default"].geoJson(data, {
|
|
style: function style(feature) {
|
|
if (feature.style || feature.properties.style) {
|
|
return _jquery2["default"].extend({}, globalStyle, feature.style, feature.properties.style);
|
|
} else {
|
|
return globalStyle;
|
|
}
|
|
},
|
|
onEachFeature: function onEachFeature(feature, layer) {
|
|
var extraInfo = {
|
|
featureId: feature.id,
|
|
properties: feature.properties
|
|
};
|
|
var popup = feature.properties ? feature.properties.popup : null;
|
|
if (typeof popup !== "undefined" && popup !== null) layer.bindPopup(popup);
|
|
layer.on("click", mouseHandler(self.id, layerId, group, "geojson_click", extraInfo), this);
|
|
layer.on("mouseover", mouseHandler(self.id, layerId, group, "geojson_mouseover", extraInfo), this);
|
|
layer.on("mouseout", mouseHandler(self.id, layerId, group, "geojson_mouseout", extraInfo), this);
|
|
}
|
|
});
|
|
|
|
this.layerManager.addLayer(gjlayer, "geojson", layerId, group);
|
|
};
|
|
|
|
methods.removeGeoJSON = function (layerId) {
|
|
this.layerManager.removeLayer("geojson", layerId);
|
|
};
|
|
|
|
methods.clearGeoJSON = function () {
|
|
this.layerManager.clearLayers("geojson");
|
|
};
|
|
|
|
methods.addTopoJSON = function (data, layerId, group, style) {
|
|
// This time, self is actually needed because the callbacks below need
|
|
// to access both the inner and outer senses of "this"
|
|
var self = this;
|
|
|
|
if (typeof data === "string") {
|
|
data = JSON.parse(data);
|
|
}
|
|
|
|
var globalStyle = _jquery2["default"].extend({}, style, data.style || {});
|
|
|
|
var gjlayer = _leaflet2["default"].geoJson(null, {
|
|
style: function style(feature) {
|
|
if (feature.style || feature.properties.style) {
|
|
return _jquery2["default"].extend({}, globalStyle, feature.style, feature.properties.style);
|
|
} else {
|
|
return globalStyle;
|
|
}
|
|
},
|
|
onEachFeature: function onEachFeature(feature, layer) {
|
|
var extraInfo = {
|
|
featureId: feature.id,
|
|
properties: feature.properties
|
|
};
|
|
var popup = feature.properties.popup;
|
|
if (typeof popup !== "undefined" && popup !== null) layer.bindPopup(popup);
|
|
layer.on("click", mouseHandler(self.id, layerId, group, "topojson_click", extraInfo), this);
|
|
layer.on("mouseover", mouseHandler(self.id, layerId, group, "topojson_mouseover", extraInfo), this);
|
|
layer.on("mouseout", mouseHandler(self.id, layerId, group, "topojson_mouseout", extraInfo), this);
|
|
}
|
|
});
|
|
|
|
global.omnivore.topojson.parse(data, null, gjlayer);
|
|
this.layerManager.addLayer(gjlayer, "topojson", layerId, group);
|
|
};
|
|
|
|
methods.removeTopoJSON = function (layerId) {
|
|
this.layerManager.removeLayer("topojson", layerId);
|
|
};
|
|
|
|
methods.clearTopoJSON = function () {
|
|
this.layerManager.clearLayers("topojson");
|
|
};
|
|
|
|
methods.addControl = function (html, position, layerId, classes) {
|
|
function onAdd(map) {
|
|
var div = _leaflet2["default"].DomUtil.create("div", classes);
|
|
|
|
if (typeof layerId !== "undefined" && layerId !== null) {
|
|
div.setAttribute("id", layerId);
|
|
}
|
|
|
|
this._div = div; // It's possible for window.Shiny to be true but Shiny.initializeInputs to
|
|
// not be, when a static leaflet widget is included as part of the shiny
|
|
// UI directly (not through leafletOutput or uiOutput). In this case we
|
|
// don't do the normal Shiny stuff as that will all happen when Shiny
|
|
// itself loads and binds the entire doc.
|
|
|
|
if (window.Shiny && _shiny2["default"].initializeInputs) {
|
|
_shiny2["default"].renderHtml(html, this._div);
|
|
|
|
_shiny2["default"].initializeInputs(this._div);
|
|
|
|
_shiny2["default"].bindAll(this._div);
|
|
} else {
|
|
this._div.innerHTML = html;
|
|
}
|
|
|
|
return this._div;
|
|
}
|
|
|
|
function onRemove(map) {
|
|
if (window.Shiny && _shiny2["default"].unbindAll) {
|
|
_shiny2["default"].unbindAll(this._div);
|
|
}
|
|
}
|
|
|
|
var Control = _leaflet2["default"].Control.extend({
|
|
options: {
|
|
position: position
|
|
},
|
|
onAdd: onAdd,
|
|
onRemove: onRemove
|
|
});
|
|
|
|
this.controls.add(new Control(), layerId, html);
|
|
};
|
|
|
|
methods.addCustomControl = function (control, layerId) {
|
|
this.controls.add(control, layerId);
|
|
};
|
|
|
|
methods.removeControl = function (layerId) {
|
|
this.controls.remove(layerId);
|
|
};
|
|
|
|
methods.getControl = function (layerId) {
|
|
this.controls.get(layerId);
|
|
};
|
|
|
|
methods.clearControls = function () {
|
|
this.controls.clear();
|
|
};
|
|
|
|
methods.addLegend = function (options) {
|
|
var legend = _leaflet2["default"].control({
|
|
position: options.position
|
|
});
|
|
|
|
var gradSpan;
|
|
|
|
legend.onAdd = function (map) {
|
|
var div = _leaflet2["default"].DomUtil.create("div", options.className),
|
|
colors = options.colors,
|
|
labels = options.labels,
|
|
legendHTML = "";
|
|
|
|
if (options.type === "numeric") {
|
|
// # Formatting constants.
|
|
var singleBinHeight = 20; // The distance between tick marks, in px
|
|
|
|
var vMargin = 8; // If 1st tick mark starts at top of gradient, how
|
|
// many extra px are needed for the top half of the
|
|
// 1st label? (ditto for last tick mark/label)
|
|
|
|
var tickWidth = 4; // How wide should tick marks be, in px?
|
|
|
|
var labelPadding = 6; // How much distance to reserve for tick mark?
|
|
// (Must be >= tickWidth)
|
|
// # Derived formatting parameters.
|
|
// What's the height of a single bin, in percentage (of gradient height)?
|
|
// It might not just be 1/(n-1), if the gradient extends past the tick
|
|
// marks (which can be the case for pretty cut points).
|
|
|
|
var singleBinPct = (options.extra.p_n - options.extra.p_1) / (labels.length - 1); // Each bin is `singleBinHeight` high. How tall is the gradient?
|
|
|
|
var totalHeight = 1 / singleBinPct * singleBinHeight + 1; // How far should the first tick be shifted down, relative to the top
|
|
// of the gradient?
|
|
|
|
var tickOffset = singleBinHeight / singleBinPct * options.extra.p_1;
|
|
gradSpan = (0, _jquery2["default"])("<span/>").css({
|
|
"background": "linear-gradient(" + colors + ")",
|
|
"opacity": options.opacity,
|
|
"height": totalHeight + "px",
|
|
"width": "18px",
|
|
"display": "block",
|
|
"margin-top": vMargin + "px"
|
|
});
|
|
var leftDiv = (0, _jquery2["default"])("<div/>").css("float", "left"),
|
|
rightDiv = (0, _jquery2["default"])("<div/>").css("float", "left");
|
|
leftDiv.append(gradSpan);
|
|
(0, _jquery2["default"])(div).append(leftDiv).append(rightDiv).append((0, _jquery2["default"])("<br>")); // Have to attach the div to the body at this early point, so that the
|
|
// svg text getComputedTextLength() actually works, below.
|
|
|
|
document.body.appendChild(div);
|
|
var ns = "http://www.w3.org/2000/svg";
|
|
var svg = document.createElementNS(ns, "svg");
|
|
rightDiv.append(svg);
|
|
var g = document.createElementNS(ns, "g");
|
|
(0, _jquery2["default"])(g).attr("transform", "translate(0, " + vMargin + ")");
|
|
svg.appendChild(g); // max label width needed to set width of svg, and right-justify text
|
|
|
|
var maxLblWidth = 0; // Create tick marks and labels
|
|
|
|
_jquery2["default"].each(labels, function (i, label) {
|
|
var y = tickOffset + i * singleBinHeight + 0.5;
|
|
var thisLabel = document.createElementNS(ns, "text");
|
|
(0, _jquery2["default"])(thisLabel).text(labels[i]).attr("y", y).attr("dx", labelPadding).attr("dy", "0.5ex");
|
|
g.appendChild(thisLabel);
|
|
maxLblWidth = Math.max(maxLblWidth, thisLabel.getComputedTextLength());
|
|
var thisTick = document.createElementNS(ns, "line");
|
|
(0, _jquery2["default"])(thisTick).attr("x1", 0).attr("x2", tickWidth).attr("y1", y).attr("y2", y).attr("stroke-width", 1);
|
|
g.appendChild(thisTick);
|
|
}); // Now that we know the max label width, we can right-justify
|
|
|
|
|
|
(0, _jquery2["default"])(svg).find("text").attr("dx", labelPadding + maxLblWidth).attr("text-anchor", "end"); // Final size for <svg>
|
|
|
|
(0, _jquery2["default"])(svg).css({
|
|
width: maxLblWidth + labelPadding + "px",
|
|
height: totalHeight + vMargin * 2 + "px"
|
|
});
|
|
|
|
if (options.na_color && _jquery2["default"].inArray(options.na_label, labels) < 0) {
|
|
(0, _jquery2["default"])(div).append("<div><i style=\"" + "background:" + options.na_color + ";opacity:" + options.opacity + ";margin-right:" + labelPadding + "px" + ";\"></i>" + options.na_label + "</div>");
|
|
}
|
|
} else {
|
|
if (options.na_color && _jquery2["default"].inArray(options.na_label, labels) < 0) {
|
|
colors.push(options.na_color);
|
|
labels.push(options.na_label);
|
|
}
|
|
|
|
for (var i = 0; i < colors.length; i++) {
|
|
legendHTML += "<i style=\"background:" + colors[i] + ";opacity:" + options.opacity + "\"></i> " + labels[i] + "<br>";
|
|
}
|
|
|
|
div.innerHTML = legendHTML;
|
|
}
|
|
|
|
if (options.title) (0, _jquery2["default"])(div).prepend("<div style=\"margin-bottom:3px\"><strong>" + options.title + "</strong></div>");
|
|
return div;
|
|
};
|
|
|
|
if (options.group) {
|
|
// Auto generate a layerID if not provided
|
|
if (!options.layerId) {
|
|
options.layerId = _leaflet2["default"].Util.stamp(legend);
|
|
}
|
|
|
|
var map = this;
|
|
map.on("overlayadd", function (e) {
|
|
if (e.name === options.group) {
|
|
map.controls.add(legend, options.layerId);
|
|
}
|
|
});
|
|
map.on("overlayremove", function (e) {
|
|
if (e.name === options.group) {
|
|
map.controls.remove(options.layerId);
|
|
}
|
|
});
|
|
map.on("groupadd", function (e) {
|
|
if (e.name === options.group) {
|
|
map.controls.add(legend, options.layerId);
|
|
}
|
|
});
|
|
map.on("groupremove", function (e) {
|
|
if (e.name === options.group) {
|
|
map.controls.remove(options.layerId);
|
|
}
|
|
});
|
|
}
|
|
|
|
this.controls.add(legend, options.layerId);
|
|
};
|
|
|
|
methods.addLayersControl = function (baseGroups, overlayGroups, options) {
|
|
var _this4 = this;
|
|
|
|
// Only allow one layers control at a time
|
|
methods.removeLayersControl.call(this);
|
|
var firstLayer = true;
|
|
var base = {};
|
|
|
|
_jquery2["default"].each((0, _util.asArray)(baseGroups), function (i, g) {
|
|
var layer = _this4.layerManager.getLayerGroup(g, true);
|
|
|
|
if (layer) {
|
|
base[g] = layer; // Check if >1 base layers are visible; if so, hide all but the first one
|
|
|
|
if (_this4.hasLayer(layer)) {
|
|
if (firstLayer) {
|
|
firstLayer = false;
|
|
} else {
|
|
_this4.removeLayer(layer);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
var overlay = {};
|
|
|
|
_jquery2["default"].each((0, _util.asArray)(overlayGroups), function (i, g) {
|
|
var layer = _this4.layerManager.getLayerGroup(g, true);
|
|
|
|
if (layer) {
|
|
overlay[g] = layer;
|
|
}
|
|
});
|
|
|
|
this.currentLayersControl = _leaflet2["default"].control.layers(base, overlay, options);
|
|
this.addControl(this.currentLayersControl);
|
|
};
|
|
|
|
methods.removeLayersControl = function () {
|
|
if (this.currentLayersControl) {
|
|
this.removeControl(this.currentLayersControl);
|
|
this.currentLayersControl = null;
|
|
}
|
|
};
|
|
|
|
methods.addScaleBar = function (options) {
|
|
// Only allow one scale bar at a time
|
|
methods.removeScaleBar.call(this);
|
|
|
|
var scaleBar = _leaflet2["default"].control.scale(options).addTo(this);
|
|
|
|
this.currentScaleBar = scaleBar;
|
|
};
|
|
|
|
methods.removeScaleBar = function () {
|
|
if (this.currentScaleBar) {
|
|
this.currentScaleBar.remove();
|
|
this.currentScaleBar = null;
|
|
}
|
|
};
|
|
|
|
methods.hideGroup = function (group) {
|
|
var _this5 = this;
|
|
|
|
_jquery2["default"].each((0, _util.asArray)(group), function (i, g) {
|
|
var layer = _this5.layerManager.getLayerGroup(g, true);
|
|
|
|
if (layer) {
|
|
_this5.removeLayer(layer);
|
|
}
|
|
});
|
|
};
|
|
|
|
methods.showGroup = function (group) {
|
|
var _this6 = this;
|
|
|
|
_jquery2["default"].each((0, _util.asArray)(group), function (i, g) {
|
|
var layer = _this6.layerManager.getLayerGroup(g, true);
|
|
|
|
if (layer) {
|
|
_this6.addLayer(layer);
|
|
}
|
|
});
|
|
};
|
|
|
|
function setupShowHideGroupsOnZoom(map) {
|
|
if (map.leafletr._hasInitializedShowHideGroups) {
|
|
return;
|
|
}
|
|
|
|
map.leafletr._hasInitializedShowHideGroups = true;
|
|
|
|
function setVisibility(layer, visible, group) {
|
|
if (visible !== map.hasLayer(layer)) {
|
|
if (visible) {
|
|
map.addLayer(layer);
|
|
map.fire("groupadd", {
|
|
"name": group,
|
|
"layer": layer
|
|
});
|
|
} else {
|
|
map.removeLayer(layer);
|
|
map.fire("groupremove", {
|
|
"name": group,
|
|
"layer": layer
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
function showHideGroupsOnZoom() {
|
|
if (!map.layerManager) return;
|
|
var zoom = map.getZoom();
|
|
map.layerManager.getAllGroupNames().forEach(function (group) {
|
|
var layer = map.layerManager.getLayerGroup(group, false);
|
|
|
|
if (layer && typeof layer.zoomLevels !== "undefined") {
|
|
setVisibility(layer, layer.zoomLevels === true || layer.zoomLevels.indexOf(zoom) >= 0, group);
|
|
}
|
|
});
|
|
}
|
|
|
|
map.showHideGroupsOnZoom = showHideGroupsOnZoom;
|
|
map.on("zoomend", showHideGroupsOnZoom);
|
|
}
|
|
|
|
methods.setGroupOptions = function (group, options) {
|
|
var _this7 = this;
|
|
|
|
_jquery2["default"].each((0, _util.asArray)(group), function (i, g) {
|
|
var layer = _this7.layerManager.getLayerGroup(g, true); // This slightly tortured check is because 0 is a valid value for zoomLevels
|
|
|
|
|
|
if (typeof options.zoomLevels !== "undefined" && options.zoomLevels !== null) {
|
|
layer.zoomLevels = (0, _util.asArray)(options.zoomLevels);
|
|
}
|
|
});
|
|
|
|
setupShowHideGroupsOnZoom(this);
|
|
this.showHideGroupsOnZoom();
|
|
};
|
|
|
|
methods.addRasterImage = function (uri, bounds, layerId, group, options) {
|
|
// uri is a data URI containing an image. We want to paint this image as a
|
|
// layer at (top-left) bounds[0] to (bottom-right) bounds[1].
|
|
// We can't simply use ImageOverlay, as it uses bilinear scaling which looks
|
|
// awful as you zoom in (and sometimes shifts positions or disappears).
|
|
// Instead, we'll use a TileLayer.Canvas to draw pieces of the image.
|
|
// First, some helper functions.
|
|
// degree2tile converts latitude, longitude, and zoom to x and y tile
|
|
// numbers. The tile numbers returned can be non-integral, as there's no
|
|
// reason to expect that the lat/lng inputs are exactly on the border of two
|
|
// tiles.
|
|
//
|
|
// We'll use this to convert the bounds we got from the server, into coords
|
|
// in tile-space at a given zoom level. Note that once we do the conversion,
|
|
// we don't to do any more trigonometry to convert between pixel coordinates
|
|
// and tile coordinates; the source image pixel coords, destination canvas
|
|
// pixel coords, and tile coords all can be scaled linearly.
|
|
function degree2tile(lat, lng, zoom) {
|
|
// See http://wiki.openstreetmap.org/wiki/Slippy_map_tilenames
|
|
var latRad = lat * Math.PI / 180;
|
|
var n = Math.pow(2, zoom);
|
|
var x = (lng + 180) / 360 * n;
|
|
var y = (1 - Math.log(Math.tan(latRad) + 1 / Math.cos(latRad)) / Math.PI) / 2 * n;
|
|
return {
|
|
x: x,
|
|
y: y
|
|
};
|
|
} // Given a range [from,to) and either one or two numbers, returns true if
|
|
// there is any overlap between [x,x1) and the range--or if x1 is omitted,
|
|
// then returns true if x is within [from,to).
|
|
|
|
|
|
function overlap(from, to, x,
|
|
/* optional */
|
|
x1) {
|
|
if (arguments.length == 3) x1 = x;
|
|
return x < to && x1 >= from;
|
|
}
|
|
|
|
function getCanvasSmoothingProperty(ctx) {
|
|
var candidates = ["imageSmoothingEnabled", "mozImageSmoothingEnabled", "webkitImageSmoothingEnabled", "msImageSmoothingEnabled"];
|
|
|
|
for (var i = 0; i < candidates.length; i++) {
|
|
if (typeof ctx[candidates[i]] !== "undefined") {
|
|
return candidates[i];
|
|
}
|
|
}
|
|
|
|
return null;
|
|
} // Our general strategy is to:
|
|
// 1. Load the data URI in an Image() object, so we can get its pixel
|
|
// dimensions and the underlying image data. (We could have done this
|
|
// by not encoding as PNG at all but just send an array of RGBA values
|
|
// from the server, but that would inflate the JSON too much.)
|
|
// 2. Create a hidden canvas that we use just to extract the image data
|
|
// from the Image (using Context2D.getImageData()).
|
|
// 3. Create a TileLayer.Canvas and add it to the map.
|
|
// We want to synchronously create and attach the TileLayer.Canvas (so an
|
|
// immediate call to clearRasters() will be respected, for example), but
|
|
// Image loads its data asynchronously. Fortunately we can resolve this
|
|
// by putting TileLayer.Canvas into async mode, which will let us create
|
|
// and attach the layer but have it wait until the image is loaded before
|
|
// it actually draws anything.
|
|
// These are the variables that we will populate once the image is loaded.
|
|
|
|
|
|
var imgData = null; // 1d row-major array, four [0-255] integers per pixel
|
|
|
|
var imgDataMipMapper = null;
|
|
var w = null; // image width in pixels
|
|
|
|
var h = null; // image height in pixels
|
|
// We'll use this array to store callbacks that need to be invoked once
|
|
// imgData, w, and h have been resolved.
|
|
|
|
var imgDataCallbacks = []; // Consumers of imgData, w, and h can call this to be notified when data
|
|
// is available.
|
|
|
|
function getImageData(callback) {
|
|
if (imgData != null) {
|
|
// Must not invoke the callback immediately; it's too confusing and
|
|
// fragile to have a function invoke the callback *either* immediately
|
|
// or in the future. Better to be consistent here.
|
|
setTimeout(function () {
|
|
callback(imgData, w, h, imgDataMipMapper);
|
|
}, 0);
|
|
} else {
|
|
imgDataCallbacks.push(callback);
|
|
}
|
|
}
|
|
|
|
var img = new Image();
|
|
|
|
img.onload = function () {
|
|
// Save size
|
|
w = img.width;
|
|
h = img.height; // Create a dummy canvas to extract the image data
|
|
|
|
var imgDataCanvas = document.createElement("canvas");
|
|
imgDataCanvas.width = w;
|
|
imgDataCanvas.height = h;
|
|
imgDataCanvas.style.display = "none";
|
|
document.body.appendChild(imgDataCanvas);
|
|
var imgDataCtx = imgDataCanvas.getContext("2d");
|
|
imgDataCtx.drawImage(img, 0, 0); // Save the image data.
|
|
|
|
imgData = imgDataCtx.getImageData(0, 0, w, h).data;
|
|
imgDataMipMapper = new _mipmapper2["default"](img); // Done with the canvas, remove it from the page so it can be gc'd.
|
|
|
|
document.body.removeChild(imgDataCanvas); // Alert any getImageData callers who are waiting.
|
|
|
|
for (var i = 0; i < imgDataCallbacks.length; i++) {
|
|
imgDataCallbacks[i](imgData, w, h, imgDataMipMapper);
|
|
}
|
|
|
|
imgDataCallbacks = [];
|
|
};
|
|
|
|
img.src = uri;
|
|
|
|
var canvasTiles = _leaflet2["default"].gridLayer(Object.assign({}, options, {
|
|
detectRetina: true,
|
|
async: true
|
|
})); // NOTE: The done() function MUST NOT be invoked until after the current
|
|
// tick; done() looks in Leaflet's tile cache for the current tile, and
|
|
// since it's still being constructed, it won't be found.
|
|
|
|
|
|
canvasTiles.createTile = function (tilePoint, done) {
|
|
var zoom = tilePoint.z;
|
|
|
|
var canvas = _leaflet2["default"].DomUtil.create("canvas");
|
|
|
|
var error; // setup tile width and height according to the options
|
|
|
|
var size = this.getTileSize();
|
|
canvas.width = size.x;
|
|
canvas.height = size.y;
|
|
getImageData(function (imgData, w, h, mipmapper) {
|
|
try {
|
|
// The Context2D we'll being drawing onto. It's always 256x256.
|
|
var ctx = canvas.getContext("2d"); // Convert our image data's top-left and bottom-right locations into
|
|
// x/y tile coordinates. This is essentially doing a spherical mercator
|
|
// projection, then multiplying by 2^zoom.
|
|
|
|
var topLeft = degree2tile(bounds[0][0], bounds[0][1], zoom);
|
|
var bottomRight = degree2tile(bounds[1][0], bounds[1][1], zoom); // The size of the image in x/y tile coordinates.
|
|
|
|
var extent = {
|
|
x: bottomRight.x - topLeft.x,
|
|
y: bottomRight.y - topLeft.y
|
|
}; // Short circuit if tile is totally disjoint from image.
|
|
|
|
if (!overlap(tilePoint.x, tilePoint.x + 1, topLeft.x, bottomRight.x)) return;
|
|
if (!overlap(tilePoint.y, tilePoint.y + 1, topLeft.y, bottomRight.y)) return; // The linear resolution of the tile we're drawing is always 256px per tile unit.
|
|
// If the linear resolution (in either direction) of the image is less than 256px
|
|
// per tile unit, then use nearest neighbor; otherwise, use the canvas's built-in
|
|
// scaling.
|
|
|
|
var imgRes = {
|
|
x: w / extent.x,
|
|
y: h / extent.y
|
|
}; // We can do the actual drawing in one of three ways:
|
|
// - Call drawImage(). This is easy and fast, and results in smooth
|
|
// interpolation (bilinear?). This is what we want when we are
|
|
// reducing the image from its native size.
|
|
// - Call drawImage() with imageSmoothingEnabled=false. This is easy
|
|
// and fast and gives us nearest-neighbor interpolation, which is what
|
|
// we want when enlarging the image. However, it's unsupported on many
|
|
// browsers (including QtWebkit).
|
|
// - Do a manual nearest-neighbor interpolation. This is what we'll fall
|
|
// back to when enlarging, and imageSmoothingEnabled isn't supported.
|
|
// In theory it's slower, but still pretty fast on my machine, and the
|
|
// results look the same AFAICT.
|
|
// Is imageSmoothingEnabled supported? If so, we can let canvas do
|
|
// nearest-neighbor interpolation for us.
|
|
|
|
var smoothingProperty = getCanvasSmoothingProperty(ctx);
|
|
|
|
if (smoothingProperty || imgRes.x >= 256 && imgRes.y >= 256) {
|
|
// Use built-in scaling
|
|
// Turn off anti-aliasing if necessary
|
|
if (smoothingProperty) {
|
|
ctx[smoothingProperty] = imgRes.x >= 256 && imgRes.y >= 256;
|
|
} // Don't necessarily draw with the full-size image; if we're
|
|
// downscaling, use the mipmapper to get a pre-downscaled image
|
|
// (see comments on Mipmapper class for why this matters).
|
|
|
|
|
|
mipmapper.getBySize(extent.x * 256, extent.y * 256, function (mip) {
|
|
// It's possible that the image will go off the edge of the canvas--
|
|
// that's OK, the canvas should clip appropriately.
|
|
ctx.drawImage(mip, // Convert abs tile coords to rel tile coords, then *256 to convert
|
|
// to rel pixel coords
|
|
(topLeft.x - tilePoint.x) * 256, (topLeft.y - tilePoint.y) * 256, // Always draw the whole thing and let canvas clip; so we can just
|
|
// convert from size in tile coords straight to pixels
|
|
extent.x * 256, extent.y * 256);
|
|
});
|
|
} else {
|
|
// Use manual nearest-neighbor interpolation
|
|
// Calculate the source image pixel coordinates that correspond with
|
|
// the top-left and bottom-right of this tile. (If the source image
|
|
// only partially overlaps the tile, we use max/min to limit the
|
|
// sourceStart/End to only reflect the overlapping portion.)
|
|
var sourceStart = {
|
|
x: Math.max(0, Math.floor((tilePoint.x - topLeft.x) * imgRes.x)),
|
|
y: Math.max(0, Math.floor((tilePoint.y - topLeft.y) * imgRes.y))
|
|
};
|
|
var sourceEnd = {
|
|
x: Math.min(w, Math.ceil((tilePoint.x + 1 - topLeft.x) * imgRes.x)),
|
|
y: Math.min(h, Math.ceil((tilePoint.y + 1 - topLeft.y) * imgRes.y))
|
|
}; // The size, in dest pixels, that each source pixel should occupy.
|
|
// This might be greater or less than 1 (e.g. if x and y resolution
|
|
// are very different).
|
|
|
|
var pixelSize = {
|
|
x: 256 / imgRes.x,
|
|
y: 256 / imgRes.y
|
|
}; // For each pixel in the source image that overlaps the tile...
|
|
|
|
for (var row = sourceStart.y; row < sourceEnd.y; row++) {
|
|
for (var col = sourceStart.x; col < sourceEnd.x; col++) {
|
|
// ...extract the pixel data...
|
|
var i = (row * w + col) * 4;
|
|
var r = imgData[i];
|
|
var g = imgData[i + 1];
|
|
var b = imgData[i + 2];
|
|
var a = imgData[i + 3];
|
|
ctx.fillStyle = "rgba(" + [r, g, b, a / 255].join(",") + ")"; // ...calculate the corresponding pixel coord in the dest image
|
|
// where it should be drawn...
|
|
|
|
var pixelPos = {
|
|
x: (col / imgRes.x + topLeft.x - tilePoint.x) * 256,
|
|
y: (row / imgRes.y + topLeft.y - tilePoint.y) * 256
|
|
}; // ...and draw a rectangle there.
|
|
|
|
ctx.fillRect(Math.round(pixelPos.x), Math.round(pixelPos.y), // Looks crazy, but this is necessary to prevent rounding from
|
|
// causing overlap between this rect and its neighbors. The
|
|
// minuend is the location of the next pixel, while the
|
|
// subtrahend is the position of the current pixel (to turn an
|
|
// absolute coordinate to a width/height). Yes, I had to look
|
|
// up minuend and subtrahend.
|
|
Math.round(pixelPos.x + pixelSize.x) - Math.round(pixelPos.x), Math.round(pixelPos.y + pixelSize.y) - Math.round(pixelPos.y));
|
|
}
|
|
}
|
|
}
|
|
} catch (e) {
|
|
error = e;
|
|
} finally {
|
|
done(error, canvas);
|
|
}
|
|
});
|
|
return canvas;
|
|
};
|
|
|
|
this.layerManager.addLayer(canvasTiles, "image", layerId, group);
|
|
};
|
|
|
|
methods.removeImage = function (layerId) {
|
|
this.layerManager.removeLayer("image", layerId);
|
|
};
|
|
|
|
methods.clearImages = function () {
|
|
this.layerManager.clearLayers("image");
|
|
};
|
|
|
|
methods.addMeasure = function (options) {
|
|
// if a measureControl already exists, then remove it and
|
|
// replace with a new one
|
|
methods.removeMeasure.call(this);
|
|
this.measureControl = _leaflet2["default"].control.measure(options);
|
|
this.addControl(this.measureControl);
|
|
};
|
|
|
|
methods.removeMeasure = function () {
|
|
if (this.measureControl) {
|
|
this.removeControl(this.measureControl);
|
|
this.measureControl = null;
|
|
}
|
|
};
|
|
|
|
methods.addSelect = function (ctGroup) {
|
|
var _this8 = this;
|
|
|
|
methods.removeSelect.call(this);
|
|
this._selectButton = _leaflet2["default"].easyButton({
|
|
states: [{
|
|
stateName: "select-inactive",
|
|
icon: "ion-qr-scanner",
|
|
title: "Make a selection",
|
|
onClick: function onClick(btn, map) {
|
|
btn.state("select-active");
|
|
_this8._locationFilter = new _leaflet2["default"].LocationFilter2();
|
|
|
|
if (ctGroup) {
|
|
var selectionHandle = new global.crosstalk.SelectionHandle(ctGroup);
|
|
selectionHandle.on("change", function (e) {
|
|
if (e.sender !== selectionHandle) {
|
|
if (_this8._locationFilter) {
|
|
_this8._locationFilter.disable();
|
|
|
|
btn.state("select-inactive");
|
|
}
|
|
}
|
|
});
|
|
|
|
var handler = function handler(e) {
|
|
_this8.layerManager.brush(_this8._locationFilter.getBounds(), {
|
|
sender: selectionHandle
|
|
});
|
|
};
|
|
|
|
_this8._locationFilter.on("enabled", handler);
|
|
|
|
_this8._locationFilter.on("change", handler);
|
|
|
|
_this8._locationFilter.on("disabled", function () {
|
|
selectionHandle.close();
|
|
_this8._locationFilter = null;
|
|
});
|
|
}
|
|
|
|
_this8._locationFilter.addTo(map);
|
|
}
|
|
}, {
|
|
stateName: "select-active",
|
|
icon: "ion-close-round",
|
|
title: "Dismiss selection",
|
|
onClick: function onClick(btn, map) {
|
|
btn.state("select-inactive");
|
|
|
|
_this8._locationFilter.disable(); // If explicitly dismissed, clear the crosstalk selections
|
|
|
|
|
|
_this8.layerManager.unbrush();
|
|
}
|
|
}]
|
|
});
|
|
|
|
this._selectButton.addTo(this);
|
|
};
|
|
|
|
methods.removeSelect = function () {
|
|
if (this._locationFilter) {
|
|
this._locationFilter.disable();
|
|
}
|
|
|
|
if (this._selectButton) {
|
|
this.removeControl(this._selectButton);
|
|
this._selectButton = null;
|
|
}
|
|
};
|
|
|
|
methods.createMapPane = function (name, zIndex) {
|
|
this.createPane(name);
|
|
this.getPane(name).style.zIndex = zIndex;
|
|
};
|
|
|
|
|
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
},{"./cluster-layer-store":1,"./crs_utils":3,"./dataframe":4,"./global/htmlwidgets":8,"./global/jquery":9,"./global/leaflet":10,"./global/shiny":12,"./mipmapper":16,"./util":17}],16:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
// This class simulates a mipmap, which shrinks images by powers of two. This
|
|
// stepwise reduction results in "pixel-perfect downscaling" (where every
|
|
// pixel of the original image has some contribution to the downscaled image)
|
|
// as opposed to a single-step downscaling which will discard a lot of data
|
|
// (and with sparse images at small scales can give very surprising results).
|
|
var Mipmapper = /*#__PURE__*/function () {
|
|
function Mipmapper(img) {
|
|
_classCallCheck(this, Mipmapper);
|
|
|
|
this._layers = [img];
|
|
} // The various functions on this class take a callback function BUT MAY OR MAY
|
|
// NOT actually behave asynchronously.
|
|
|
|
|
|
_createClass(Mipmapper, [{
|
|
key: "getBySize",
|
|
value: function getBySize(desiredWidth, desiredHeight, callback) {
|
|
var _this = this;
|
|
|
|
var i = 0;
|
|
var lastImg = this._layers[0];
|
|
|
|
var testNext = function testNext() {
|
|
_this.getByIndex(i, function (img) {
|
|
// If current image is invalid (i.e. too small to be rendered) or
|
|
// it's smaller than what we wanted, return the last known good image.
|
|
if (!img || img.width < desiredWidth || img.height < desiredHeight) {
|
|
callback(lastImg);
|
|
return;
|
|
} else {
|
|
lastImg = img;
|
|
i++;
|
|
testNext();
|
|
return;
|
|
}
|
|
});
|
|
};
|
|
|
|
testNext();
|
|
}
|
|
}, {
|
|
key: "getByIndex",
|
|
value: function getByIndex(i, callback) {
|
|
var _this2 = this;
|
|
|
|
if (this._layers[i]) {
|
|
callback(this._layers[i]);
|
|
return;
|
|
}
|
|
|
|
this.getByIndex(i - 1, function (prevImg) {
|
|
if (!prevImg) {
|
|
// prevImg could not be calculated (too small, possibly)
|
|
callback(null);
|
|
return;
|
|
}
|
|
|
|
if (prevImg.width < 2 || prevImg.height < 2) {
|
|
// Can't reduce this image any further
|
|
callback(null);
|
|
return;
|
|
} // If reduce ever becomes truly asynchronous, we should stuff a promise or
|
|
// something into this._layers[i] before calling this.reduce(), to prevent
|
|
// redundant reduce operations from happening.
|
|
|
|
|
|
_this2.reduce(prevImg, function (reducedImg) {
|
|
_this2._layers[i] = reducedImg;
|
|
callback(reducedImg);
|
|
return;
|
|
});
|
|
});
|
|
}
|
|
}, {
|
|
key: "reduce",
|
|
value: function reduce(img, callback) {
|
|
var imgDataCanvas = document.createElement("canvas");
|
|
imgDataCanvas.width = Math.ceil(img.width / 2);
|
|
imgDataCanvas.height = Math.ceil(img.height / 2);
|
|
imgDataCanvas.style.display = "none";
|
|
document.body.appendChild(imgDataCanvas);
|
|
|
|
try {
|
|
var imgDataCtx = imgDataCanvas.getContext("2d");
|
|
imgDataCtx.drawImage(img, 0, 0, img.width / 2, img.height / 2);
|
|
callback(imgDataCanvas);
|
|
} finally {
|
|
document.body.removeChild(imgDataCanvas);
|
|
}
|
|
}
|
|
}]);
|
|
|
|
return Mipmapper;
|
|
}();
|
|
|
|
exports["default"] = Mipmapper;
|
|
|
|
|
|
},{}],17:[function(require,module,exports){
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.log = log;
|
|
exports.recycle = recycle;
|
|
exports.asArray = asArray;
|
|
|
|
function log(message) {
|
|
/* eslint-disable no-console */
|
|
if (console && console.log) console.log(message);
|
|
/* eslint-enable no-console */
|
|
}
|
|
|
|
function recycle(values, length, inPlace) {
|
|
if (length === 0 && !inPlace) return [];
|
|
|
|
if (!(values instanceof Array)) {
|
|
if (inPlace) {
|
|
throw new Error("Can't do in-place recycling of a non-Array value");
|
|
}
|
|
|
|
values = [values];
|
|
}
|
|
|
|
if (typeof length === "undefined") length = values.length;
|
|
var dest = inPlace ? values : [];
|
|
var origLength = values.length;
|
|
|
|
while (dest.length < length) {
|
|
dest.push(values[dest.length % origLength]);
|
|
}
|
|
|
|
if (dest.length > length) {
|
|
dest.splice(length, dest.length - length);
|
|
}
|
|
|
|
return dest;
|
|
}
|
|
|
|
function asArray(value) {
|
|
if (value instanceof Array) return value;else return [value];
|
|
}
|
|
|
|
|
|
},{}]},{},[13]);
|
|
</script>
|
|
<script>(function (root, factory) {
|
|
if (typeof define === 'function' && define.amd) {
|
|
// AMD. Register as an anonymous module.
|
|
define(['leaflet'], factory);
|
|
} else if (typeof modules === 'object' && module.exports) {
|
|
// define a Common JS module that relies on 'leaflet'
|
|
module.exports = factory(require('leaflet'));
|
|
} else {
|
|
// Assume Leaflet is loaded into global object L already
|
|
factory(L);
|
|
}
|
|
}(this, function (L) {
|
|
'use strict';
|
|
|
|
L.TileLayer.Provider = L.TileLayer.extend({
|
|
initialize: function (arg, options) {
|
|
var providers = L.TileLayer.Provider.providers;
|
|
|
|
var parts = arg.split('.');
|
|
|
|
var providerName = parts[0];
|
|
var variantName = parts[1];
|
|
|
|
if (!providers[providerName]) {
|
|
throw 'No such provider (' + providerName + ')';
|
|
}
|
|
|
|
var provider = {
|
|
url: providers[providerName].url,
|
|
options: providers[providerName].options
|
|
};
|
|
|
|
// overwrite values in provider from variant.
|
|
if (variantName && 'variants' in providers[providerName]) {
|
|
if (!(variantName in providers[providerName].variants)) {
|
|
throw 'No such variant of ' + providerName + ' (' + variantName + ')';
|
|
}
|
|
var variant = providers[providerName].variants[variantName];
|
|
var variantOptions;
|
|
if (typeof variant === 'string') {
|
|
variantOptions = {
|
|
variant: variant
|
|
};
|
|
} else {
|
|
variantOptions = variant.options;
|
|
}
|
|
provider = {
|
|
url: variant.url || provider.url,
|
|
options: L.Util.extend({}, provider.options, variantOptions)
|
|
};
|
|
}
|
|
|
|
// replace attribution placeholders with their values from toplevel provider attribution,
|
|
// recursively
|
|
var attributionReplacer = function (attr) {
|
|
if (attr.indexOf('{attribution.') === -1) {
|
|
return attr;
|
|
}
|
|
return attr.replace(/\{attribution.(\w*)\}/g,
|
|
function (match, attributionName) {
|
|
return attributionReplacer(providers[attributionName].options.attribution);
|
|
}
|
|
);
|
|
};
|
|
provider.options.attribution = attributionReplacer(provider.options.attribution);
|
|
|
|
// Compute final options combining provider options with any user overrides
|
|
var layerOpts = L.Util.extend({}, provider.options, options);
|
|
L.TileLayer.prototype.initialize.call(this, provider.url, layerOpts);
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Definition of providers.
|
|
* see http://leafletjs.com/reference.html#tilelayer for options in the options map.
|
|
*/
|
|
|
|
L.TileLayer.Provider.providers = {
|
|
OpenStreetMap: {
|
|
url: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 19,
|
|
attribution:
|
|
'© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
|
},
|
|
variants: {
|
|
Mapnik: {},
|
|
DE: {
|
|
url: 'https://tile.openstreetmap.de/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 18
|
|
}
|
|
},
|
|
CH: {
|
|
url: 'https://tile.osm.ch/switzerland/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 18,
|
|
bounds: [[45, 5], [48, 11]]
|
|
}
|
|
},
|
|
France: {
|
|
url: 'https://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 20,
|
|
attribution: '© OpenStreetMap France | {attribution.OpenStreetMap}'
|
|
}
|
|
},
|
|
HOT: {
|
|
url: 'https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png',
|
|
options: {
|
|
attribution:
|
|
'{attribution.OpenStreetMap}, ' +
|
|
'Tiles style by <a href="https://www.hotosm.org/" target="_blank">Humanitarian OpenStreetMap Team</a> ' +
|
|
'hosted by <a href="https://openstreetmap.fr/" target="_blank">OpenStreetMap France</a>'
|
|
}
|
|
},
|
|
BZH: {
|
|
url: 'https://tile.openstreetmap.bzh/br/{z}/{x}/{y}.png',
|
|
options: {
|
|
attribution: '{attribution.OpenStreetMap}, Tiles courtesy of <a href="http://www.openstreetmap.bzh/" target="_blank">Breton OpenStreetMap Team</a>',
|
|
bounds: [[46.2, -5.5], [50, 0.7]]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
MapTilesAPI: {
|
|
url: 'https://maptiles.p.rapidapi.com/{variant}/{z}/{x}/{y}.png?rapidapi-key={apikey}',
|
|
options: {
|
|
attribution:
|
|
'© <a href="http://www.maptilesapi.com/">MapTiles API</a>, {attribution.OpenStreetMap}',
|
|
variant: 'en/map/v1',
|
|
// Get your own MapTiles API access token here : https://www.maptilesapi.com/
|
|
// NB : this is a demonstration key that comes with no guarantee and not to be used in production
|
|
apikey: '<insert your api key here>',
|
|
maxZoom: 19
|
|
},
|
|
variants: {
|
|
OSMEnglish: {
|
|
options: {
|
|
variant: 'en/map/v1'
|
|
}
|
|
},
|
|
OSMFrancais: {
|
|
options: {
|
|
variant: 'fr/map/v1'
|
|
}
|
|
},
|
|
OSMEspagnol: {
|
|
options: {
|
|
variant: 'es/map/v1'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
OpenSeaMap: {
|
|
url: 'https://tiles.openseamap.org/seamark/{z}/{x}/{y}.png',
|
|
options: {
|
|
attribution: 'Map data: © <a href="http://www.openseamap.org">OpenSeaMap</a> contributors'
|
|
}
|
|
},
|
|
OPNVKarte: {
|
|
url: 'https://tileserver.memomaps.de/tilegen/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 18,
|
|
attribution: 'Map <a href="https://memomaps.de/">memomaps.de</a> <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, map data {attribution.OpenStreetMap}'
|
|
}
|
|
},
|
|
OpenTopoMap: {
|
|
url: 'https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 17,
|
|
attribution: 'Map data: {attribution.OpenStreetMap}, <a href="http://viewfinderpanoramas.org">SRTM</a> | Map style: © <a href="https://opentopomap.org">OpenTopoMap</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)'
|
|
}
|
|
},
|
|
OpenRailwayMap: {
|
|
url: 'https://{s}.tiles.openrailwaymap.org/standard/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 19,
|
|
attribution: 'Map data: {attribution.OpenStreetMap} | Map style: © <a href="https://www.OpenRailwayMap.org">OpenRailwayMap</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)'
|
|
}
|
|
},
|
|
OpenFireMap: {
|
|
url: 'http://openfiremap.org/hytiles/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 19,
|
|
attribution: 'Map data: {attribution.OpenStreetMap} | Map style: © <a href="http://www.openfiremap.org">OpenFireMap</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)'
|
|
}
|
|
},
|
|
SafeCast: {
|
|
url: 'https://s3.amazonaws.com/te512.safecast.org/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 16,
|
|
attribution: 'Map data: {attribution.OpenStreetMap} | Map style: © <a href="https://blog.safecast.org/about/">SafeCast</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)'
|
|
}
|
|
},
|
|
Stadia: {
|
|
url: 'https://tiles.stadiamaps.com/tiles/{variant}/{z}/{x}/{y}{r}.{ext}',
|
|
options: {
|
|
minZoom: 0,
|
|
maxZoom: 20,
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'alidade_smooth',
|
|
ext: 'png'
|
|
},
|
|
variants: {
|
|
AlidadeSmooth: 'alidade_smooth',
|
|
AlidadeSmoothDark: 'alidade_smooth_dark',
|
|
OSMBright: 'osm_bright',
|
|
Outdoors: 'outdoors',
|
|
StamenToner: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_toner'
|
|
}
|
|
},
|
|
StamenTonerBackground: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_toner_background'
|
|
}
|
|
},
|
|
StamenTonerLines: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_toner_lines'
|
|
}
|
|
},
|
|
StamenTonerLabels: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_toner_labels'
|
|
}
|
|
},
|
|
StamenTonerLite: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_toner_lite'
|
|
}
|
|
},
|
|
StamenWatercolor: {
|
|
url: 'https://tiles.stadiamaps.com/tiles/{variant}/{z}/{x}/{y}.{ext}',
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_watercolor',
|
|
ext: 'jpg',
|
|
minZoom: 1,
|
|
maxZoom: 16
|
|
}
|
|
},
|
|
StamenTerrain: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_terrain',
|
|
minZoom: 0,
|
|
maxZoom: 18
|
|
}
|
|
},
|
|
StamenTerrainBackground: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_terrain_background',
|
|
minZoom: 0,
|
|
maxZoom: 18
|
|
}
|
|
},
|
|
StamenTerrainLabels: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_terrain_labels',
|
|
minZoom: 0,
|
|
maxZoom: 18
|
|
}
|
|
},
|
|
StamenTerrainLines: {
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
|
|
'© <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
|
|
'© <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
variant: 'stamen_terrain_lines',
|
|
minZoom: 0,
|
|
maxZoom: 18
|
|
}
|
|
}
|
|
}
|
|
},
|
|
Thunderforest: {
|
|
url: 'https://{s}.tile.thunderforest.com/{variant}/{z}/{x}/{y}.png?apikey={apikey}',
|
|
options: {
|
|
attribution:
|
|
'© <a href="http://www.thunderforest.com/">Thunderforest</a>, {attribution.OpenStreetMap}',
|
|
variant: 'cycle',
|
|
apikey: '<insert your api key here>',
|
|
maxZoom: 22
|
|
},
|
|
variants: {
|
|
OpenCycleMap: 'cycle',
|
|
Transport: {
|
|
options: {
|
|
variant: 'transport'
|
|
}
|
|
},
|
|
TransportDark: {
|
|
options: {
|
|
variant: 'transport-dark'
|
|
}
|
|
},
|
|
SpinalMap: {
|
|
options: {
|
|
variant: 'spinal-map'
|
|
}
|
|
},
|
|
Landscape: 'landscape',
|
|
Outdoors: 'outdoors',
|
|
Pioneer: 'pioneer',
|
|
MobileAtlas: 'mobile-atlas',
|
|
Neighbourhood: 'neighbourhood'
|
|
}
|
|
},
|
|
CyclOSM: {
|
|
url: 'https://{s}.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 20,
|
|
attribution: '<a href="https://github.com/cyclosm/cyclosm-cartocss-style/releases" title="CyclOSM - Open Bicycle render">CyclOSM</a> | Map data: {attribution.OpenStreetMap}'
|
|
}
|
|
},
|
|
Jawg: {
|
|
url: 'https://{s}.tile.jawg.io/{variant}/{z}/{x}/{y}{r}.png?access-token={accessToken}',
|
|
options: {
|
|
attribution:
|
|
'<a href="http://jawg.io" title="Tiles Courtesy of Jawg Maps" target="_blank">© <b>Jawg</b>Maps</a> ' +
|
|
'{attribution.OpenStreetMap}',
|
|
minZoom: 0,
|
|
maxZoom: 22,
|
|
subdomains: 'abcd',
|
|
variant: 'jawg-terrain',
|
|
// Get your own Jawg access token here : https://www.jawg.io/lab/
|
|
// NB : this is a demonstration key that comes with no guarantee
|
|
accessToken: '<insert your access token here>',
|
|
},
|
|
variants: {
|
|
Streets: 'jawg-streets',
|
|
Terrain: 'jawg-terrain',
|
|
Sunny: 'jawg-sunny',
|
|
Dark: 'jawg-dark',
|
|
Light: 'jawg-light',
|
|
Matrix: 'jawg-matrix'
|
|
}
|
|
},
|
|
MapBox: {
|
|
url: 'https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}{r}?access_token={accessToken}',
|
|
options: {
|
|
attribution:
|
|
'© <a href="https://www.mapbox.com/about/maps/" target="_blank">Mapbox</a> ' +
|
|
'{attribution.OpenStreetMap} ' +
|
|
'<a href="https://www.mapbox.com/map-feedback/" target="_blank">Improve this map</a>',
|
|
tileSize: 512,
|
|
maxZoom: 18,
|
|
zoomOffset: -1,
|
|
id: 'mapbox/streets-v11',
|
|
accessToken: '<insert your access token here>',
|
|
}
|
|
},
|
|
MapTiler: {
|
|
url: 'https://api.maptiler.com/maps/{variant}/{z}/{x}/{y}{r}.{ext}?key={key}',
|
|
options: {
|
|
attribution:
|
|
'<a href="https://www.maptiler.com/copyright/" target="_blank">© MapTiler</a> <a href="https://www.openstreetmap.org/copyright" target="_blank">© OpenStreetMap contributors</a>',
|
|
variant: 'streets',
|
|
ext: 'png',
|
|
key: '<insert your MapTiler Cloud API key here>',
|
|
tileSize: 512,
|
|
zoomOffset: -1,
|
|
minZoom: 0,
|
|
maxZoom: 21
|
|
},
|
|
variants: {
|
|
Streets: 'streets',
|
|
Basic: 'basic',
|
|
Bright: 'bright',
|
|
Pastel: 'pastel',
|
|
Positron: 'positron',
|
|
Hybrid: {
|
|
options: {
|
|
variant: 'hybrid',
|
|
ext: 'jpg'
|
|
}
|
|
},
|
|
Toner: 'toner',
|
|
Topo: 'topo',
|
|
Voyager: 'voyager'
|
|
}
|
|
},
|
|
TomTom: {
|
|
url: 'https://{s}.api.tomtom.com/map/1/tile/{variant}/{style}/{z}/{x}/{y}.{ext}?key={apikey}',
|
|
options: {
|
|
variant: 'basic',
|
|
maxZoom: 22,
|
|
attribution:
|
|
'<a href="https://tomtom.com" target="_blank">© 1992 - ' + new Date().getFullYear() + ' TomTom.</a> ',
|
|
subdomains: 'abcd',
|
|
style: 'main',
|
|
ext: 'png',
|
|
apikey: '<insert your API key here>',
|
|
},
|
|
variants: {
|
|
Basic: 'basic',
|
|
Hybrid: 'hybrid',
|
|
Labels: 'labels'
|
|
}
|
|
},
|
|
Esri: {
|
|
url: 'https://server.arcgisonline.com/ArcGIS/rest/services/{variant}/MapServer/tile/{z}/{y}/{x}',
|
|
options: {
|
|
variant: 'World_Street_Map',
|
|
attribution: 'Tiles © Esri'
|
|
},
|
|
variants: {
|
|
WorldStreetMap: {
|
|
options: {
|
|
attribution:
|
|
'{attribution.Esri} — ' +
|
|
'Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012'
|
|
}
|
|
},
|
|
DeLorme: {
|
|
options: {
|
|
variant: 'Specialty/DeLorme_World_Base_Map',
|
|
minZoom: 1,
|
|
maxZoom: 11,
|
|
attribution: '{attribution.Esri} — Copyright: ©2012 DeLorme'
|
|
}
|
|
},
|
|
WorldTopoMap: {
|
|
options: {
|
|
variant: 'World_Topo_Map',
|
|
attribution:
|
|
'{attribution.Esri} — ' +
|
|
'Esri, DeLorme, NAVTEQ, TomTom, Intermap, iPC, USGS, FAO, NPS, NRCAN, GeoBase, Kadaster NL, Ordnance Survey, Esri Japan, METI, Esri China (Hong Kong), and the GIS User Community'
|
|
}
|
|
},
|
|
WorldImagery: {
|
|
options: {
|
|
variant: 'World_Imagery',
|
|
attribution:
|
|
'{attribution.Esri} — ' +
|
|
'Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community'
|
|
}
|
|
},
|
|
WorldTerrain: {
|
|
options: {
|
|
variant: 'World_Terrain_Base',
|
|
maxZoom: 13,
|
|
attribution:
|
|
'{attribution.Esri} — ' +
|
|
'Source: USGS, Esri, TANA, DeLorme, and NPS'
|
|
}
|
|
},
|
|
WorldShadedRelief: {
|
|
options: {
|
|
variant: 'World_Shaded_Relief',
|
|
maxZoom: 13,
|
|
attribution: '{attribution.Esri} — Source: Esri'
|
|
}
|
|
},
|
|
WorldPhysical: {
|
|
options: {
|
|
variant: 'World_Physical_Map',
|
|
maxZoom: 8,
|
|
attribution: '{attribution.Esri} — Source: US National Park Service'
|
|
}
|
|
},
|
|
OceanBasemap: {
|
|
options: {
|
|
variant: 'Ocean/World_Ocean_Base',
|
|
maxZoom: 13,
|
|
attribution: '{attribution.Esri} — Sources: GEBCO, NOAA, CHS, OSU, UNH, CSUMB, National Geographic, DeLorme, NAVTEQ, and Esri'
|
|
}
|
|
},
|
|
NatGeoWorldMap: {
|
|
options: {
|
|
variant: 'NatGeo_World_Map',
|
|
maxZoom: 16,
|
|
attribution: '{attribution.Esri} — National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC'
|
|
}
|
|
},
|
|
WorldGrayCanvas: {
|
|
options: {
|
|
variant: 'Canvas/World_Light_Gray_Base',
|
|
maxZoom: 16,
|
|
attribution: '{attribution.Esri} — Esri, DeLorme, NAVTEQ'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
OpenWeatherMap: {
|
|
url: 'http://{s}.tile.openweathermap.org/map/{variant}/{z}/{x}/{y}.png?appid={apiKey}',
|
|
options: {
|
|
maxZoom: 19,
|
|
attribution: 'Map data © <a href="http://openweathermap.org">OpenWeatherMap</a>',
|
|
apiKey: '<insert your api key here>',
|
|
opacity: 0.5
|
|
},
|
|
variants: {
|
|
Clouds: 'clouds',
|
|
CloudsClassic: 'clouds_cls',
|
|
Precipitation: 'precipitation',
|
|
PrecipitationClassic: 'precipitation_cls',
|
|
Rain: 'rain',
|
|
RainClassic: 'rain_cls',
|
|
Pressure: 'pressure',
|
|
PressureContour: 'pressure_cntr',
|
|
Wind: 'wind',
|
|
Temperature: 'temp',
|
|
Snow: 'snow'
|
|
}
|
|
},
|
|
HERE: {
|
|
/*
|
|
* HERE maps, formerly Nokia maps.
|
|
* These basemaps are free, but you need an api id and app key. Please sign up at
|
|
* https://developer.here.com/plans
|
|
*/
|
|
url:
|
|
'https://{s}.{base}.maps.api.here.com/maptile/2.1/' +
|
|
'{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?' +
|
|
'app_id={app_id}&app_code={app_code}&lg={language}',
|
|
options: {
|
|
attribution:
|
|
'Map © 1987-' + new Date().getFullYear() + ' <a href="http://developer.here.com">HERE</a>',
|
|
subdomains: '1234',
|
|
mapID: 'newest',
|
|
'app_id': '<insert your app_id here>',
|
|
'app_code': '<insert your app_code here>',
|
|
base: 'base',
|
|
variant: 'normal.day',
|
|
maxZoom: 20,
|
|
type: 'maptile',
|
|
language: 'eng',
|
|
format: 'png8',
|
|
size: '256'
|
|
},
|
|
variants: {
|
|
normalDay: 'normal.day',
|
|
normalDayCustom: 'normal.day.custom',
|
|
normalDayGrey: 'normal.day.grey',
|
|
normalDayMobile: 'normal.day.mobile',
|
|
normalDayGreyMobile: 'normal.day.grey.mobile',
|
|
normalDayTransit: 'normal.day.transit',
|
|
normalDayTransitMobile: 'normal.day.transit.mobile',
|
|
normalDayTraffic: {
|
|
options: {
|
|
variant: 'normal.traffic.day',
|
|
base: 'traffic',
|
|
type: 'traffictile'
|
|
}
|
|
},
|
|
normalNight: 'normal.night',
|
|
normalNightMobile: 'normal.night.mobile',
|
|
normalNightGrey: 'normal.night.grey',
|
|
normalNightGreyMobile: 'normal.night.grey.mobile',
|
|
normalNightTransit: 'normal.night.transit',
|
|
normalNightTransitMobile: 'normal.night.transit.mobile',
|
|
reducedDay: 'reduced.day',
|
|
reducedNight: 'reduced.night',
|
|
basicMap: {
|
|
options: {
|
|
type: 'basetile'
|
|
}
|
|
},
|
|
mapLabels: {
|
|
options: {
|
|
type: 'labeltile',
|
|
format: 'png'
|
|
}
|
|
},
|
|
trafficFlow: {
|
|
options: {
|
|
base: 'traffic',
|
|
type: 'flowtile'
|
|
}
|
|
},
|
|
carnavDayGrey: 'carnav.day.grey',
|
|
hybridDay: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.day'
|
|
}
|
|
},
|
|
hybridDayMobile: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.day.mobile'
|
|
}
|
|
},
|
|
hybridDayTransit: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.day.transit'
|
|
}
|
|
},
|
|
hybridDayGrey: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.grey.day'
|
|
}
|
|
},
|
|
hybridDayTraffic: {
|
|
options: {
|
|
variant: 'hybrid.traffic.day',
|
|
base: 'traffic',
|
|
type: 'traffictile'
|
|
}
|
|
},
|
|
pedestrianDay: 'pedestrian.day',
|
|
pedestrianNight: 'pedestrian.night',
|
|
satelliteDay: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'satellite.day'
|
|
}
|
|
},
|
|
terrainDay: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'terrain.day'
|
|
}
|
|
},
|
|
terrainDayMobile: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'terrain.day.mobile'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
HEREv3: {
|
|
/*
|
|
* HERE maps API Version 3.
|
|
* These basemaps are free, but you need an API key. Please sign up at
|
|
* https://developer.here.com/plans
|
|
* Version 3 deprecates the app_id and app_code access in favor of apiKey
|
|
*
|
|
* Supported access methods as of 2019/12/21:
|
|
* @see https://developer.here.com/faqs#access-control-1--how-do-you-control-access-to-here-location-services
|
|
*/
|
|
url:
|
|
'https://{s}.{base}.maps.ls.hereapi.com/maptile/2.1/' +
|
|
'{type}/{mapID}/{variant}/{z}/{x}/{y}/{size}/{format}?' +
|
|
'apiKey={apiKey}&lg={language}',
|
|
options: {
|
|
attribution:
|
|
'Map © 1987-' + new Date().getFullYear() + ' <a href="http://developer.here.com">HERE</a>',
|
|
subdomains: '1234',
|
|
mapID: 'newest',
|
|
apiKey: '<insert your apiKey here>',
|
|
base: 'base',
|
|
variant: 'normal.day',
|
|
maxZoom: 20,
|
|
type: 'maptile',
|
|
language: 'eng',
|
|
format: 'png8',
|
|
size: '256'
|
|
},
|
|
variants: {
|
|
normalDay: 'normal.day',
|
|
normalDayCustom: 'normal.day.custom',
|
|
normalDayGrey: 'normal.day.grey',
|
|
normalDayMobile: 'normal.day.mobile',
|
|
normalDayGreyMobile: 'normal.day.grey.mobile',
|
|
normalDayTransit: 'normal.day.transit',
|
|
normalDayTransitMobile: 'normal.day.transit.mobile',
|
|
normalNight: 'normal.night',
|
|
normalNightMobile: 'normal.night.mobile',
|
|
normalNightGrey: 'normal.night.grey',
|
|
normalNightGreyMobile: 'normal.night.grey.mobile',
|
|
normalNightTransit: 'normal.night.transit',
|
|
normalNightTransitMobile: 'normal.night.transit.mobile',
|
|
reducedDay: 'reduced.day',
|
|
reducedNight: 'reduced.night',
|
|
basicMap: {
|
|
options: {
|
|
type: 'basetile'
|
|
}
|
|
},
|
|
mapLabels: {
|
|
options: {
|
|
type: 'labeltile',
|
|
format: 'png'
|
|
}
|
|
},
|
|
trafficFlow: {
|
|
options: {
|
|
base: 'traffic',
|
|
type: 'flowtile'
|
|
}
|
|
},
|
|
carnavDayGrey: 'carnav.day.grey',
|
|
hybridDay: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.day'
|
|
}
|
|
},
|
|
hybridDayMobile: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.day.mobile'
|
|
}
|
|
},
|
|
hybridDayTransit: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.day.transit'
|
|
}
|
|
},
|
|
hybridDayGrey: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'hybrid.grey.day'
|
|
}
|
|
},
|
|
pedestrianDay: 'pedestrian.day',
|
|
pedestrianNight: 'pedestrian.night',
|
|
satelliteDay: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'satellite.day'
|
|
}
|
|
},
|
|
terrainDay: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'terrain.day'
|
|
}
|
|
},
|
|
terrainDayMobile: {
|
|
options: {
|
|
base: 'aerial',
|
|
variant: 'terrain.day.mobile'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
FreeMapSK: {
|
|
url: 'https://{s}.freemap.sk/T/{z}/{x}/{y}.jpeg',
|
|
options: {
|
|
minZoom: 8,
|
|
maxZoom: 16,
|
|
subdomains: 'abcd',
|
|
bounds: [[47.204642, 15.996093], [49.830896, 22.576904]],
|
|
attribution:
|
|
'{attribution.OpenStreetMap}, visualization CC-By-SA 2.0 <a href="http://freemap.sk">Freemap.sk</a>'
|
|
}
|
|
},
|
|
MtbMap: {
|
|
url: 'http://tile.mtbmap.cz/mtbmap_tiles/{z}/{x}/{y}.png',
|
|
options: {
|
|
attribution:
|
|
'{attribution.OpenStreetMap} & USGS'
|
|
}
|
|
},
|
|
CartoDB: {
|
|
url: 'https://{s}.basemaps.cartocdn.com/{variant}/{z}/{x}/{y}{r}.png',
|
|
options: {
|
|
attribution: '{attribution.OpenStreetMap} © <a href="https://carto.com/attributions">CARTO</a>',
|
|
subdomains: 'abcd',
|
|
maxZoom: 20,
|
|
variant: 'light_all'
|
|
},
|
|
variants: {
|
|
Positron: 'light_all',
|
|
PositronNoLabels: 'light_nolabels',
|
|
PositronOnlyLabels: 'light_only_labels',
|
|
DarkMatter: 'dark_all',
|
|
DarkMatterNoLabels: 'dark_nolabels',
|
|
DarkMatterOnlyLabels: 'dark_only_labels',
|
|
Voyager: 'rastertiles/voyager',
|
|
VoyagerNoLabels: 'rastertiles/voyager_nolabels',
|
|
VoyagerOnlyLabels: 'rastertiles/voyager_only_labels',
|
|
VoyagerLabelsUnder: 'rastertiles/voyager_labels_under'
|
|
}
|
|
},
|
|
HikeBike: {
|
|
url: 'https://tiles.wmflabs.org/{variant}/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 19,
|
|
attribution: '{attribution.OpenStreetMap}',
|
|
variant: 'hikebike'
|
|
},
|
|
variants: {
|
|
HikeBike: {},
|
|
HillShading: {
|
|
options: {
|
|
maxZoom: 15,
|
|
variant: 'hillshading'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
BasemapAT: {
|
|
url: 'https://mapsneu.wien.gv.at/basemap/{variant}/{type}/google3857/{z}/{y}/{x}.{format}',
|
|
options: {
|
|
maxZoom: 19,
|
|
attribution: 'Datenquelle: <a href="https://www.basemap.at">basemap.at</a>',
|
|
type: 'normal',
|
|
format: 'png',
|
|
bounds: [[46.358770, 8.782379], [49.037872, 17.189532]],
|
|
variant: 'geolandbasemap'
|
|
},
|
|
variants: {
|
|
basemap: {
|
|
options: {
|
|
maxZoom: 20, // currently only in Vienna
|
|
variant: 'geolandbasemap'
|
|
}
|
|
},
|
|
grau: 'bmapgrau',
|
|
overlay: 'bmapoverlay',
|
|
terrain: {
|
|
options: {
|
|
variant: 'bmapgelaende',
|
|
type: 'grau',
|
|
format: 'jpeg'
|
|
}
|
|
},
|
|
surface: {
|
|
options: {
|
|
variant: 'bmapoberflaeche',
|
|
type: 'grau',
|
|
format: 'jpeg'
|
|
}
|
|
},
|
|
highdpi: {
|
|
options: {
|
|
variant: 'bmaphidpi',
|
|
format: 'jpeg'
|
|
}
|
|
},
|
|
orthofoto: {
|
|
options: {
|
|
maxZoom: 20, // currently only in Vienna
|
|
variant: 'bmaporthofoto30cm',
|
|
format: 'jpeg'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
nlmaps: {
|
|
url: 'https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0/{variant}/EPSG:3857/{z}/{x}/{y}.png',
|
|
options: {
|
|
minZoom: 6,
|
|
maxZoom: 19,
|
|
bounds: [[50.5, 3.25], [54, 7.6]],
|
|
attribution: 'Kaartgegevens © <a href="https://www.kadaster.nl">Kadaster</a>'
|
|
},
|
|
variants: {
|
|
'standaard': 'standaard',
|
|
'pastel': 'pastel',
|
|
'grijs': 'grijs',
|
|
'water': 'water',
|
|
'luchtfoto': {
|
|
'url': 'https://service.pdok.nl/hwh/luchtfotorgb/wmts/v1_0/Actueel_ortho25/EPSG:3857/{z}/{x}/{y}.jpeg',
|
|
}
|
|
}
|
|
},
|
|
NASAGIBS: {
|
|
url: 'https://map1.vis.earthdata.nasa.gov/wmts-webmerc/{variant}/default/{time}/{tilematrixset}{maxZoom}/{z}/{y}/{x}.{format}',
|
|
options: {
|
|
attribution:
|
|
'Imagery provided by services from the Global Imagery Browse Services (GIBS), operated by the NASA/GSFC/Earth Science Data and Information System ' +
|
|
'(<a href="https://earthdata.nasa.gov">ESDIS</a>) with funding provided by NASA/HQ.',
|
|
bounds: [[-85.0511287776, -179.999999975], [85.0511287776, 179.999999975]],
|
|
minZoom: 1,
|
|
maxZoom: 9,
|
|
format: 'jpg',
|
|
time: '',
|
|
tilematrixset: 'GoogleMapsCompatible_Level'
|
|
},
|
|
variants: {
|
|
ModisTerraTrueColorCR: 'MODIS_Terra_CorrectedReflectance_TrueColor',
|
|
ModisTerraBands367CR: 'MODIS_Terra_CorrectedReflectance_Bands367',
|
|
ViirsEarthAtNight2012: {
|
|
options: {
|
|
variant: 'VIIRS_CityLights_2012',
|
|
maxZoom: 8
|
|
}
|
|
},
|
|
ModisTerraLSTDay: {
|
|
options: {
|
|
variant: 'MODIS_Terra_Land_Surface_Temp_Day',
|
|
format: 'png',
|
|
maxZoom: 7,
|
|
opacity: 0.75
|
|
}
|
|
},
|
|
ModisTerraSnowCover: {
|
|
options: {
|
|
variant: 'MODIS_Terra_NDSI_Snow_Cover',
|
|
format: 'png',
|
|
maxZoom: 8,
|
|
opacity: 0.75
|
|
}
|
|
},
|
|
ModisTerraAOD: {
|
|
options: {
|
|
variant: 'MODIS_Terra_Aerosol',
|
|
format: 'png',
|
|
maxZoom: 6,
|
|
opacity: 0.75
|
|
}
|
|
},
|
|
ModisTerraChlorophyll: {
|
|
options: {
|
|
variant: 'MODIS_Terra_Chlorophyll_A',
|
|
format: 'png',
|
|
maxZoom: 7,
|
|
opacity: 0.75
|
|
}
|
|
}
|
|
}
|
|
},
|
|
NLS: {
|
|
// NLS maps are copyright National library of Scotland.
|
|
// http://maps.nls.uk/projects/api/index.html
|
|
// Please contact NLS for anything other than non-commercial low volume usage
|
|
//
|
|
// Map sources: Ordnance Survey 1:1m to 1:63K, 1920s-1940s
|
|
// z0-9 - 1:1m
|
|
// z10-11 - quarter inch (1:253440)
|
|
// z12-18 - one inch (1:63360)
|
|
url: 'https://nls-{s}.tileserver.com/nls/{z}/{x}/{y}.jpg',
|
|
options: {
|
|
attribution: '<a href="http://geo.nls.uk/maps/">National Library of Scotland Historic Maps</a>',
|
|
bounds: [[49.6, -12], [61.7, 3]],
|
|
minZoom: 1,
|
|
maxZoom: 18,
|
|
subdomains: '0123',
|
|
}
|
|
},
|
|
JusticeMap: {
|
|
// Justice Map (http://www.justicemap.org/)
|
|
// Visualize race and income data for your community, county and country.
|
|
// Includes tools for data journalists, bloggers and community activists.
|
|
url: 'https://www.justicemap.org/tile/{size}/{variant}/{z}/{x}/{y}.png',
|
|
options: {
|
|
attribution: '<a href="http://www.justicemap.org/terms.php">Justice Map</a>',
|
|
// one of 'county', 'tract', 'block'
|
|
size: 'county',
|
|
// Bounds for USA, including Alaska and Hawaii
|
|
bounds: [[14, -180], [72, -56]]
|
|
},
|
|
variants: {
|
|
income: 'income',
|
|
americanIndian: 'indian',
|
|
asian: 'asian',
|
|
black: 'black',
|
|
hispanic: 'hispanic',
|
|
multi: 'multi',
|
|
nonWhite: 'nonwhite',
|
|
white: 'white',
|
|
plurality: 'plural'
|
|
}
|
|
},
|
|
GeoportailFrance: {
|
|
url: 'https://wxs.ign.fr/{apikey}/geoportail/wmts?REQUEST=GetTile&SERVICE=WMTS&VERSION=1.0.0&STYLE={style}&TILEMATRIXSET=PM&FORMAT={format}&LAYER={variant}&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}',
|
|
options: {
|
|
attribution: '<a target="_blank" href="https://www.geoportail.gouv.fr/">Geoportail France</a>',
|
|
bounds: [[-75, -180], [81, 180]],
|
|
minZoom: 2,
|
|
maxZoom: 18,
|
|
// Get your own geoportail apikey here : http://professionnels.ign.fr/ign/contrats/
|
|
// NB : 'choisirgeoportail' is a demonstration key that comes with no guarantee
|
|
apikey: 'choisirgeoportail',
|
|
format: 'image/png',
|
|
style: 'normal',
|
|
variant: 'GEOGRAPHICALGRIDSYSTEMS.PLANIGNV2'
|
|
},
|
|
variants: {
|
|
plan: 'GEOGRAPHICALGRIDSYSTEMS.PLANIGNV2',
|
|
parcels: {
|
|
options: {
|
|
variant: 'CADASTRALPARCELS.PARCELLAIRE_EXPRESS',
|
|
style: 'PCI vecteur',
|
|
maxZoom: 20
|
|
}
|
|
},
|
|
orthos: {
|
|
options: {
|
|
maxZoom: 19,
|
|
format: 'image/jpeg',
|
|
variant: 'ORTHOIMAGERY.ORTHOPHOTOS'
|
|
}
|
|
}
|
|
}
|
|
},
|
|
OneMapSG: {
|
|
url: 'https://maps-{s}.onemap.sg/v3/{variant}/{z}/{x}/{y}.png',
|
|
options: {
|
|
variant: 'Default',
|
|
minZoom: 11,
|
|
maxZoom: 18,
|
|
bounds: [[1.56073, 104.11475], [1.16, 103.502]],
|
|
attribution: '<img src="https://docs.onemap.sg/maps/images/oneMap64-01.png" style="height:20px;width:20px;"/> New OneMap | Map data © contributors, <a href="http://SLA.gov.sg">Singapore Land Authority</a>'
|
|
},
|
|
variants: {
|
|
Default: 'Default',
|
|
Night: 'Night',
|
|
Original: 'Original',
|
|
Grey: 'Grey',
|
|
LandLot: 'LandLot'
|
|
}
|
|
},
|
|
USGS: {
|
|
url: 'https://basemap.nationalmap.gov/arcgis/rest/services/USGSTopo/MapServer/tile/{z}/{y}/{x}',
|
|
options: {
|
|
maxZoom: 20,
|
|
attribution: 'Tiles courtesy of the <a href="https://usgs.gov/">U.S. Geological Survey</a>'
|
|
},
|
|
variants: {
|
|
USTopo: {},
|
|
USImagery: {
|
|
url: 'https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryOnly/MapServer/tile/{z}/{y}/{x}'
|
|
},
|
|
USImageryTopo: {
|
|
url: 'https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryTopo/MapServer/tile/{z}/{y}/{x}'
|
|
}
|
|
}
|
|
},
|
|
WaymarkedTrails: {
|
|
url: 'https://tile.waymarkedtrails.org/{variant}/{z}/{x}/{y}.png',
|
|
options: {
|
|
maxZoom: 18,
|
|
attribution: 'Map data: {attribution.OpenStreetMap} | Map style: © <a href="https://waymarkedtrails.org">waymarkedtrails.org</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA</a>)'
|
|
},
|
|
variants: {
|
|
hiking: 'hiking',
|
|
cycling: 'cycling',
|
|
mtb: 'mtb',
|
|
slopes: 'slopes',
|
|
riding: 'riding',
|
|
skating: 'skating'
|
|
}
|
|
},
|
|
OpenAIP: {
|
|
url: 'https://{s}.tile.maps.openaip.net/geowebcache/service/tms/1.0.0/openaip_basemap@EPSG%3A900913@png/{z}/{x}/{y}.{ext}',
|
|
options: {
|
|
attribution: '<a href="https://www.openaip.net/">openAIP Data</a> (<a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-NC-SA</a>)',
|
|
ext: 'png',
|
|
minZoom: 4,
|
|
maxZoom: 14,
|
|
tms: true,
|
|
detectRetina: true,
|
|
subdomains: '12'
|
|
}
|
|
},
|
|
OpenSnowMap: {
|
|
url: 'https://tiles.opensnowmap.org/{variant}/{z}/{x}/{y}.png',
|
|
options: {
|
|
minZoom: 9,
|
|
maxZoom: 18,
|
|
attribution: 'Map data: {attribution.OpenStreetMap} & ODbL, © <a href="https://www.opensnowmap.org/iframes/data.html">www.opensnowmap.org</a> <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>'
|
|
},
|
|
variants: {
|
|
pistes: 'pistes',
|
|
}
|
|
},
|
|
AzureMaps: {
|
|
url:
|
|
'https://atlas.microsoft.com/map/tile?api-version={apiVersion}'+
|
|
'&tilesetId={variant}&x={x}&y={y}&zoom={z}&language={language}'+
|
|
'&subscription-key={subscriptionKey}',
|
|
options: {
|
|
attribution: 'See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile for details.',
|
|
apiVersion: '2.0',
|
|
variant: 'microsoft.imagery',
|
|
subscriptionKey: '<insert your subscription key here>',
|
|
language: 'en-US',
|
|
},
|
|
variants: {
|
|
MicrosoftImagery: 'microsoft.imagery',
|
|
MicrosoftBaseDarkGrey: 'microsoft.base.darkgrey',
|
|
MicrosoftBaseRoad: 'microsoft.base.road',
|
|
MicrosoftBaseHybridRoad: 'microsoft.base.hybrid.road',
|
|
MicrosoftTerraMain: 'microsoft.terra.main',
|
|
MicrosoftWeatherInfraredMain: {
|
|
url:
|
|
'https://atlas.microsoft.com/map/tile?api-version={apiVersion}'+
|
|
'&tilesetId={variant}&x={x}&y={y}&zoom={z}'+
|
|
'&timeStamp={timeStamp}&language={language}' +
|
|
'&subscription-key={subscriptionKey}',
|
|
options: {
|
|
timeStamp: '2021-05-08T09:03:00Z',
|
|
attribution: 'See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile#uri-parameters for details.',
|
|
variant: 'microsoft.weather.infrared.main',
|
|
},
|
|
},
|
|
MicrosoftWeatherRadarMain: {
|
|
url:
|
|
'https://atlas.microsoft.com/map/tile?api-version={apiVersion}'+
|
|
'&tilesetId={variant}&x={x}&y={y}&zoom={z}'+
|
|
'&timeStamp={timeStamp}&language={language}' +
|
|
'&subscription-key={subscriptionKey}',
|
|
options: {
|
|
timeStamp: '2021-05-08T09:03:00Z',
|
|
attribution: 'See https://docs.microsoft.com/en-us/rest/api/maps/render-v2/get-map-tile#uri-parameters for details.',
|
|
variant: 'microsoft.weather.radar.main',
|
|
},
|
|
}
|
|
},
|
|
},
|
|
SwissFederalGeoportal: {
|
|
url: 'https://wmts.geo.admin.ch/1.0.0/{variant}/default/current/3857/{z}/{x}/{y}.jpeg',
|
|
options: {
|
|
attribution: '© <a href="https://www.swisstopo.admin.ch/">swisstopo</a>',
|
|
minZoom: 2,
|
|
maxZoom: 18,
|
|
bounds: [[45.398181, 5.140242], [48.230651, 11.47757]]
|
|
},
|
|
variants: {
|
|
NationalMapColor: 'ch.swisstopo.pixelkarte-farbe',
|
|
NationalMapGrey: 'ch.swisstopo.pixelkarte-grau',
|
|
SWISSIMAGE: {
|
|
options: {
|
|
variant: 'ch.swisstopo.swissimage',
|
|
maxZoom: 19
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
L.tileLayer.provider = function (provider, options) {
|
|
return new L.TileLayer.Provider(provider, options);
|
|
};
|
|
|
|
return L;
|
|
}));
|
|
</script>
|
|
<script>LeafletWidget.methods.addProviderTiles = function(provider, layerId, group, options) {
|
|
this.layerManager.addLayer(L.tileLayer.provider(provider, options), "tile", layerId, group);
|
|
};
|
|
</script>
|
|
|
|
</head>
|
|
<body style="background-color: white;">
|
|
<div id="htmlwidget_container">
|
|
<div class="leaflet html-widget html-fill-item" id="htmlwidget-d80f44d099c52f52297c" style="width:100%;height:400px;"></div>
|
|
</div>
|
|
<script type="application/json" data-for="htmlwidget-d80f44d099c52f52297c">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}},"preferCanvas":true},"calls":[{"method":"addProviderTiles","args":["Stadia.AlidadeSmooth",null,null,{"errorTileUrl":"","noWrap":false,"detectRetina":false}]},{"method":"addMarkers","args":[[42.72913124,44.27292342,43.52963074,43.01111813,43.07056204,44.94999126,44.94999126,42.58670086,44.7830591,42.97685654,44.01522514,44.17384857,43.9649966,43.96571419,43.9636829,42.69272367,43.37538975,43.022016,45.39706332,43.45809745,43.01194698,42.70700911,42.70700911,42.70700911,42.97945756,44.49998065,42.53550551,44.30938772,44.6061339,44.59716141,44.59716141,42.70709499,43.01468193,43.41649978,43.05391805,44.36307891,44.36307891,44.26045493,44.26045493,44.26045493,44.79945057,44.8020267,44.80328196,44.80327769,45.30182571,45.30197289,45.30381907,44.45520124,44.45520124,44.45520124,43.20797302,43.0824614,44.65274961,45.13389899,45.13693059,44.27001053,44.28615675,44.25927979,44.24728099,44.32572104,44.26850867,44.26525219,45.92680802,43.17643575,44.2528434,44.24184278,44.24184278,42.70744276,42.70744276,42.70744276,42.68546516,43.1135579,43.07379981,46.57114356,46.58494645,44.48863293,43.10211361,45.03437393,45.03001896,45.03001896,43.09002814,44.62925587,44.63145855,42.98421054,42.98421054,43.0765954,44.68517965,44.68529451,44.68529451,43.04717524,44.25815875,42.57314554,43.41381546,42.995379,43.03773622,44.510968,44.96661954,43.88775932,43.88786557,44.52821262,43.10211361,44.20863687,43.02888589,43.4723155,43.4723155,43.47711355,43.09840801,43.82914686,43.01309392,43.01309392,43.01309392,42.93273577,45.41652014,45.39706332,43.14175123,44.62139354,42.90802181,44.59466304,44.5118812,42.99452571,44.57373297,42.97349409,46.81513524,46.81513524,46.81513524,43.18046896,43.46577566,44.50549963,43.46181755,43.46008542,42.85879114,42.85777472,42.85777472,42.74171819,42.74171819,42.50862857,42.50862857,42.51871881,42.90501027,43.16553251,44.49820361,42.5676934,42.5676934,42.5676934,43.97672905,43.97698762,44.22775828,43.81233132,43.00411091,43.05086302,43.91429131,44.43942978,42.88699531,42.52665791,45.65406295,45.65406295,45.65406295,45.65523618,44.92922944,44.4733217,42.56951355,42.56951355,42.56951355,43.14630149,44.29275204,44.29384679,44.29101769,44.29101769,42.89712437,45.10796176,45.09860119,45.10938461,43.04203014,43.04203014,45.65406295,44.73815556,44.74029907,44.74029907,43.13267335,43.12953018,43.12953018,42.63247137,44.85674774,44.85674774,45.0460676,45.0460676,44.94887847,42.60484074,43.02401039,43.80373711,42.57604736,44.76498489,43.29023194,45.1908096,42.64045547,44.17368875,44.18828632,44.17368875,42.55659863,42.60609649,42.60954286,42.55041595,43.05522676,43.07875618,43.0649127,42.85530596,42.49984892,43.76159111,42.51009267,44.52240098,43.16976741,43.16534127,43.05697655,43.11739093,45.45960391,43.13550011,43.02061815,45.45960391,45.45960391,43.12101394,46.66638693,42.70709499,42.61295884,43.02720018,42.9655008,43.07774283,42.67095057,43.016209,44.20744079,46.01649755,46.01649755,43.19572747,44.62843552,44.9511207,44.95051638,44.95051638,43.54260377,43.54260377,43.00197822,43.00541417,45.40261364,45.41881315,45.40261364,45.40261364,43.92113894,43.60461369,43.60223893,43.60223893,42.9404927,43.06870371,42.66623628,42.57314554,43.01194698,42.98929612,43.00034043,43.11774906,42.88096068,43.09069312,43.05583245,42.7162214,43.73904006,43.74059553,43.05173637,42.7113076,42.7113076,44.38703365,43.57341638,43.57549648,43.57341638,42.92400922,43.29780198,42.59456995,43.09555027,45.64320881,43.17960229,43.79322291,43.7480674,43.00340278,42.56739765,43.30024527,44.38656164,44.47162766,44.30938772,43.00965021,44.35439712,44.53029804,44.51303715,42.57723323,43.78138255,45.94711035,46.13378448,43.0418905,45.31372284,45.31372284,45.31978132,44.02819461,44.02393239,44.02819461,44.93483439,44.93505181,44.81673297,42.87253789,43.10000524,44.17675657,43.06649796,45.94711035,44.29416297,43.97481509,45.32840622,44.21469034,45.32840622,45.32840622,45.24003559,45.24003559,43.09414019,42.97782007,43.91356787,42.55785585,42.56316799,42.56316799,44.63287735,44.63647344,44.63647344,44.21610443,44.1922963,44.1922963,44.91871799,44.92018562,44.91908527,45.07104245,45.07104245,45.07104245,45.00294677,45.00294677,42.92978742,44.03477806,44.27008817,43.33575672,43.32695825,43.33669944,43.09862841,43.01111813,42.74299499,42.51989617,44.16287946,43.6996256,42.95090283,43.77044197,46.71681922,42.67790854,42.995379,42.95451895,44.4845158,45.16670644,45.16609502,45.16609502,43.08419768,43.84747681,43.81025102,42.90978112,43.00435378,43.19800724,42.6816247,43.0968194,45.57385635,45.57385635,45.57385635,43.16519764,45.62481609,43.07576187,45.23441611,45.22556335,45.22556335,42.60862456,42.60631629,42.60631629,42.95451507,42.94380197,45.53809424,43.10285175,45.5287447,45.52874183,42.98195907,43.05700767,44.85208329,44.89755885,44.91443471,44.89961786,44.89998914,44.50883259,42.59790563,42.66344528,42.66527095,43.1479749,44.8515345,43.24443431,43.24253602,44.44045897,44.43697289,43.4285123,43.4285123,43.4285123,43.40387925,43.01962749,42.97804082,43.0490219,42.85372559,43.04718657,43.04718657,42.63165253,42.63165253,44.82202083,44.34933849,44.35339162,44.35430502,44.35182479,43.01470091,44.44348898,42.57800543,43.33575672,42.87327668,43.0624214,43.40289561,43.40289561,43.40289561,42.96490117,42.96415782,42.96650399,43.01977672,43.20598802,44.45350868,43.20501011,43.00953489,44.77756888,42.99852012,44.25993581,43.09038479,44.5118812,43.05786717,45.35816797,42.8301584,46.33595592,46.33595592,46.33595592,43.38413258,44.62984754,42.67274056,44.03710698,42.91682935,43.0048754,43.0048754,43.88288136,42.88216191,43.24863549,46.34621111,46.34621111,46.34621111,42.85897079,43.30711976,42.99776566,42.90547182,43.81267617,43.72247297,43.7684179,43.24251603,45.13783746,43.47337996,43.00444403,42.77495662,44.24728099,44.5068349,43.09751336,44.98130992,43.05330505,43.4109651,42.7874815,42.78598864,43.18918339,42.59602341,44.81178004,44.81178003,43.19155205,43.69467498,44.92370426,44.92387607,44.92387607,42.8424069,42.95093917,42.84251718,42.84185067,42.95841174,42.88901071,44.26517558,44.49362626,42.65563864,42.59362524,42.59362524,43.07295517,44.29193328,44.48967194,43.0682998,42.96429743,45.43748263,45.43748263,45.43748263,44.5616185,44.5616185,44.5616185,44.87355289,44.87503352,43.83600195,43.83816188,42.67171156,42.67965622,42.67242854,44.72628611,44.72623078,44.72143679,43.05333151,42.94845222,43.08897699,44.52989336,44.77775708,42.93535724,44.77775708,44.77775708,43.07845725,43.81602592,43.10090671,43.09761427,43.20467186,43.71050355,43.11077304,44.98130992,43.25106208,43.02383156,45.16857644,44.16770303,43.78140235,43.7480674,43.7480674,43.77474136,42.77003273,44.85208329,43.97000322,42.76685954,43.81233132,43.06566824,43.42849295,42.99126952,43.75022164,44.77865511,43.0836665,44.75910767,44.75910767,44.75910767,43.38577793,43.38577793,43.50644114,43.73128831,42.98401465,42.98600072,42.98600072,44.29383109,42.9858936,43.08359002,45.45457085,45.45457085,45.45457085,44.28079298,45.93010408,45.92473064,45.92473064,44.803219,43.79519419,43.76847309,42.5484632,43.01327686,44.59374537,43.01081882,43.79616921,42.57274179,42.89158257,42.90382763,44.30467688,42.93273577,42.94365748,42.92304899,44.52041206,46.53358379,44.313666,42.91387588,44.2540395,42.76860077,44.20029273,44.3385072,44.44428026,42.51971523,42.58304017,42.99465393,44.28272809,43.05560847,44.09261758,43.08516661,44.01264961,44.96905595,43.00697421,42.89594299,44.5194663,42.68546516,43.07772367,42.72184672,45.67095534,45.66358103,44.36756393,44.384465,44.384465,44.26314519,44.26314498,43.81593329,43.25321254,44.94941485,43.07524215,44.0927991,44.0976339,44.08613522,42.56274676,42.9399995,42.50206642,45.24730301,44.51510001,44.2220755,43.7480674,43.7480674,43.22669674,44.26517612,45.12682036,45.12682036,45.12682036,42.75800302,44.88682659,44.88682659,44.88682659,45.16857644,45.16857644,44.47272725,44.4672496,44.4672496,42.74141388,43.09091288,43.11651168,42.97789051,43.13473834,44.66997968,45.05267406,45.05299679,45.05299679,42.98028463,46.13378448,43.05157002,43.14630149,45.63074281,45.62643888,43.16685877,43.32128396,43.28514093,42.99462572,43.09347978,42.60669729,44.68163086,43.00564039,43.76158403,44.96927364,44.35942155,43.06186049,44.59245253,44.59245253,43.10621879,45.77385534,45.77562345,45.77564593,43.78708654,46.70691074,44.48880178,43.8504981,43.8504981,43.43727396,43.14224569,42.93413716,42.94044414,43.01195944,44.96519502,42.95643567,42.95771618,43.11893695,44.29231053,44.29410893,44.76770214,44.86139765,44.76526438,44.84540077,44.84540077,42.56300892,43.04768745,44.37007614,42.50217364,43.00947681,44.29174002,42.93869431,44.91444212,43.80005021,43.12873071,42.97830164,43.06484519,43.10887539,43.1014341,42.58318086,42.72940866,43.15488458,42.69219916,43.07711393,43.306598,43.21940393,42.61999016,44.88809942,45.61079472,43.03923784,44.95669799,43.111987,43.14396536,43.02604115,43.00801831,46.01772465,46.00590308,46.01578911,46.01089237,46.01792673,44.42489444,44.42894761,43.95554376,45.04076969,42.989915,43.05860898,43.79616921,43.00957169,43.0529572,43.0529572,43.0529572,43.04479653,42.93701024,44.28133062,44.13698252,44.13698252,44.13698252,44.93283971,44.54305638,43.02545442,44.76629005,42.61698206,43.65806528,43.65671643,45.50060685,45.49873422,43.77201725,45.22185068,45.22185068,43.97215155,43.96739222,43.9612555,43.06344506,43.22370919,42.97945778,43.31052493,43.3185088,44.17195511,42.98530335,43.07074707,44.16863889,43.01343877,43.81233132,43.73498508,44.98249001,43.44536662,43.44536662,43.44536662,43.74084931,43.18852998,43.07479907,44.23732528,42.74694722,43.02862776,44.34052721,44.34052721,44.33732586,44.3385072,44.29437652,45.06126246,44.59184019,44.55978892,43.82923288,43.8397946,44.50713156,44.39017376,45.06126246,44.97997174,44.98463653,44.98555879,44.97997174,43.02475837,42.98564958,44.31025311,44.28278298,46.45570778,46.45570778,43.33778322,42.93973414,45.77562345,43.78782139,44.36849913,44.36849913,44.36849913,43.17576506,43.00979219,42.58347825,43.9586067,43.0856308,43.0856308,43.01470091,44.5036431,44.50160446,42.93183761,42.93036244,46.56094965,43.00427062,45.5287447,43.11915413,43.34104899,43.34104899,43.34104899,43.14848608,42.7763791,43.48061906,42.67192243,44.51147951,42.64518056,44.11082422,43.06912306,43.70289586,43.32473703,43.01254988,43.12610374,43.73812555,45.64740031,43.04874355,44.26700882,42.83838946,42.83838946,44.2540395,43.44733038,42.70182382,42.59747957,44.0804912,44.20334563,44.00910654,43.76217438,44.51902939,43.04199612,43.00572431,44.52832123,43.00403459,42.72653825,43.00226663,42.54687323,42.76423307,45.04279567,44.51287329,44.34686201,44.34686201,43.34024735,43.33159797,44.93689732,44.96009154,43.07027833,42.70092765,44.25492124,42.93811597,43.82914686,42.59082455,42.59082455,42.73231558,44.52025213,44.87223439,43.02155743,44.27538598,42.68501865,42.67062491,45.1878963,44.52260344,44.25725583,43.0824614,42.9162118,44.54101708,43.31349794,44.51954018,42.70762606,43.094474,44.59340902,43.23269439,42.57723323,42.56756899,42.58920718,42.57113158,44.87223439,42.9697358,43.00744291,43.00957169,43.00957169,43.00936847,43.52282666,43.52478315,43.52478315,44.45276052,44.45276052,44.45276052,43.49420852,43.49420852,43.59570783,43.91429131,44.44317355,43.92417293,43.9144741,43.11518377,44.26175921,44.51550733,43.09350293,43.06905381,43.07819728,43.12244779,43.00957198,44.95349211,42.71012594,44.14396512,43.7395066,43.7395066,43.7395066,44.94081021,42.94884254,42.97661376,43.10522861,43.01221934,43.01281261,43.80316873,43.81025102,43.57928396,43.57928396,43.57928396,44.00891709,46.78121078,45.97778141,43.80617452,43.0051424,45.46390863,45.47178897,45.47178897,43.07732217,43.06353581,43.09655245,43.79459686,43.11536391,43.09972533,43.5876259,42.85323121,42.57340453,45.22185068,43.08625734,43.07066365,43.08215815,43.21852451,46.56853723,46.66457218,43.13583297,45.88635318,45.88740788,45.88740788,45.39781789,44.80662454,43.79741828,43.94574864,42.82042933,44.14653006,42.90369216,42.75739819,42.53629226,42.52268887,43.10765158,42.85140065,42.85140065,42.55839463,44.46463982,43.1472529,44.59276178,45.5612946,43.0856308,43.55870781,44.76629005,43.22672666,42.52268887,43.78809098,43.99396875,44.95138971,44.95138971,44.95138971,44.51112939,43.02728428,43.00724729,42.77513607,43.59376126,45.30435939,44.1769375,43.78909493,43.00236045,44.45267608,43.46230834,42.96413791,44.52260344,43.30887824,42.65272127,43.04133741,44.65237071,44.38697986,43.40409683,43.19631277,44.95434978,43.0532147,42.83146057,44.08004967,44.37555397,44.43604289,42.57225742,43.04776775,43.14327142,44.59184019,45.31372284,44.28781549,44.28328931,44.28781549,44.28781549,44.28781549,42.78448411,44.91871799,44.4597183,44.85296137,43.31837951,43.31361987,43.31297478,43.30988999,43.84469689,43.84364608,44.51571422,43.58958314,43.58958314,43.58958314,44.81925872,43.02024597,43.74125591,43.79559685,43.06175222,43.09299839,43.01500002,42.96523868,44.73647797,44.73647797,44.73647797,45.5688795,45.5688795,45.5688795,42.91898442,44.54622914,44.54807496,44.54622914,44.54910759,43.70851714,42.64627146,43.22764233,44.51872699,43.03317839,42.68382062,44.10085339,44.66817349,44.53458185,43.10079869,44.24316997,42.9697358,44.16620976,42.58448288,45.02634822,44.75424737,44.45823548,44.4597183,42.99138247,44.78966575,43.12776866,43.16896509,42.96591714,45.09097124,42.54602676,43.13878633,44.27153196,44.23062915,44.92921618,44.93311783,44.92921618,43.10570754,46.44373816,45.08234945,45.09551775,45.09335443,45.08879739,44.67722991,44.67316712,43.71183566,43.70497141,43.71183566,43.70497141,43.08628769,43.16414626,43.1631451,43.16415438,43.09308684,42.69251543,43.16480545,44.67103804,44.65940778,44.65822818,44.4896001,43.062079,43.78782139,43.78809037,43.50258528,43.50432398,44.46297029,44.48930181,43.01176854,44.12138625,44.50714397,44.82867591,44.23910872,42.58490363,43.06288214,43.41883275,44.39401754,43.13608063,43.17939859,43.62729627,44.56129854,43.04539956,44.76868969,42.85511239,45.14407063,45.14173558,45.13991485,46.32336884,44.07451941,44.07451941,42.5141048,44.79595655,44.21139219,43.13667014,44.87109131,44.97889446,43.16482601,44.86731775,44.87438679,46.16963792,45.18144724,42.51829117,44.03302533,45.1908096,43.37558425,43.14277007,43.14268894,43.06096084,43.07184053,44.85936812,43.1000091,43.1000091,43.0569134,43.04214928,43.04046593,43.05900098,42.96125211,42.92755807,43.97916729,42.77451208,42.78111328,43.039862,43.04224336,43.06329526,43.06666676,43.05843637,43.06091185,42.88090086,43.04251124,43.08865582,43.10781639,43.06204099,43.08557816,43.04514676,43.06854133,42.99108616,43.12770577,43.07594603,43.13825977,42.99399723,42.85739141,42.86400611,42.86400611,45.82298029,44.23887761,44.23887761,42.93606848,43.01181025,42.99376651,42.69945197,44.570705,44.570705,44.570705,43.07194026,43.06142157,42.69022202,44.06848766,42.5869026,42.59880518,43.79616921,43.79616921,42.74299155,42.74299155,42.74299155,42.97855004,43.13953149,44.79698538,44.79514644,44.79345933,44.87312559,43.0022939,43.0022939,43.00444492,43.00681373,43.00631884,43.00368498,44.90061205,43.0682405,43.56084555,42.87344852,43.85702576,42.88517962,42.90057573,44.00042009,44.00042009,42.573398,44.59963085,43.00139178,43.13146337,42.73529936,44.00042009,44.00042009,44.00042009,44.19651451,44.16232557,43.05182136,44.55905411,44.55905411,44.55905411,44.30912437,44.30912437,45.77265793,42.92845611,45.20968122,45.20968122,45.20968122,42.98921733,42.99596334,44.25917763,42.80542186,42.80223468,42.80113684,43.95279416,43.94752319,43.94752319,43.08806177,44.55118259,43.87630509,43.87630509,44.37208725,44.38608992,45.11288683,45.09850974,45.10156288,45.11373653,45.11290439,45.11288683,42.57314554,43.06527957,45.78216312,45.78216312,44.51302568,43.13939306,43.00163616,43.0843656,42.85482244,42.85482244,42.77950092,43.35852791,43.35852791,43.06677991,45.1472489,43.10714436,43.46888597,44.32859817,44.313666,44.84510201,44.04610059,43.77649054,43.01825676,44.99519154,43.15591475,46.1583994,43.17732386,43.08437551,45.40261364,43.85805286,44.9013481,44.51287329,43.89560205,46.7092977,46.00443705,45.93453319,46.15883503,45.91493595,45.93640677,45.93640677,45.91493595,43.84747681,43.11436487,42.60409014,43.19398229,42.78234195,46.1566573,44.8453569,43.8428642,46.5842405,46.59196155,46.58396644,46.15662941,46.15662941,46.1566573,45.64543899,44.83525268,43.76159111,43.07559518,45.11290439,43.06134014,43.08628769,42.80519775,42.87534937,42.88778742,42.89218875,43.95821729,43.68279137,43.68529948,43.68529948,44.87892298,44.04248738,44.03347324,43.1097285,43.09930269,44.87907513,44.86983261,44.87327302,44.9013481,44.8909725,44.28133062,43.82914686,44.91443471,43.04339797,43.78809037,44.0502349,44.04630039,44.04630039,43.87639484,43.8926126,43.88288136,43.04569266,43.04569266,43.62489281,43.62482137,43.62482137,43.00711707,43.03358901,42.92845611,42.93257912,42.91307442,43.25272181,45.32821651,45.3323491,45.33070127,45.33071168,44.58230982,44.58092819,44.58092819,43.31837951,44.94934199,44.94934199,44.94934199,44.80772022,43.78001787,43.47703347,43.47703347,43.47703347,44.52414478,42.87399382,42.87399382,42.87789204,43.53505808,43.53395947,43.53395947,42.62550556,44.28457132,43.11593807,45.94686041,42.71769761,43.10811369,42.87287137,42.685481,43.78726421,42.6081417,44.07370084,42.63090579,43.49232098,43.30711976,44.94927811,43.11134316,44.3816941,42.63103145,43.75485435,42.63090579,42.63090579,44.48778298,43.12522331,43.34427314,44.03504257,43.03880853,43.19919551,42.87149272,42.80619525,45.62551175,45.63589954,45.63589954,44.44412288,44.44412288,43.01718807,43.88316207,45.05873572,45.05679802,45.05679802,43.07379981,43.07606852,44.44681182,46.06281028,46.06281028,45.69356205,45.69356206,45.69356206,42.62744893,42.59428429,43.75524433,43.78140235,43.04900774,45.17703468,43.54053265,44.48715979,44.38593738,44.44416235,44.44268387,42.73980172,42.74171931,42.55925617,42.90832616,44.47824787,44.63315911,44.63634248,43.74519406,44.4980274,44.51303715,43.07883298,42.99266471,44.34987835,43.39011035,43.55930539,43.56320996,43.55868412,42.69307832,42.69307832,42.69307832,42.55396203,43.39850102,43.38957794,43.39106174,43.04214928,42.98194799,45.23281823,45.23278608,45.23281823,42.51948075,43.17960229,44.83004544,43.5388157,45.18124208,43.46515454,43.45641246,42.78412467,43.99010727,42.92674408,42.9299811,43.18461113,43.1107252,44.50034059,45.54410125,45.54410125,45.54410125,42.67490256,44.4980274,44.75424737,44.7594397,44.75694469,43.84406701,43.03777086,46.01649755,44.66198375,42.98929612,44.65885922,42.91907481,44.78865258,43.85702576,44.25917763,42.74014501,42.70938882,42.72524027,42.5482309,43.0682694,43.54229249,43.54229249,43.54229249,43.55469934,43.55469934,43.55469934,42.9164605,42.7979994,44.03100955,44.27134624,44.01522514,42.95410887,42.74090416,44.30688983,44.54537734,44.03722808,43.5225594,44.14822297,44.15380973,42.54607011,44.84061334,44.26850867,42.58318086,45.64829026,45.32779709,45.3244908,45.32423661,44.92992302,45.50013276,45.49873422,43.12321827,43.25014809,43.34908515,43.3179314,43.31849429,43.44993496,43.34908515,44.25573606,43.12043995,45.2039746,43.0010984,43.44592754,43.44298357,43.83630764,43.83630764,42.92005096,44.37373514,44.94010566,44.85982965,44.86139765,44.83939019,44.85982965,44.86203799,42.95213284,42.95213284,42.95213284,43.12576452,43.27554019,43.17876261,43.18105991,43.17811317,44.27897276,43.19355081,43.19355081,43.1928534,43.1928534,44.90556053,43.7684179,43.17509745,43.07048838,43.19320987,44.10680217,44.10680217,42.55280721,45.00204037,44.06998148,45.40462789,43.75585558,43.02153533,43.06860864,44.78663838,43.98701832,43.77068014,42.53264091,45.5612946,42.90214846,44.96755611,44.50481871,42.68205527,43.63976214,42.59327054,43.57549648,42.99559154,43.11792804,43.25674542,42.93939645,44.84313713,43.00892344,43.41408666,42.87744467,42.9180006,44.27083952,42.60908978,42.96740675,44.83041482,42.68281615,42.57063194,44.02853565,42.75096476,44.46378771,43.06495927,43.05361356,42.97476003,43.80366996,43.80366996,43.80950089,43.78729249,44.62982501,44.62982501,44.62982501,43.32400107,44.89222723,43.18445798,43.75290176,43.75412557,43.75412557,44.85674774,45.12939436,45.69356206,42.72654078,43.78137261,44.98225787,44.98156993,44.97336294,45.41091406,45.407755,45.407755,44.98156993,42.96770712,42.54783478,43.92798417,43.13637052,42.93633278,42.91895777,43.28339001,43.28125568,43.09888372,43.38480319,43.00244309,44.82252905,43.09219879,44.90121977,43.5647661,43.00957169,45.93453319,46.15883503,43.80005021,43.84364608,42.69331399,44.23809624,43.17733143,44.80772022,42.8927876,43.01562227,43.26526597,43.26526597,43.26526597,43.0630141,44.89055294,44.89055294,44.89055294,44.89055294,44.50213337,44.50213337,43.11780105,43.18054598,43.05381279,44.00028973,43.01962749,42.50720105,44.76919546,44.75917983,43.73733863,43.71914376,43.73733863,43.75709147,45.73002056,45.72999727,45.73002056,42.86836619,43.74583224,44.82051746,43.07228925,43.11780105,44.44417651,44.44417651,43.08806177,43.07931813,43.08712954,42.57541886,42.57541886,42.57541886,43.05106171,43.08640558,43.12395742,43.42451442,45.78541865,45.78541865,43.33067015,43.33012986,43.3307487,46.34621111,42.63843101,45.11346829,45.1118713,45.1131245,43.01339986,43.01339986,43.0882172,43.72085258,42.99307718,44.7809649,42.92101325,42.92101325,44.90787452,44.00430874,46.78048023,46.78048023,43.09446642,43.74717729,44.77202486,44.77202486,44.77202486,42.56422171,43.93797461,43.03773622,44.92010309,44.51892669,42.52997431,42.53201995,42.52997431,42.87829646,43.94989,43.9487657,43.9586067,43.94849453,43.78803194,44.75932325,44.75932325,45.83721652,45.84203247,45.82755746,43.08115834,43.62183202,44.19933269,44.82824029,44.82824029,44.82824029,44.96158165,44.96158165,44.96158165,42.54602676,42.71318601,43.05710662,43.0594547,43.78699191,43.2172951,43.00054601,44.2447947,43.06571729,45.07774369,44.96417886,44.53982256,44.91755973,44.07419333,44.07419333,44.07419333,42.57285751,43.66576717,43.14423487,43.0042954,43.14954449,43.04130997,42.92344352,42.5863473,44.80565398,44.80581753,44.80581753,43.14528458,44.83592585,44.63671314,44.48251611,45.79059523,42.99951474,43.43912913,44.50324897,43.0160006,43.07749554,43.85252161,43.02425111,43.17307415,43.1759037,43.17994115,44.69844269,44.23024669,44.83232566,43.11335836,46.70288262,46.70728136,46.69536749,45.00048801,45.00048801,44.41098829,43.12073633,43.03427067,44.18728545,45.478284,44.51089026,43.09730237,43.12723813,43.04240322,44.24728099,42.5223692,42.71611615,43.7559228,42.77400366,43.51402384,44.4975054,44.98157589,43.40396239,43.04594991,43.1610543,44.95388897,44.95388897,43.30943742,45.79453255,45.79453255,45.79453255,43.12584795,42.73921521,45.0519849,44.74054101,44.73927781,43.97208709,42.93701024,44.01522514,42.50639043,43.20373122,43.03358901,43.96970573,43.97826618,43.98087355,45.47819707,45.47671834,45.47671834,44.54264808,44.54264808,43.0538264,43.31774832,43.08051146,43.99827778,43.99827778,42.77414234,43.05571031,42.54345044,43.80822707,44.00540266,42.54962247,42.50923865,44.21050404,44.21050404,44.21050586,42.99192672,44.17150718,42.55507469,42.55507469,42.62679892,45.39781789,45.39781789,45.39781789,44.1769375,43.04131893,42.6770013,42.69283289,43.02047706,45.48519537,45.48519537,45.48519537,43.04685401,43.77454297,44.06873467,44.06887198,44.06887198,44.2623973,44.49495586,43.16536353,42.662615,43.06560798,43.06381409,44.03520138,43.04443053,42.98820058,43.55870781,42.55041595,42.98424333,42.99596334,43.00435378,42.93664742,43.02280299,44.35423477,43.9612555,44.94468319,43.15488458,43.55679346,43.55679346,43.55870781,43.55870781,45.44161824,45.43889641,42.74664558,44.90290852,42.72647253,43.00744291,43.02161574,44.83592585,42.669776,42.53017791,44.12842131,46.67790732,46.67387681,46.67387681,43.46857991,42.69198176,44.65748563,45.18537308,44.01633606,44.52773325,42.84225222,43.05843226,42.8343336,44.39646975,45.36127783,45.36127783,44.50421314,42.59819817,44.08019996,44.8745088,44.18329913,43.42808018,42.76374588,43.1908975,43.19200171,43.19200171,43.19200171,43.76517529,43.19155205,43.20467186,43.02238801,42.99307718,43.01680993,42.99307718,43.00248035,43.01680993,43.18064986,43.18792285,43.18344792,43.17553198,43.18139467,43.19872176,44.33595993,44.33595993,44.34618826,44.34703583,43.6259234,43.6259234,44.98249001,44.95344409,45.39046415,45.39046415,45.39046415,44.07080079,43.05934091,43.04358467,43.05934091,43.08556626,43.08556626,43.08556626,43.55930539,43.53996148,44.48308733,43.18469693,45.87491492,45.87580014,43.29795781,45.87580014,44.03302533,42.97945778,44.58866546,43.41434071,44.44317355,44.44069997,44.43942978,45.13818986,43.00444116,42.78354245,43.4723155,44.26850867,44.52133711,43.06890933,44.02324431,42.96806903,44.97461773,43.06839171,43.4109651,43.0593926,43.01735509,42.71603383,43.90230355,43.90334495,43.90124458,42.6763908,43.78809037,43.52963074,43.64786167,43.65033158,43.65033158,44.77775707,43.89494289,43.89494289,43.88436243,43.28735875,44.9101672,43.48039511,43.48039511,43.48039511,43.05571031,44.26800992,44.86120216,43.18166365,42.74164738,44.43648557,44.32386084,44.32414357,44.32403163,42.57487488,45.1559211,45.1559211,45.15597845,43.01680993,43.01680993,43.1083101,43.11164292,44.36556675,44.36556675,43.09219879,42.82838162,42.82558873,42.83013443,42.96845333,43.06825655,42.95451895,42.95328458,42.55052069,42.96475962,43.06522171,44.17542348,44.17628716,44.47800687,44.68529451,42.57724632,42.57654351,42.57654351,42.9676387,44.9819208,43.13846169,43.47776626,42.51546546,43.45806228,42.67195804,43.21695729,43.72249377,43.04358467,43.01449504,44.26369352,44.10968661,43.21745481,42.63603001,44.1081148,44.11903307,44.11903307,43.06459239,42.84846429,45.81900844,45.81900844,45.81900844,42.66944132,44.29491428,43.04374809,43.6379854,43.62399968,43.1564339,43.1564339,43.1564339,43.04054217,44.37828337,43.01470091,43.01470091,43.47703347,44.30938772,44.82868706,44.82507529,45.94443612,43.66243918,43.66243918,43.66243918,43.66243918,42.76207203,45.39714596,44.21986088,44.21986088,43.03698552,43.04280409,43.55890635,42.58563116,43.15307593,44.3631053,43.33293305,43.77535909,44.32230908,44.31707043,44.31995538,44.02786042,43.24959667,42.79890488,42.74148062,42.72787517,42.98910786,43.91795948],[-87.79616195,-88.32776088,-90.02458858,-89.2886024,-89.39503924,-90.3312047,-90.3312047,-89.64288994,-88.05544309,-88.0110754,-88.57398838,-88.46179991,-89.81055532000001,-89.80226030999999,-89.81688216000001,-89.01098924,-88.29782485,-88.44401899,-91.84312142,-89.73846521999999,-87.95341207,-89.43405101,-89.43405101,-89.43405101,-88.03451662000001,-88.01799836000001,-89.01298508000001,-89.91671404,-87.44026847000001,-87.44576254,-87.44576254,-87.78975504,-87.92045219000001,-88.33548231,-87.92248465999999,-91.94311983,-91.94311983,-89.41302057999999,-89.41302057999999,-89.41302057999999,-91.41077639,-91.44184932,-91.43884842,-91.4396036,-92.35025154,-92.34556996000001,-92.34568527,-89.28539386,-89.28539386,-89.28539386,-88.20121020000001,-87.93155222999999,-91.60862827,-89.17570995,-89.15532987,-88.40541106000001,-88.40672302,-88.41006634999999,-88.37351529,-88.38088077,-88.42832838,-88.40514515,-89.69251465000001,-89.41793079,-91.49629808,-91.48713619,-91.48713619,-89.86889153,-89.86889153,-89.86889153,-89.05079515,-88.3472919,-88.26200261,-90.88393351000001,-90.87500641,-88.07497701,-87.95724010000001,-90.07826656,-90.08574360999999,-90.08574360999999,-87.88376762,-90.010884,-90.00681681,-87.96231854,-87.96231854,-87.9416452,-91.13866451,-91.14127947,-91.14127947,-91.14448577,-88.45663116999999,-88.41998434,-88.1820771,-89.53753632,-89.37737868000001,-87.93337824,-92.37960516,-90.98528013000001,-90.98274483,-89.51780961,-87.95724010000001,-88.45114913,-88.20551424999999,-89.74947964,-89.74947964,-89.75585792,-87.9422835,-88.83847062,-89.89537314,-89.89537314,-89.89537314,-88.84967076,-92.03370434,-91.84312142,-87.98346046,-88.04554837000001,-88.11797706,-88.09067423,-88.00006365,-87.8987973,-88.08597385,-87.90605634000001,-90.81908111,-90.81908111,-90.81908111,-87.90097865,-88.82091053000001,-88.05117111,-88.81994102,-88.83777718,-89.54163791000001,-89.54613666,-89.54613666,-90.32638795,-90.32638795,-89.06254789,-89.06254789,-89.03842983,-88.01740392000001,-88.09250768,-89.56462034,-90.38426011,-90.38426011,-90.38426011,-88.94139002,-88.94005466999999,-88.37930967,-88.48718631,-88.2765924,-87.95809079,-88.03536751,-88.09293408000001,-88.20960770000001,-88.59423785,-91.55364967,-91.55364967,-91.55364967,-91.55399814,-89.20991503,-88.44667545999999,-89.87611885,-89.87611885,-89.87611885,-89.36964072000001,-90.86402200000001,-90.86304864,-91.20947294,-91.20947294,-87.87480343999999,-91.47642212,-91.48960889,-91.48377977,-91.12625365,-91.12625365,-91.55364967,-88.45223304,-88.45285641,-88.45285641,-90.70356968,-90.70236165,-90.70236165,-87.83238237,-88.98238596,-88.98238596,-92.03797469,-92.03797469,-91.04227788,-87.85449724,-87.91472558,-88.67520526,-87.82900125,-88.60112921,-89.73253822,-89.67147315,-88.11178248,-88.06517613,-88.09730648999999,-88.06517613,-88.05227205,-89.38402290000001,-89.38566983,-87.8359543,-88.12231534,-88.08784382,-88.14488443,-89.37562259000001,-88.32948449,-90.57963644,-88.31829651,-87.93094501,-87.98347544000001,-87.98283115,-87.93813225,-87.99051264000001,-91.27347325,-88.02361293,-87.92185625,-91.27347325,-91.27347325,-88.02175749,-92.10010783,-87.78975504,-87.85710098,-87.98862594000001,-87.9040024,-88.11318006,-88.25574626,-88.24772470000001,-88.45210287,-90.49643555999999,-90.49643555999999,-89.22718354,-91.95616527999999,-91.14404193,-91.14779765,-91.14779765,-89.1017683,-89.1017683,-89.02982431,-89.01016939,-91.73766132999999,-91.73904199,-91.73766132999999,-91.73766132999999,-90.27962921,-88.28211862000001,-88.28902859999999,-88.28902859999999,-88.00088559,-89.43939946,-88.5233392,-88.41998434,-87.95341207,-87.94572409,-87.93156379,-88.00061386,-87.86663335999999,-87.97530654000001,-87.91076916999999,-87.87250312,-90.78372783,-90.77983976,-87.90253882,-90.98260249,-90.98260249,-88.74583527,-87.82249743,-87.82631268999999,-87.82249743,-87.94253077,-87.99657969,-88.43779071,-87.96906799999999,-89.40900605,-89.219505,-91.21878622,-87.71454249,-88.01947216000001,-88.10721371,-88.38302890999999,-89.8201445,-89.37519703,-89.91671404,-89.50020075,-89.16859113,-88.05485183,-89.59848653,-87.84204224,-88.44264115,-90.45306290000001,-90.57669806,-89.44934833000001,-91.66134371,-91.66134371,-91.65693684999999,-88.17375552,-88.17590403,-88.17375552,-91.41142215000001,-91.42132683,-91.51341183,-88.33002017,-89.5076849,-87.5857611,-87.9494407,-90.45306290000001,-88.40159231,-88.93978795,-92.17340598,-88.54554213999999,-92.17340598,-92.17340598,-92.26933622999999,-92.26933622999999,-87.95881356,-87.89338918999999,-87.73216811,-88.85641079,-88.85715596,-88.85715596,-88.75423435,-88.75552135,-88.75552135,-88.427071,-91.77887939,-91.77887939,-90.32036457,-90.31893289,-90.31891675,-88.03622154999999,-88.03622154999999,-88.03622154999999,-91.72324828000001,-91.72324828000001,-87.98641947,-89.51691169999999,-88.40635902,-89.02182200999999,-89.02043376,-89.01948688,-87.97868855,-89.2886024,-89.05213146,-89.06188141,-88.45967735000001,-91.01497737,-87.94096571999999,-87.73337208,-92.12307298,-88.28344955,-89.53753632,-88.05634956,-88.04898986000001,-91.14675531,-91.14200390000001,-91.14200390000001,-89.19857009,-91.24152841999999,-91.25043298,-88.06145372,-89.54445105000001,-88.10749383,-89.00079571000001,-88.00815325000001,-88.92539071,-88.92539071,-88.92539071,-89.25421901999999,-89.43558399,-89.48213684,-88.00493382000001,-88.00106436999999,-88.00106436999999,-90.43751647000001,-90.43676159,-90.43676159,-87.84884302,-87.86883288999999,-92.02124476,-87.89657525,-92.03010619,-92.03010494999999,-87.95349106,-88.40522627,-89.63523490999999,-89.59482101,-89.57333991,-89.60556391,-89.50845612000001,-87.96879202,-88.70607412,-90.12342538999999,-90.12491145,-88.01891265,-91.47881328,-89.32698447999999,-89.33535924,-88.0427426,-88.03878742000001,-91.19541067999999,-91.19541067999999,-91.19541067999999,-88.17379751999999,-88.04267018,-87.87559682,-89.08442268,-87.85610052,-89.08037287000001,-89.08037287000001,-88.66098109000001,-88.66098109000001,-91.53550752,-87.82593516,-87.82358533999999,-87.82578688,-87.82325568,-89.30033675,-88.05187850999999,-87.83963475,-89.02182200999999,-88.3311965,-88.10521550999999,-88.71608945,-88.71608945,-88.71608945,-90.14043226,-90.14361594,-90.14648683999999,-87.9520766,-87.93999823,-88.0304417,-88.71592337,-88.46472566,-91.92865181000001,-87.9039451,-88.28327992,-87.94886898999999,-88.00006365,-89.31185275999999,-92.63494842999999,-88.07124324999999,-91.25557172000001,-91.25557172000001,-91.25557172000001,-87.89412174,-91.957549,-88.29383369,-88.52188359,-87.85507449000001,-88.23483953,-88.23483953,-91.19971649999999,-88.46255124,-89.33318873,-91.83120071,-91.83120071,-91.83120071,-88.43374858999999,-88.00076605,-89.53704934,-87.926598,-88.48426317000001,-87.72107702,-88.45010775,-89.33489049000001,-89.14368806,-89.73040484000001,-88.80260661,-88.93755579,-88.37351529,-87.99330127,-89.35441280000001,-89.59761743,-88.00627894,-88.16357957,-88.41752138,-88.41799494,-89.20353179999999,-88.43146290999999,-91.49635391,-91.49635391,-88.72402959,-88.36137101,-89.9620537,-89.96111129000001,-89.96111129000001,-89.07102371000001,-88.05850049999999,-89.07344734,-89.07630856999999,-87.97426914,-87.90281211,-88.39444345,-87.94921116,-89.03571522999999,-87.84140456999999,-87.84140456999999,-88.01298905,-88.40133151000001,-87.98280511,-88.05797038,-88.09172843,-89.18386815,-89.18386815,-89.18386815,-91.42067197,-91.42067197,-91.42067197,-91.68323478000001,-91.68666519,-88.01482892999999,-88.01501062,-88.53145693,-88.52956260000001,-88.53853028,-92.48102152,-92.48273553999999,-92.48299357,-87.92354546,-87.96349503,-89.50029773999999,-88.03525621999999,-92.15351536999999,-88.08785345,-92.15351536999999,-92.15351536999999,-89.2923443,-91.22466679999999,-89.3525692,-88.02554704000001,-88.74094506,-89.46488377999999,-88.02514085,-89.59761743,-88.3823459,-87.95980247,-90.80688945,-91.26681093000001,-87.73805774,-87.71454249,-87.71454249,-88.47243854,-89.31050714,-89.63523490999999,-91.25587161,-88.22407182000001,-88.48718631,-89.50124092999999,-88.1747307,-87.99390615,-87.96429078,-88.25020786,-88.12930596,-91.27306469,-91.27306469,-91.27306469,-89.0455815,-89.0455815,-88.09939383,-87.71721964,-90.65749355,-90.64731741999999,-90.64731741999999,-88.39881432,-87.88031187999999,-87.97887464,-90.99325804,-90.99325804,-90.99325804,-88.31647287,-88.24798407999999,-88.2486157,-88.2486157,-91.48071027,-88.41693689,-88.45794445999999,-88.58562138000001,-89.37278686000001,-88.08551951,-87.93139895,-89.32192874,-87.86372328,-88.01807887,-87.9428789,-90.8510634,-88.84967076,-88.85809445,-88.83252941000001,-88.02133573,-92.07407774000001,-88.37342878,-89.23943863,-88.42511009,-88.22549066000001,-88.45154558,-88.62906184000001,-88.05956521,-88.99264988,-87.83129031,-88.03092321,-88.40241211999999,-89.38746,-87.69009152,-87.94163122,-88.57146299,-89.62481634,-88.01924047999999,-87.97777628,-88.04907906,-89.05079515,-87.90210354,-87.82185787,-92.45442500999999,-92.46159455999999,-88.31707692000001,-88.29273941,-88.29273941,-88.87507975,-88.87507999,-88.48963134,-88.26039704999999,-89.65219602000001,-87.89499108,-91.34319935000001,-91.34561832,-91.36310330000001,-89.02390308,-87.95348393,-89.05694316,-92.26866904000001,-88.02306003,-88.44038141999999,-87.71454249,-87.71454249,-88.13473012999999,-88.33568046000001,-87.23074922000001,-87.23074922000001,-87.23074922000001,-87.88664684,-88.31432762,-88.31432762,-88.31432762,-90.80688945,-90.80688945,-91.67746025,-91.67401504,-91.67401504,-87.80832982,-89.22289241999999,-89.63354687,-89.5177168,-87.94458813,-88.24422644000001,-92.15621935,-92.15541536000001,-92.15541536000001,-87.97695958,-90.57669806,-87.91473992,-89.36964072000001,-88.35765618000001,-88.35831037,-88.03749750999999,-87.93989074,-89.72290126,-87.92918731,-89.22739031,-87.83043511,-90.17221687999999,-87.95109241,-87.70873512999999,-89.64106724,-89.71700975,-87.92358969999999,-90.46237254,-90.46237254,-88.01283391,-92.6737715,-92.6733634,-92.67011176,-90.08604984,-92.06886445000001,-87.99495928,-88.95957625,-88.95957625,-88.19875905000001,-87.97676294999999,-87.99939645000001,-87.99865641,-87.95845998999999,-92.38265543999999,-87.98640598,-87.95439933999999,-88.49263114,-88.53286733,-88.53381198,-90.58962936,-92.61603441,-90.60142034,-88.78298079,-88.78298079,-87.83384733,-87.94724137,-89.82289120999999,-89.04554078,-88.21720396000001,-88.27828774,-88.05504910000001,-91.3794793,-91.24693857,-88.18752775999999,-87.99040063,-89.45950766999999,-87.97824738,-88.01864621,-87.82253814000001,-88.96076124,-88.03116387,-88.97135283,-87.88212322,-88.38717037000001,-89.32909634000001,-87.83351754,-89.33605453,-91.78352544000001,-87.983384,-89.60607295,-89.3279296,-87.96377552,-88.24733406,-87.92347976000001,-91.46830918000001,-91.50245198,-91.48997213,-91.50256409000001,-91.49032869,-88.14393753,-88.04374562,-90.82004952,-89.49439418999999,-88.21101476,-87.97542275000001,-89.32192874,-88.37784397,-90.37539157000001,-90.37539157000001,-90.37539157000001,-87.93474567,-87.97623602,-88.42782493,-88.169106,-88.169106,-88.169106,-91.41028974,-88.13128442,-88.18540324999999,-88.58666613,-87.86480039999999,-90.34975421999999,-90.35178213,-91.75383331,-91.75358365,-91.21340867000001,-91.12107707,-91.12107707,-91.27733365,-91.26158248,-91.24920557999999,-87.90713393,-87.97104581000001,-87.99561799,-88.51316263,-88.46019013999999,-88.4774091,-88.07250402,-87.93197548000001,-88.46096349,-87.99055873,-88.48718631,-87.74398112999999,-89.60848932,-88.62244574,-88.62244574,-88.62244574,-87.95976566,-89.2809566,-88.25965814,-88.37095496000001,-87.80839066999999,-88.20423203,-88.62886736,-88.62886736,-88.63415673999999,-88.62906184000001,-88.44339051999999,-92.78622283,-88.08750086000001,-88.07371836,-87.81497383999999,-87.81949419,-88.01527262,-89.817634,-92.78622283,-92.73857268,-92.71874704,-92.71793387,-92.73857268,-89.48797111,-87.90234284,-89.90495276999999,-88.38139889,-90.20346164999999,-90.20346164999999,-88.60514791999999,-87.93160573999999,-92.6733634,-90.08864926,-91.42197149,-91.42197149,-91.42197149,-87.92130601,-89.29771977999999,-87.88934727,-90.80844698,-89.37180725,-89.37180725,-89.30033675,-89.12458352,-89.1274018,-90.39568161,-90.39784025,-91.4132578,-88.04050278,-92.03010619,-89.35416944000001,-90.28031541999999,-90.28031541999999,-90.28031541999999,-88.59832441,-89.30195394,-89.75589956,-88.53881773000001,-88.05862405000001,-89.01857251,-87.66978432000001,-87.93933115,-87.74111804,-88.16135635000001,-88.01018526999999,-88.01329201999999,-87.73583646,-89.39421803,-89.40024237999999,-88.30727946,-88.70410681,-88.70410681,-88.42511009,-88.83212276,-88.99900603,-87.83267449,-87.66729343999999,-88.43199989999999,-88.54444463,-87.72549977,-89.5720213,-87.99904789,-88.00391199000001,-88.02077891,-88.81995166,-87.80258766,-88.82307784,-87.85563949,-87.79113590999999,-91.27381727,-88.00780182,-89.86109349,-89.86109349,-88.60547237,-87.95734414,-89.6246581,-89.65277618,-88.78708114,-87.83074419,-88.36593474999999,-87.85540124000001,-88.83847062,-89.51040082999999,-89.51040082999999,-87.79553145,-89.58158055,-88.62768297,-87.92733051,-88.40187469999999,-88.11002782,-88.27125764,-89.70801597000001,-88.04011189000001,-88.25653151,-87.93155222999999,-89.20431698,-88.06573674000001,-87.95345214,-88.07620102,-88.96739866999999,-89.29750635000001,-89.76534123,-88.10674143999999,-87.84204224,-87.85561702,-87.85284885,-87.82979901,-88.62768297,-88.37274653999999,-88.3765077,-88.37784397,-88.37784397,-88.46661443000001,-88.22487406,-88.2243361,-88.2243361,-87.51788786,-87.51788786,-87.51788786,-90.6776272,-90.6776272,-90.62751290999999,-88.03536751,-88.07904451,-88.03196529,-88.03599144,-87.99542022,-88.31855028,-88.11490318,-87.93313075,-87.91030959,-87.91456495,-87.99375856,-88.37784403000001,-92.07818605999999,-87.81193186,-87.58369589,-87.78424848,-87.78424848,-87.78424848,-91.40032837,-87.85672833,-89.01548274,-89.50455277,-88.22290867,-87.91291529,-91.22865442,-91.25043298,-90.63890013,-90.63890013,-90.63890013,-90.5120031,-90.78809248,-89.87661264,-88.68203407,-87.95013249,-91.09324516,-91.07610944,-91.07610944,-87.92315888,-89.31958577,-87.88983330000001,-87.76197165000001,-88.51260073,-88.38497535,-89.79449408000001,-88.18199696000001,-88.41461700000001,-91.12107707,-88.90769428,-88.91137241,-88.91474383000001,-87.94162341000001,-90.87892137,-92.00370617,-89.36157389,-89.70752458,-89.70606761000001,-89.70606761000001,-92.13899291,-91.51533616,-88.41344055,-88.50656745000001,-88.15895965,-88.46408292,-87.85598114,-88.71156092,-87.91225994,-88.24501463999999,-87.99683864000001,-90.70290618,-90.70290618,-87.86186158,-88.02657732,-88.16520985,-88.19184545,-88.66866985999999,-89.37180725,-90.90087837,-88.58666613,-88.62808344,-88.24501463999999,-90.08421696000001,-90.49446302,-88.04259515,-88.04259515,-88.04259515,-88.01044346,-89.42172312,-88.23286476,-89.30720147,-89.55851651,-92.35087240999999,-87.55743475,-87.77104873,-87.93606163,-90.8388765,-88.82359316,-87.85917386,-88.04011189000001,-88.38068357,-89.04252858,-89.39821102000001,-90.16406287,-88.7378343,-87.87560544,-88.73001166,-89.64429359,-88.00796019000001,-88.74795598999999,-87.65778400000001,-89.8052277,-90.91674734999999,-87.83021556,-87.90158409,-89.38852536,-88.08750086000001,-91.66134371,-88.31118895,-88.31632121,-88.31118895,-88.31118895,-88.31118895,-88.429323,-90.32036457,-88.91272786,-91.46215997,-89.52621076,-89.54995988,-89.54322403,-89.55571358,-91.23415516,-91.24467013,-88.11050658000001,-88.44693307,-88.44693307,-88.44693307,-91.49074606000001,-87.93999547999999,-87.71377416,-91.2275837,-88.00873869999999,-89.34039954000001,-88.25907482,-87.93835310999999,-90.50266101,-90.50266101,-90.50266101,-92.47218804000001,-92.47218804000001,-92.47218805,-88.83961325,-87.70130927,-87.70243635999999,-87.70130927,-87.69987442999999,-89.90042355,-88.35890247,-88.10200478,-88.09033268,-87.99277791,-89.04829522,-87.65122255999999,-90.15870557,-89.58906306,-88.03604605,-88.39199517,-88.37274653999999,-87.58239638000001,-87.89389928999999,-89.69196353,-92.79263822,-88.90846206000001,-88.91272786,-87.96589369,-91.48525389,-88.2267099,-87.91291522,-87.99913431,-89.86439478,-88.36782925,-88.04418525,-88.33318745,-88.41173917,-89.83112174999999,-89.83350084,-89.83112174999999,-88.13712393,-90.87355173,-87.63098547,-87.64937591,-87.61670616000001,-87.61154066,-88.89137875,-88.88673967,-88.9874229,-88.99140497,-88.9874229,-88.99140497,-89.35730339,-89.06885006,-89.07371534000001,-89.07583713,-87.99327405,-88.98604066999999,-89.0713722,-90.15595887000001,-90.16344947,-90.16521535,-87.96326191,-87.88247835,-90.08864926,-90.0842174,-88.55341715,-88.55504598,-87.93130532000001,-89.5478866,-89.29488966,-87.63386491999999,-89.56628053,-91.45898123000001,-88.38742439000001,-87.84853044,-88.02441056000001,-88.18773302,-89.84390883,-88.46601879000001,-89.26620140999999,-88.74645258,-88.09854573,-88.28424975999999,-91.46941913000001,-87.89705076,-90.36806175,-90.36507400000001,-90.33776989,-90.65966306999999,-91.02089469000001,-91.02089469000001,-89.03724334,-91.47219380999999,-88.44749222,-89.38356330000001,-88.63142630999999,-88.82260742,-88.08876299000001,-91.93724963,-91.89872794999999,-90.06310456999999,-89.68564526999999,-89.02128845,-88.53998648,-89.67147315,-89.62402170999999,-88.3083013,-88.31078995,-87.95615803,-89.38361365,-92.61453186999999,-89.50768487000001,-89.50768487000001,-89.44974365,-91.13617481999999,-89.48974837999999,-89.29551902,-88.22554837,-88.15427595,-90.50775999,-88.95554246,-88.95153405000001,-87.94384427,-87.93956952000001,-87.95898375,-87.96162648000001,-87.92777774,-87.92947905,-88.00182998,-87.9224839,-87.99467484,-87.94054834000001,-87.97814905,-88.01418765,-87.94200357,-87.96796715000001,-87.90515492999999,-87.9989676,-88.01857307,-88.00959791,-87.98360262999999,-90.1841668,-90.19597124000001,-90.19597124000001,-89.71421534,-87.63389945999999,-87.63389945999999,-87.87416432000001,-87.94185873000001,-88.03923673,-87.81164556,-91.67442124999999,-91.67442124999999,-91.67442124999999,-89.32443464000001,-89.32699603,-88.98672791,-87.66788172,-89.63894154,-89.63983786,-89.32192874,-89.32192874,-89.59360592,-89.59360592,-89.59360592,-87.93570705,-88.00969015,-89.71430225,-89.71025736999999,-89.70808486,-91.67840194,-89.73596608,-89.73596608,-89.72904388000001,-89.7241355,-89.72800943,-89.73696409,-89.51476067999999,-89.49470948,-89.46325691,-88.34785205,-88.84006426000001,-88.1450578,-88.07471531,-90.07407961,-90.07407961,-87.92687365,-90.26603729,-88.05633025,-88.48357939,-90.46653141,-90.07407961,-90.07407961,-90.07407961,-88.51909252,-88.49664662000001,-87.98343835,-90.58866025,-90.58866025,-90.58866025,-89.90952007999999,-89.90952007999999,-92.57400822,-89.38229645,-91.55619656,-91.55619656,-91.55619656,-88.14595343000001,-89.53515708,-88.2799029,-89.63405093999999,-89.63610466999999,-89.6336864,-88.0967557,-88.10393118,-88.10393118,-87.88885904999999,-88.10157175000001,-90.17003262,-90.17003262,-88.75903316,-88.75040084,-92.53365281000001,-92.52526697,-92.52551074,-92.53026038,-92.52272026,-92.53365281000001,-88.41998434,-87.95079649,-88.00154064,-88.00154064,-87.99361288999999,-87.91692685,-89.01587467,-88.03053045999999,-88.2434149,-88.2434149,-88.06733767999999,-90.80592932,-90.80592932,-87.92522025,-89.1484171,-88.3424095,-89.86636348,-88.52741765,-88.37342878,-91.48322503,-88.54967769,-87.71887458,-88.26412478,-92.75087026999999,-88.36668831999999,-89.80340609,-88.11815552,-88.33437738000001,-91.73766132999999,-91.18179204,-87.87101973,-88.00780182,-91.23399507000001,-92.09498529,-91.50087265000001,-89.25303658,-89.22247261,-89.49425706,-89.25273557,-89.25273557,-89.49425706,-91.24152841999999,-89.50292580999999,-89.62193723999999,-89.21602904,-88.94733569,-91.81340195,-91.46646609,-87.82495855000001,-91.75925156,-91.72187709000001,-91.75370357,-91.81340766,-91.81340766,-91.81340195,-89.672101,-91.46031895,-90.57963644,-87.94164411,-92.52272026,-89.33976761,-89.35730339,-87.80326706,-87.90067315,-87.9078265,-87.93354222000001,-90.38046093,-88.54146634999999,-88.54170761,-88.54170761,-91.90138696,-88.54021711,-88.60420257,-87.96773214,-88.48932091,-87.87201007,-88.12834539000001,-88.12759036999999,-87.87101973,-87.87117578,-88.42782493,-88.83847062,-89.57333991,-89.54586394,-90.0842174,-88.74355143,-88.73982823999999,-88.73982823999999,-91.22745332,-91.22844336999999,-91.19971649999999,-89.34196282000001,-89.34196282000001,-87.79187881,-87.787705,-87.787705,-88.08890169,-89.47518106,-89.38229645,-89.37205088,-89.37651595,-87.93203319,-92.69568571000001,-92.68686215,-92.68032553,-92.68979415,-91.21276269000001,-91.21787839,-91.21787839,-89.52621076,-90.57905106,-90.57905106,-90.57905106,-91.50389690999999,-89.57191414,-87.94279154,-87.94279154,-87.94279154,-89.56358646,-88.59285936000001,-88.59285936000001,-88.59267866,-89.29484819,-89.29223757,-89.29223757,-88.02158746000001,-88.26607575,-89.65836831999999,-90.45188118999999,-87.80464859999999,-88.5070194,-88.33572383000001,-89.06454933000001,-88.46546737,-89.64960967,-89.30931139,-89.25968665000001,-88.55064462999999,-88.00076605,-91.39694005,-88.04785335,-88.75119221999999,-89.25575411,-87.99033353,-89.25968665000001,-89.25968665000001,-88.07044033,-87.92710731,-90.39633200999999,-88.74025291,-87.95232145999999,-89.19414949999999,-89.93284729,-89.859982,-89.36760504,-87.99432941000001,-87.99432941000001,-92.14847755,-92.14847755,-87.97188886000001,-91.22968461000001,-87.75231148,-87.75280458,-87.75280458,-88.26200261,-88.26160645,-88.07155314000001,-89.08713134,-89.08713134,-90.41430328,-90.41430328,-90.41430328,-88.66194245,-87.91195365,-88.43810879,-87.73805774,-88.10375904,-89.63490095,-89.99240146,-88.0923459,-89.80511031,-90.13281395999999,-90.13120213000001,-90.46732045,-90.47455118000001,-87.91940723,-87.97302565,-89.52699905999999,-92.19220665,-92.19198874999999,-87.95975321,-89.56748967,-89.59848653,-89.56308332,-88.13105914,-89.86579333,-87.87744841999999,-89.46715292,-89.46415976,-89.46420328000001,-90.69501107000001,-90.69501107000001,-90.69501107000001,-89.03557608,-89.40564759,-89.39609344,-89.39648201,-91.13617481999999,-88.24653695000001,-91.98291496,-91.98294077,-91.98291496,-87.86263464,-89.219505,-91.53958625999999,-89.97273966,-89.6996572,-88.80627929000001,-91.08867401000001,-88.42669214999999,-91.28447334000001,-88.40632062,-89.38108714000001,-89.25601356,-87.93347951,-87.96719306999999,-90.29220836,-90.29220836,-90.29220836,-89.01860166,-89.56748967,-92.79263822,-92.77970222,-92.78932489,-89.12070885999999,-87.92227391,-90.49643555999999,-88.24488473,-87.94572409,-88.23992388000001,-88.83596605,-91.50503514,-88.84006426000001,-88.2799029,-87.81085296000001,-87.80452194,-87.783098,-88.26009052000001,-89.4173365,-88.99887484,-88.99887484,-88.99887484,-87.97253327,-87.97253327,-87.97253327,-87.87013580999999,-88.01420914000001,-88.55451993,-88.76720176000001,-88.57398838,-87.93997871000001,-87.79115423,-90.85214322,-87.90529428000001,-89.09528331999999,-90.02142048,-87.95244314999999,-87.95319277999999,-88.50120681999999,-92.60763376,-88.42832838,-87.82253814000001,-89.40028818,-90.20562253,-90.20617593,-90.20755671000001,-89.66937344,-91.74897448,-91.75358365,-87.90602785999999,-88.19201588,-90.40546397999999,-90.38660004,-90.37923979999999,-90.36012239999999,-90.40546397999999,-88.38276612,-88.27448751,-91.89374705,-87.91484429,-89.24578744,-89.23386373,-88.83223876,-88.83223876,-89.21750788,-89.76665301,-92.72956354999999,-92.6303954,-92.61603441,-92.61518033,-92.6303954,-91.93580958,-90.97737217,-90.97737217,-90.97737217,-88.06162028,-90.05054841,-90.07946591,-90.07669348,-90.07651137000001,-88.26800793,-90.43557561999999,-90.43557561999999,-90.44051139,-90.44051139,-89.46955043,-88.45010775,-88.10104257,-87.88970080999999,-88.70357613,-87.70489956999999,-87.70489956999999,-88.16870783,-89.61503164,-89.29101362,-91.86072998,-87.97886377,-88.23004508,-87.90195939,-91.44967092,-90.48263817,-88.42830411,-89.01576811,-88.66866985999999,-88.04828909,-92.74017633,-88.33427340999999,-89.02434998,-88.72694294999999,-89.01618515,-87.82631268999999,-87.95174811,-87.99618297000001,-88.13742551,-88.84540224,-92.63591932999999,-87.94449100999999,-88.17951902999999,-88.38929195999999,-89.39040704999999,-88.42511738,-89.38270531000001,-88.13093781000001,-91.52163741,-89.00784274,-87.8489493,-88.56641089999999,-87.79141742,-89.5413405,-88.00456619000001,-87.92157956,-88.29418898,-88.67619103,-88.67619103,-88.67908389999999,-88.42874902,-89.31366149,-89.31366149,-89.31366149,-88.37050837,-89.61824952000001,-89.2528054,-90.27602261,-90.27531834,-90.27531834,-88.98238596,-90.33599436,-90.41430328,-87.83740353,-88.47269557,-92.55153541,-92.44763953,-92.43783909,-92.63543283,-92.63387838,-92.63387838,-92.44763953,-87.85375870999999,-88.10935652000001,-91.24049884,-89.31294186,-89.23721944,-89.21728536000001,-89.73064776,-89.73219755,-89.4933362,-87.94009549,-89.45208273999999,-87.38417801999999,-89.32413422,-91.92974194,-88.9047968,-88.37784397,-89.25303658,-89.22247261,-91.24693857,-91.24467013,-87.88952833,-87.62915691000001,-88.7276882,-91.50389690999999,-88.38155507,-87.95451095999999,-90.95700622,-90.95700622,-90.95700622,-89.32144021000001,-87.28931143,-87.28931143,-87.28931143,-87.28931143,-88.33494288,-88.33494288,-89.36255387999999,-88.12433118,-87.93319828,-88.56451684,-88.04267018,-88.72636654999999,-88.60119722,-88.60198602,-87.80577343,-87.81155735,-87.80577343,-87.72209208,-91.93689524,-91.9369453,-91.93689524,-87.90748563,-87.72383019999999,-91.55324477000001,-87.97798770999999,-89.36255387999999,-88.57481069000001,-88.57481069000001,-87.88885904999999,-89.44226707999999,-87.89106271,-90.23026032999999,-90.23026032999999,-90.23026032999999,-87.93063295,-88.50787665,-88.19055727999999,-88.19503023999999,-92.37698576,-92.37698576,-88.28677870999999,-88.28494713000001,-88.26683512,-91.83120071,-87.89429164000001,-92.68376610999999,-92.67922176,-92.6765146,-87.93064278,-87.93064278,-88.33515151,-87.72097031,-88.22300634,-91.47138115,-87.86965612,-87.86965612,-89.67183622,-88.55573560000001,-91.38073261,-91.38073261,-87.90603473,-91.19894581,-87.52325882,-87.52325882,-87.52325882,-87.82048823,-90.79473461000001,-89.37737868000001,-91.38255024,-88.09830234,-90.44007705999999,-90.43785266,-90.44007705999999,-87.96009964,-90.79772998999999,-90.82231919,-90.80844698,-90.81995753,-91.22242670999999,-90.29378522,-90.29378522,-91.8895303,-91.89581551000001,-91.89613592000001,-89.4722234,-89.75983821,-88.48772855999999,-92.25522134000001,-92.25522134000001,-92.25522134000001,-90.92463428000001,-90.92463428000001,-90.92463428000001,-88.36782925,-87.83720049,-87.94574136,-87.94675058999999,-91.19991689,-87.99294214,-87.92525898,-88.40869092,-89.47949800000001,-90.32275615,-89.70549269,-89.58197042,-91.33544096,-88.29808516999999,-88.29808516999999,-88.29808516999999,-87.88399558,-91.21735149,-88.41611312000001,-89.44931990000001,-87.9049141,-87.96154620999999,-89.23522785999999,-87.86915894000001,-90.07695133999999,-90.07507811000001,-90.07507811000001,-88.01872867,-87.36261449,-88.06755427,-88.72949063,-89.32204621,-89.53583963,-88.02361682,-87.98883699,-88.58990238,-88.45786996,-91.26680163,-88.26088458,-89.20960986,-89.22582839,-89.27267103,-88.15036103,-88.32762312,-87.36003296,-89.58462876,-92.10536969,-92.08551405,-92.09857709000001,-88.37600927,-88.37600927,-88.06361774,-88.3415911,-88.12898154,-88.48079991,-91.72665067,-88.03184527000001,-89.20581817,-88.19338782,-87.91532755,-88.37351529,-89.03058765,-87.90934501,-88.42926129,-89.30788022,-88.45245023,-89.79381754000001,-89.64164427,-87.87869306,-89.44237273,-87.98391835,-90.79468771000001,-90.79468771000001,-87.97340038999999,-89.16687263,-89.16687263,-89.16687263,-87.95527668,-88.55929987,-92.03386943,-89.06683305999999,-89.05803523,-90.50603764,-87.97623602,-88.57398838,-89.01527117000001,-89.24878228999999,-89.47518106,-90.46878843,-90.51334589,-90.5081596,-89.70929157,-89.70938042,-89.70938042,-89.275598,-89.275598,-88.08119352,-89.89828301,-87.96655335,-88.61003890000001,-88.61003890000001,-88.20163008999999,-87.95816922,-88.4723317,-88.48322901,-91.43594016999999,-87.84143367999999,-88.12819949,-89.49473973000001,-89.49473973000001,-89.49474055,-87.88527276000001,-88.49575718,-89.01873323,-89.01873323,-88.66985783,-92.13899291,-92.13899291,-92.13899291,-87.55743475,-88.05282764,-88.0467426,-88.0510532,-87.91797269,-92.46591377999999,-92.46591377999999,-92.46591377999999,-87.925449,-87.72074240000001,-87.88751098,-87.88493268000001,-87.88493268000001,-88.40474132,-88.07281634,-88.13288205000001,-89.03815576,-89.45845944,-89.50075212,-88.54188619,-88.03993242,-87.95276061,-90.90087837,-87.8359543,-89.55425635,-89.53515708,-89.54445105000001,-87.94302344,-87.91617635,-87.82469157,-91.24920557999999,-92.28585523,-88.03116387,-90.90254517,-90.90254517,-90.90087837,-90.90087837,-88.64956865000001,-88.64792572,-87.81275350999999,-91.92058222999999,-87.81106993,-88.3765077,-88.05995317,-87.36261449,-88.27916626,-88.60080447999999,-90.50097012000001,-90.89855079,-90.8975587,-90.8975587,-88.83860883,-89.04045800999999,-90.19673066,-89.67351238000001,-88.52462262,-89.55105087,-88.19709571,-87.99692623999999,-88.72213797000001,-89.79053501999999,-86.92857859,-86.92857859,-87.99806520999999,-87.82246737,-87.67592718,-88.13931148,-88.46027199,-88.17251326,-88.21857546,-88.99215706,-88.99216537,-88.99216537,-88.99216537,-88.43685753,-88.72402959,-88.74094506,-89.28366473,-88.22300634,-88.22331837999999,-88.22300634,-88.22492812,-88.22331837999999,-89.43574964,-89.454564,-89.45725118999999,-89.47472676,-89.45644808,-89.45307631,-89.11069173999999,-89.11069173999999,-89.06440339,-89.06951266999999,-88.72068263,-88.72068263,-89.60848932,-89.62194495,-87.96401444,-87.96401444,-87.96401444,-89.29922357,-88.06396139,-88.01276346,-88.06396139,-90.88294973000001,-90.88294973000001,-90.88294973000001,-89.46715292,-90.01112409,-88.02178132,-88.71429919000001,-92.36257204,-92.37405859,-88.00239189,-92.37405859,-88.53998648,-87.99561799,-87.86871359,-88.18049645000001,-88.07904451,-88.09183145,-88.09293408000001,-89.16442125,-88.82501463,-88.96668522,-89.74947964,-88.42832838,-88.03299713,-89.42657188,-88.57366781,-88.27923843000001,-89.65112354,-88.05538745,-88.16357957,-89.57868550000001,-87.97723879,-87.85458898,-91.07339365999999,-91.07715655,-91.07545946,-88.55278525,-90.0842174,-90.02458858,-90.86476245,-90.86331896,-90.86331896,-92.15351536999999,-89.48982890000001,-89.48982890000001,-89.48612759,-87.9911118,-89.57145659,-90.19044312,-90.19044312,-90.19044312,-87.95816922,-88.34491421,-92.63812854,-89.23582685,-90.49362949,-88.09054087,-88.92778980999999,-88.92513842,-88.92669832,-88.25766504000001,-88.76545455,-88.76545455,-88.76525135,-88.22331837999999,-88.22331837999999,-87.89606548,-87.8962643,-91.32982976,-91.32982976,-89.32413422,-88.75129524,-88.75389917,-88.75218352,-87.98221497999999,-88.0515126,-88.05634956,-88.05925923,-87.87059256000001,-87.91380542,-87.96828048,-89.23826343,-89.24572472,-87.95538823,-91.14127947,-88.56309554000001,-88.56400936,-88.56400936,-87.87773514,-92.75307840000001,-88.18343692000001,-89.76070418,-88.18370482,-88.84421623,-89.0248232,-87.99081642,-87.7262336,-88.01276346,-88.02143207,-88.42415737,-87.66005380999999,-89.33287047,-88.2871851,-88.70479038000001,-88.69637819,-88.69637819,-89.33925535,-90.71905482,-91.01286708000001,-91.01286708000001,-91.01286708000001,-88.27370888999999,-88.41009658999999,-87.92799156,-89.79211656,-89.76203726999999,-89.76978463,-89.76978463,-89.76978463,-88.14381782,-89.85591233,-89.30033675,-89.30033675,-87.94279154,-89.91671404,-89.18010293,-89.17289995,-91.35825292,-90.22304951,-90.22304951,-90.22304951,-90.22304951,-88.22697708,-91.84584572999999,-88.34438917,-88.34438917,-87.98202318,-87.95363709999999,-89.46279808,-88.4828686,-88.21642581,-89.82030004000001,-87.95847761,-88.41805823999999,-88.15739539,-88.15484116,-88.15556948,-90.39026944,-89.35728046,-89.15702653,-88.04260465,-89.02765199,-87.92576335,-88.02784459999999],null,null,"Schools",{"interactive":true,"draggable":false,"keyboard":true,"title":"","alt":"","zIndexOffset":0,"opacity":1,"riseOnHover":false,"riseOffset":250},null,null,null,null,["<b>21st Century Preparatory School School<\/b><\/br>Racine Charter One Inc School District<\/br>Elementary School","<b>4K Center for Literacy School<\/b><\/br>Kimberly Area School District<\/br>Elementary School","<b>4K Community-Based School<\/b><\/br>Reedsburg School District<\/br>Elementary School","<b>4K McFarland School<\/b><\/br>McFarland School District<\/br>Elementary School","<b>4K PK Off Site School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Abbotsford Elementary School<\/b><\/br>Abbotsford School District<\/br>Elementary School","<b>Abbotsford Middle/Senior High School<\/b><\/br>Abbotsford School District<\/br>High School","<b>Abraham Lincoln Elementary School<\/b><\/br>Monroe School District<\/br>Elementary School","<b>Abrams Elementary School<\/b><\/br>Oconto Falls Public School District<\/br>Elementary School","<b>Academy of Accelerated Learning School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Accelerated Advanced Learning Program School<\/b><\/br>Oshkosh Area School District<\/br>Combined Elementary/Secondary School","<b>ACE Alliance Charter Elementary School<\/b><\/br>Neenah Joint School District<\/br>Elementary School","<b>Adams-Friendship Elementary School<\/b><\/br>Adams-Friendship Area School District<\/br>Elementary School","<b>Adams-Friendship High School<\/b><\/br>Adams-Friendship Area School District<\/br>High School","<b>Adams-Friendship Middle School<\/b><\/br>Adams-Friendship Area School District<\/br>Middle School","<b>Adams Elementary School<\/b><\/br>Janesville School District<\/br>Elementary School","<b>Addison Elementary School<\/b><\/br>Slinger School District<\/br>Elementary School","<b>Adeline Montessori School Inc School<\/b><\/br>Adeline Montessori School Inc School District<\/br>Combined Elementary/Secondary School","<b>Advanced Learning Academy of Wisconsin School<\/b><\/br>Barron Area School District<\/br>Combined Elementary/Secondary School","<b>Al Behrman Elementary School<\/b><\/br>Baraboo School District<\/br>Elementary School","<b>ALBA - Academia de Lenguaje y Bellas Artes School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Albany Community Middle School<\/b><\/br>Albany School District<\/br>Middle School","<b>Albany Elementary School<\/b><\/br>Albany School District<\/br>Elementary School","<b>Albany High School<\/b><\/br>Albany School District<\/br>High School","<b>Alcott Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Aldo Leopold Community School K-8 School<\/b><\/br>Green Bay Area Public School District<\/br>Combined Elementary/Secondary School","<b>Aldrich Intermediate School<\/b><\/br>Beloit School District<\/br>Middle School","<b>Alexander Middle School<\/b><\/br>Nekoosa School District<\/br>Combined Elementary/Secondary School","<b>Algoma Elementary School<\/b><\/br>Algoma School District<\/br>Elementary School","<b>Algoma High School<\/b><\/br>Algoma School District<\/br>High School","<b>Algoma Venture Academy School<\/b><\/br>Algoma School District<\/br>High School","<b>All District 4 Year Old Kindergarten School<\/b><\/br>Racine Unified School District<\/br>Elementary School","<b>Allen-Field Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Allenton Elementary School<\/b><\/br>Slinger School District<\/br>Elementary School","<b>Alliance School of Milwaukee School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Alma Elementary School<\/b><\/br>Alma School District<\/br>Elementary School","<b>Alma High School<\/b><\/br>Alma School District<\/br>High School","<b>Almond-Bancroft Elementary School<\/b><\/br>Almond-Bancroft School District<\/br>Elementary School","<b>Almond-Bancroft High School<\/b><\/br>Almond-Bancroft School District<\/br>High School","<b>Almond-Bancroft Middle School<\/b><\/br>Almond-Bancroft School District<\/br>Middle School","<b>Altoona Elementary School<\/b><\/br>Altoona School District<\/br>Elementary School","<b>Altoona High School<\/b><\/br>Altoona School District<\/br>High School","<b>Altoona Intermediate School<\/b><\/br>Altoona School District<\/br>Elementary School","<b>Altoona Middle School<\/b><\/br>Altoona School District<\/br>Middle School","<b>Amery High School<\/b><\/br>Amery School District<\/br>High School","<b>Amery Intermediate School<\/b><\/br>Amery School District<\/br>Elementary School","<b>Amery Middle School<\/b><\/br>Amery School District<\/br>Middle School","<b>Amherst Elementary School<\/b><\/br>Tomorrow River School District<\/br>Elementary School","<b>Amherst High School<\/b><\/br>Tomorrow River School District<\/br>High School","<b>Amherst Middle School<\/b><\/br>Tomorrow River School District<\/br>Middle School","<b>Amy Belle Elementary School<\/b><\/br>Germantown School District<\/br>Elementary School","<b>Andrew S Douglas Middle School<\/b><\/br>Milwaukee School District<\/br>Middle School","<b>Anthony Acres School School<\/b><\/br>Mondovi School District<\/br>Combined Elementary/Secondary School","<b>Antigo High School<\/b><\/br>Antigo Unified School District<\/br>High School","<b>Antigo Middle School<\/b><\/br>Antigo Unified School District<\/br>Middle School","<b>Appleton Bilingual School School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Appleton Community 4K School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Appleton Cooperative Educational Center School<\/b><\/br>Appleton Area School District<\/br>Combined Elementary/Secondary School","<b>Appleton eSchool School<\/b><\/br>Appleton Area School District<\/br>High School","<b>Appleton Public Montessori School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Appleton Technical Academy School<\/b><\/br>Appleton Area School District<\/br>High School","<b>Appleview School<\/b><\/br>Appleton Area School District<\/br>Combined Elementary/Secondary School","<b>Arbor Vitae-Woodruff Elementary School<\/b><\/br>Woodruff J1 School District<\/br>Elementary School","<b>Arboretum Elementary School<\/b><\/br>Waunakee Community School District<\/br>Elementary School","<b>Arcadia Elementary School<\/b><\/br>Arcadia School District<\/br>Elementary School","<b>Arcadia High School<\/b><\/br>Arcadia School District<\/br>High School","<b>Arcadia Middle School<\/b><\/br>Arcadia School District<\/br>Middle School","<b>Argyle Elementary School<\/b><\/br>Argyle School District<\/br>Elementary School","<b>Argyle High School<\/b><\/br>Argyle School District<\/br>High School","<b>Argyle Middle School<\/b><\/br>Argyle School District<\/br>Middle School","<b>ARISE Virtual Academy School<\/b><\/br>Janesville School District<\/br>Combined Elementary/Secondary School","<b>Arrowhead High School<\/b><\/br>Arrowhead UHS School District<\/br>High School","<b>Asa Clark Middle School<\/b><\/br>Pewaukee School District<\/br>Middle School","<b>Ashland High School<\/b><\/br>Ashland School District<\/br>High School","<b>Ashland Middle School<\/b><\/br>Ashland School District<\/br>Middle School","<b>Ashwaubenon High School<\/b><\/br>Ashwaubenon School District<\/br>High School","<b>ASSATA High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Athens Elementary School<\/b><\/br>Athens School District<\/br>Elementary School","<b>Athens High School<\/b><\/br>Athens School District<\/br>High School","<b>Athens Middle School<\/b><\/br>Athens School District<\/br>Middle School","<b>Atwater Elementary School<\/b><\/br>Shorewood School District<\/br>Elementary School","<b>Auburndale Elementary School<\/b><\/br>Auburndale School District<\/br>Elementary School","<b>Auburndale High School<\/b><\/br>Auburndale School District<\/br>High School","<b>Audubon Technology and Communication High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Audubon Technology and Communication Middle School<\/b><\/br>Milwaukee School District<\/br>Middle School","<b>Auer Avenue Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Augusta Elementary School<\/b><\/br>Augusta School District<\/br>Elementary School","<b>Augusta High School<\/b><\/br>Augusta School District<\/br>High School","<b>Augusta Middle School<\/b><\/br>Augusta School District<\/br>Middle School","<b>BA Kennedy School School<\/b><\/br>Prairie du Chien Area School District<\/br>Elementary School","<b>Badger Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Badger High School<\/b><\/br>Lake Geneva-Genoa City UHS School District<\/br>High School","<b>Badger Middle School<\/b><\/br>West Bend School District<\/br>Middle School","<b>Badger Ridge Middle School<\/b><\/br>Verona Area School District<\/br>Middle School","<b>Badger Rock Middle School<\/b><\/br>Madison Metropolitan School District<\/br>Middle School","<b>Baird Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Baldwin-Woodville High School<\/b><\/br>Baldwin-Woodville Area School District<\/br>High School","<b>Bangor Elementary School<\/b><\/br>Bangor School District<\/br>Elementary School","<b>Bangor Middle/High School<\/b><\/br>Bangor School District<\/br>High School","<b>Bannach Elementary School<\/b><\/br>Stevens Point Area Public School District<\/br>Elementary School","<b>Banner Preparatory School of Milwaukee School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Banta Bilingual Elementary School<\/b><\/br>Menasha Joint School District<\/br>Elementary School","<b>Banting Elementary School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>Baraboo Early Learning Cooperative School<\/b><\/br>Baraboo School District<\/br>Elementary School","<b>Baraboo Early Learning Cooperative RHS Renewal Head Start of Baraboo School<\/b><\/br>Baraboo School District<\/br>Elementary School","<b>Baraboo High School<\/b><\/br>Baraboo School District<\/br>High School","<b>Barbee Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Barlow Park Charter School School<\/b><\/br>Ripon Area School District<\/br>Elementary School","<b>Barneveld Elementary School<\/b><\/br>Barneveld School District<\/br>Elementary School","<b>Barneveld High School<\/b><\/br>Barneveld School District<\/br>High School","<b>Barneveld Middle School School<\/b><\/br>Barneveld School District<\/br>Middle School","<b>Barrie Elementary School<\/b><\/br>Fort Atkinson School District<\/br>Elementary School","<b>Barron Area Montessori School School<\/b><\/br>Barron Area School District<\/br>Elementary School","<b>Barron High School<\/b><\/br>Barron Area School District<\/br>High School","<b>Barton Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Bay Harbor Elementary School<\/b><\/br>Howard-Suamico School District<\/br>Elementary School","<b>Bay Lane Elementary School<\/b><\/br>Muskego-Norway School District<\/br>Elementary School","<b>Bay Port High School<\/b><\/br>Howard-Suamico School District<\/br>High School","<b>Bay View School<\/b><\/br>Green Bay Area Public School District<\/br>Combined Elementary/Secondary School","<b>Bay View High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Bay View Middle School<\/b><\/br>Howard-Suamico School District<\/br>Middle School","<b>Bay View Montessori School School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Bayfield Elementary School<\/b><\/br>Bayfield School District<\/br>Elementary School","<b>Bayfield High School<\/b><\/br>Bayfield School District<\/br>High School","<b>Bayfield Middle School<\/b><\/br>Bayfield School District<\/br>Middle School","<b>Bayside Middle School<\/b><\/br>Fox Point J2 School District<\/br>Middle School","<b>BDUSD4Kids School<\/b><\/br>Beaver Dam Unified School District<\/br>Elementary School","<b>Beaumont Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Beaver Dam High School<\/b><\/br>Beaver Dam Unified School District<\/br>High School","<b>Beaver Dam Middle School<\/b><\/br>Beaver Dam Unified School District<\/br>Middle School","<b>Belleville Elementary School<\/b><\/br>Belleville School District<\/br>Elementary School","<b>Belleville High School<\/b><\/br>Belleville School District<\/br>High School","<b>Belleville Middle School<\/b><\/br>Belleville School District<\/br>Middle School","<b>Belmont Elementary School<\/b><\/br>Belmont Community School District<\/br>Elementary School","<b>Belmont High School<\/b><\/br>Belmont Community School District<\/br>High School","<b>Beloit Early Learning School<\/b><\/br>Beloit School District<\/br>Elementary School","<b>Beloit Learning Academy School<\/b><\/br>Beloit School District<\/br>Combined Elementary/Secondary School","<b>Beloit Virtual School School<\/b><\/br>Beloit School District<\/br>Combined Elementary/Secondary School","<b>Ben Franklin Elementary School<\/b><\/br>Franklin Public School District<\/br>Elementary School","<b>Benjamin Franklin Elementary and Early Learning Center School<\/b><\/br>Menomonee Falls School District<\/br>Elementary School","<b>Benjamin Franklin Junior High School<\/b><\/br>Stevens Point Area Public School District<\/br>Junior High School","<b>Benton Elementary School<\/b><\/br>Benton School District<\/br>Elementary School","<b>Benton High School<\/b><\/br>Benton School District<\/br>High School","<b>Benton Middle School<\/b><\/br>Benton School District<\/br>Middle School","<b>Berlin High School<\/b><\/br>Berlin Area School District<\/br>High School","<b>Berlin Middle School<\/b><\/br>Berlin Area School District<\/br>Middle School","<b>Berry Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Bessie Allen Middle School<\/b><\/br>North Fond du Lac School District<\/br>Middle School","<b>Bethesda Elementary School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>Bethune Academy School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Between the Lakes Virtual Academy School<\/b><\/br>Kiel Area School District<\/br>Combined Elementary/Secondary School","<b>Between the Lakes Virtual Academy School<\/b><\/br>West De Pere School District<\/br>Combined Elementary/Secondary School","<b>Big Bend Elementary School<\/b><\/br>Mukwonago School District<\/br>Elementary School","<b>Big Foot High School<\/b><\/br>Big Foot UHS School District<\/br>High School","<b>Birchwood Elementary School<\/b><\/br>Birchwood School District<\/br>Elementary School","<b>Birchwood High School<\/b><\/br>Birchwood School District<\/br>High School","<b>Birchwood Middle School<\/b><\/br>Birchwood School District<\/br>Middle School","<b>Birchwood Public Montessori School<\/b><\/br>Birchwood School District<\/br>Elementary School","<b>Birnamwood Elementary School<\/b><\/br>Wittenberg-Birnamwood School District<\/br>Elementary School","<b>Black Creek Elementary School<\/b><\/br>Seymour Community School District<\/br>Elementary School","<b>Black Hawk Elementary School<\/b><\/br>Black Hawk School District<\/br>Elementary School","<b>Black Hawk High School<\/b><\/br>Black Hawk School District<\/br>High School","<b>Black Hawk Middle School<\/b><\/br>Black Hawk School District<\/br>Middle School","<b>Black Hawk Middle School<\/b><\/br>Madison Metropolitan School District<\/br>Middle School","<b>Black River Falls High School<\/b><\/br>Black River Falls School District<\/br>High School","<b>Black River Falls Middle School<\/b><\/br>Black River Falls School District<\/br>Middle School","<b>Blair-Taylor Elementary School<\/b><\/br>Blair-Taylor School District<\/br>Elementary School","<b>Blair-Taylor Middle/High School<\/b><\/br>Blair-Taylor School District<\/br>High School","<b>Blakewood Elementary School<\/b><\/br>South Milwaukee School District<\/br>Elementary School","<b>Bloomer Elementary School<\/b><\/br>Bloomer School District<\/br>Elementary School","<b>Bloomer High School<\/b><\/br>Bloomer School District<\/br>High School","<b>Bloomer Middle School<\/b><\/br>Bloomer School District<\/br>Middle School","<b>Bluff View Elementary School<\/b><\/br>Prairie du Chien Area School District<\/br>Elementary School","<b>Bluff View Middle School<\/b><\/br>Prairie du Chien Area School District<\/br>Middle School","<b>Bobcat Virtual Academy School<\/b><\/br>Birchwood School District<\/br>Combined Elementary/Secondary School","<b>Bonduel Elementary School<\/b><\/br>Bonduel School District<\/br>Elementary School","<b>Bonduel High School<\/b><\/br>Bonduel School District<\/br>High School","<b>Bonduel Middle School<\/b><\/br>Bonduel School District<\/br>Middle School","<b>Boscobel Elementary School<\/b><\/br>Boscobel Area School District<\/br>Elementary School","<b>Boscobel High School<\/b><\/br>Boscobel Area School District<\/br>High School","<b>Boscobel Junior High School<\/b><\/br>Boscobel Area School District<\/br>Middle School","<b>Bose Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Bowler Elementary School<\/b><\/br>Bowler School District<\/br>Elementary School","<b>Bowler High School<\/b><\/br>Bowler School District<\/br>High School","<b>Boyceville High School<\/b><\/br>Boyceville Community School District<\/br>High School","<b>Boyceville Middle School<\/b><\/br>Boyceville Community School District<\/br>Middle School","<b>Boyd Elementary School<\/b><\/br>Stanley-Boyd Area School District<\/br>Elementary School","<b>Bradford High School<\/b><\/br>Kenosha School District<\/br>High School","<b>Bradley Technology High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Brandon Elementary School<\/b><\/br>Rosendale-Brandon School District<\/br>Elementary School","<b>Brass Community School School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Brener Elementary School<\/b><\/br>Shawano School District<\/br>Elementary School","<b>Bridges Elementary School<\/b><\/br>Sauk Prairie School District<\/br>Elementary School","<b>Bridges Virtual Academy School<\/b><\/br>Merrill Area School District<\/br>Combined Elementary/Secondary School","<b>Brighton Elementary School<\/b><\/br>Brighton #1 School District<\/br>Elementary School","<b>Brillion Elementary School<\/b><\/br>Brillion School District<\/br>Elementary School","<b>Brillion High School<\/b><\/br>Brillion School District<\/br>High School","<b>Brillion Middle School<\/b><\/br>Brillion School District<\/br>Middle School","<b>Bristol Elementary School<\/b><\/br>Bristol #1 School District<\/br>Elementary School","<b>Brodhead High School<\/b><\/br>Brodhead School District<\/br>High School","<b>Brodhead Middle School<\/b><\/br>Brodhead School District<\/br>Middle School","<b>Brompton School School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Brookfield Central High School<\/b><\/br>Elmbrook School District<\/br>High School","<b>Brookfield East High School<\/b><\/br>Elmbrook School District<\/br>High School","<b>Brookfield Elementary School<\/b><\/br>Elmbrook School District<\/br>Elementary School","<b>Brooklyn Elementary School<\/b><\/br>Oregon School District<\/br>Elementary School","<b>Brookwood Elementary School<\/b><\/br>Genoa City J2 School District<\/br>Elementary School","<b>Brookwood High School<\/b><\/br>Norwalk-Ontario-Wilton School District<\/br>High School","<b>Brookwood Middle School<\/b><\/br>Genoa City J2 School District<\/br>Combined Elementary/Secondary School","<b>Brown County Institute of Learning School<\/b><\/br>Green Bay Area Public School District<\/br>Combined Elementary/Secondary School","<b>Brown Deer Elementary School<\/b><\/br>Brown Deer School District<\/br>Elementary School","<b>Brown Deer Middle/High School<\/b><\/br>Brown Deer School District<\/br>High School","<b>Brown Street Academy School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Browning Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Bruce Elementary School<\/b><\/br>Bruce School District<\/br>Elementary School","<b>Bruce Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Bruce Guadalupe School<\/b><\/br>United Community Center Inc School District<\/br>Elementary School","<b>Bruce High School<\/b><\/br>Bruce School District<\/br>High School","<b>Bruce Middle School<\/b><\/br>Bruce School District<\/br>Middle School","<b>Bryant Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Bryant Elementary School<\/b><\/br>Superior School District<\/br>Elementary School","<b>Bull Early Education Center School<\/b><\/br>Racine Unified School District<\/br>Elementary School","<b>Bullen Middle School<\/b><\/br>Kenosha School District<\/br>Middle School","<b>Burbank Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Burdick Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Burleigh Elementary School<\/b><\/br>Elmbrook School District<\/br>Elementary School","<b>Burlington High School School<\/b><\/br>Burlington Area School District<\/br>High School","<b>Butler Middle School<\/b><\/br>Waukesha School District<\/br>Middle School","<b>Butte des Morts Elementary School<\/b><\/br>Menasha Joint School District<\/br>Elementary School","<b>Butternut Elementary School<\/b><\/br>Butternut School District<\/br>Elementary School","<b>Butternut High School<\/b><\/br>Butternut School District<\/br>High School","<b>C H Bird Elementary School<\/b><\/br>Sun Prairie Area School District<\/br>Elementary School","<b>Caddie Woodlawn Elementary School<\/b><\/br>Durand-Arkansaw School District<\/br>Elementary School","<b>Cadott Elementary School<\/b><\/br>Cadott Community School District<\/br>Elementary School","<b>Cadott High School<\/b><\/br>Cadott Community School District<\/br>High School","<b>Cadott Junior High School<\/b><\/br>Cadott Community School District<\/br>Junior High School","<b>Cambria Friesland Elementary School<\/b><\/br>Cambria-Friesland School District<\/br>Elementary School","<b>Cambria Friesland Middle/High School<\/b><\/br>Cambria-Friesland School District<\/br>High School","<b>Cambridge Elementary School<\/b><\/br>Cambridge School District<\/br>Elementary School","<b>Cambridge High School<\/b><\/br>Cambridge School District<\/br>High School","<b>Cameron Academy of Virtual Education School<\/b><\/br>Cameron School District<\/br>Combined Elementary/Secondary School","<b>Cameron Elementary School<\/b><\/br>Cameron School District<\/br>Elementary School","<b>Cameron High School<\/b><\/br>Cameron School District<\/br>High School","<b>Cameron Middle School<\/b><\/br>Cameron School District<\/br>Middle School","<b>Camp Douglas Elementary School<\/b><\/br>Tomah Area School District<\/br>Elementary School","<b>Campbellsport Elementary School<\/b><\/br>Campbellsport School District<\/br>Elementary School","<b>Campbellsport High School<\/b><\/br>Campbellsport School District<\/br>High School","<b>Campbellsport Middle School<\/b><\/br>Campbellsport School District<\/br>Middle School","<b>Canterbury Elementary School<\/b><\/br>Greendale School District<\/br>Elementary School","<b>Capital High School<\/b><\/br>Madison Metropolitan School District<\/br>High School","<b>Career and College Academy School<\/b><\/br>Elkhorn Area School District<\/br>High School","<b>Career and College Academy School<\/b><\/br>Lake Geneva-Genoa City UHS School District<\/br>High School","<b>Carmen High School of Science and Technology South Campus School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Carmen High School of Science and Technology Southeast Campus School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Carmen Middle School South School<\/b><\/br>Carmen High School of Science and Technology Inc. School District<\/br>Middle School","<b>Carmen Middle/High School of Science and Technology Northwest Campus School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Carollton Elementary School<\/b><\/br>Oak Creek-Franklin Joint School District<\/br>Elementary School","<b>Carson Academy School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Carver Academy School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Case High School<\/b><\/br>Racine Unified School District<\/br>High School","<b>Cashton Elementary School<\/b><\/br>Cashton School District<\/br>Elementary School","<b>Cashton Middle/High School<\/b><\/br>Cashton School District<\/br>High School","<b>Cass Street Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Cassville Elementary School<\/b><\/br>Cassville School District<\/br>Elementary School","<b>Cassville High School<\/b><\/br>Cassville School District<\/br>High School","<b>Catalyst Academy School<\/b><\/br>New London School District<\/br>High School","<b>Cedar Grove-Belgium Elementary School<\/b><\/br>Cedar Grove-Belgium Area School District<\/br>Elementary School","<b>Cedar Grove-Belgium High School<\/b><\/br>Cedar Grove-Belgium Area School District<\/br>High School","<b>Cedar Grove-Belgium Middle School<\/b><\/br>Cedar Grove-Belgium Area School District<\/br>Middle School","<b>Cedar Hills Elementary School<\/b><\/br>Oak Creek-Franklin Joint School District<\/br>Elementary School","<b>Cedarburg High School<\/b><\/br>Cedarburg School District<\/br>High School","<b>Central - Denison Elementary School<\/b><\/br>Lake Geneva J1 School District<\/br>Elementary School","<b>Central City Cyberschool School<\/b><\/br>Central City Cyberschool of Milwaukee Inc School District<\/br>Combined Elementary/Secondary School","<b>Central Elementary School<\/b><\/br>Rhinelander School District<\/br>Elementary School","<b>Central Heights Middle School<\/b><\/br>Sun Prairie Area School District<\/br>Middle School","<b>Central High School<\/b><\/br>La Crosse School District<\/br>High School","<b>Central High School<\/b><\/br>Sheboygan Area School District<\/br>High School","<b>Central High School<\/b><\/br>West Allis-West Milwaukee School District<\/br>High School","<b>Central High School<\/b><\/br>Westosha Central UHS School District<\/br>High School","<b>Central Middle School<\/b><\/br>Hartford J1 School District<\/br>Middle School","<b>Central Oaks Academy School<\/b><\/br>Wisconsin Rapids School District<\/br>Combined Elementary/Secondary School","<b>Central Sands Community High School School<\/b><\/br>Central Sands Community High School Inc School District<\/br>High School","<b>Central Wisconsin STEM Academy School<\/b><\/br>Nekoosa School District<\/br>Middle School","<b>Cesar Chavez Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Chain Exploration Center School<\/b><\/br>Waupaca School District<\/br>Combined Elementary/Secondary School","<b>Chappell Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Charles F Fernandez Center Alt Learning School<\/b><\/br>Stevens Point Area Public School District<\/br>High School","<b>Chavez Learning Station School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Chegwin Elementary School<\/b><\/br>Fond du Lac School District<\/br>Elementary School","<b>Chequamegon High School<\/b><\/br>Chequamegon School District<\/br>High School","<b>Chequamegon Middle School<\/b><\/br>Chequamegon School District<\/br>Middle School","<b>Cherokee Heights Middle School<\/b><\/br>Madison Metropolitan School District<\/br>Middle School","<b>Chetek-Weyerhaeuser High School<\/b><\/br>Chetek-Weyerhaeuser Area School District<\/br>High School","<b>Chetek-Weyerhaeuser Middle School<\/b><\/br>Chetek-Weyerhaeuser Area School District<\/br>Middle School","<b>Chetek-Weyerhaeuser Roselawn Elementary School<\/b><\/br>Chetek-Weyerhaeuser Area School District<\/br>Elementary School","<b>Chilton Elementary School<\/b><\/br>Chilton School District<\/br>Elementary School","<b>Chilton High School<\/b><\/br>Chilton School District<\/br>High School","<b>Chilton Middle School<\/b><\/br>Chilton School District<\/br>Middle School","<b>Chippewa Falls High School<\/b><\/br>Chippewa Falls Area Unified School District<\/br>High School","<b>Chippewa Falls Middle School<\/b><\/br>Chippewa Falls Area Unified School District<\/br>Middle School","<b>Chippewa Valley Montessori Charter School School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Clarendon Avenue Elementary School<\/b><\/br>Mukwonago School District<\/br>Elementary School","<b>Clark Street Community School School<\/b><\/br>Middleton-Cross Plains Area School District<\/br>High School","<b>Clarke Middle School<\/b><\/br>Two Rivers Public School District<\/br>Middle School","<b>Clarke Street Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Class ACT Charter School<\/b><\/br>Chequamegon School District<\/br>High School","<b>Classical School School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Clay Lamberton Elementary School<\/b><\/br>Berlin Area School District<\/br>Elementary School","<b>Clayton Elementary School<\/b><\/br>Clayton School District<\/br>Elementary School","<b>Clayton Elementary School<\/b><\/br>Neenah Joint School District<\/br>Elementary School","<b>Clayton High School<\/b><\/br>Clayton School District<\/br>High School","<b>Clayton Middle School<\/b><\/br>Clayton School District<\/br>Middle School","<b>Clear Lake High School<\/b><\/br>Clear Lake School District<\/br>High School","<b>Clear Lake Junior High School<\/b><\/br>Clear Lake School District<\/br>Junior High School","<b>Clemens Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Clement Avenue Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Cleveland Elementary School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Clinton Elementary School<\/b><\/br>Clinton Community School District<\/br>Elementary School","<b>Clinton Junior High School<\/b><\/br>Clinton Community School District<\/br>Junior High School","<b>Clinton Senior High School<\/b><\/br>Clinton Community School District<\/br>High School","<b>Clintonville Elementary School School<\/b><\/br>Clintonville School District<\/br>Elementary School","<b>Clintonville High School<\/b><\/br>Clintonville School District<\/br>High School","<b>Clintonville Middle School<\/b><\/br>Clintonville School District<\/br>Middle School","<b>Clovis Grove Elementary School<\/b><\/br>Menasha Joint School District<\/br>Elementary School","<b>Cochrane-Fountain City Elementary School<\/b><\/br>Cochrane-Fountain City School District<\/br>Elementary School","<b>Cochrane-Fountain City High School<\/b><\/br>Cochrane-Fountain City School District<\/br>High School","<b>Colby Elementary School<\/b><\/br>Colby School District<\/br>Elementary School","<b>Colby High School<\/b><\/br>Colby School District<\/br>High School","<b>Colby Middle School<\/b><\/br>Colby School District<\/br>Middle School","<b>Coleman Elementary School<\/b><\/br>Coleman School District<\/br>Elementary School","<b>Coleman High School<\/b><\/br>Coleman School District<\/br>High School","<b>Coleman Middle School<\/b><\/br>Coleman School District<\/br>Middle School","<b>Colfax Elementary School<\/b><\/br>Colfax School District<\/br>Elementary School","<b>Colfax High School<\/b><\/br>Colfax School District<\/br>High School","<b>College Park Elementary School<\/b><\/br>Greendale School District<\/br>Elementary School","<b>Coloma Elementary School<\/b><\/br>Westfield School District<\/br>Elementary School","<b>Columbus Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Columbus Elementary School<\/b><\/br>Columbus School District<\/br>Elementary School","<b>Columbus High School<\/b><\/br>Columbus School District<\/br>High School","<b>Columbus Middle School<\/b><\/br>Columbus School District<\/br>Middle School","<b>Congress Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Conrad Elvehjem Primary School School<\/b><\/br>McFarland School District<\/br>Elementary School","<b>Consolidated Elementary School<\/b><\/br>Milton School District<\/br>Elementary School","<b>Converse Elementary School<\/b><\/br>Beloit School District<\/br>Elementary School","<b>Coolidge Elementary School<\/b><\/br>Neenah Joint School District<\/br>Elementary School","<b>Coon Valley Elementary School<\/b><\/br>Westby Area School District<\/br>Elementary School","<b>Cooper Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Cooper Elementary School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Cooper Elementary School<\/b><\/br>Superior School District<\/br>Elementary School","<b>Cooper Montessori School<\/b><\/br>Burlington Area School District<\/br>Elementary School","<b>Core Knowledge Charter School School<\/b><\/br>Verona Area School District<\/br>Elementary School","<b>CORE4 Collaborating on Readiness Education for Four-Year-Olds School<\/b><\/br>Whitnall School District<\/br>Elementary School","<b>Cormier School and Early Learning Center School<\/b><\/br>Ashwaubenon School District<\/br>Elementary School","<b>Cornell Elementary School<\/b><\/br>Cornell School District<\/br>Elementary School","<b>Cornell High School<\/b><\/br>Cornell School District<\/br>High School","<b>Cornell Middle School<\/b><\/br>Cornell School District<\/br>Middle School","<b>Cottage Grove Elementary School<\/b><\/br>Monona Grove School District<\/br>Elementary School","<b>Coulee Montessori Charter School School<\/b><\/br>La Crosse School District<\/br>Elementary School","<b>Coulee Region Virtual Academy School<\/b><\/br>La Crosse School District<\/br>Combined Elementary/Secondary School","<b>Country Dale Elementary School<\/b><\/br>Franklin Public School District<\/br>Elementary School","<b>Country View Elementary School<\/b><\/br>Verona Area School District<\/br>Elementary School","<b>County Line Elementary School<\/b><\/br>Germantown School District<\/br>Elementary School","<b>Craig High School<\/b><\/br>Janesville School District<\/br>High School","<b>Craig Montessori School School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Crandon Elementary School<\/b><\/br>Crandon School District<\/br>Elementary School","<b>Crandon High School<\/b><\/br>Crandon School District<\/br>High School","<b>Crandon Middle School<\/b><\/br>Crandon School District<\/br>Middle School","<b>Creekside Elementary School<\/b><\/br>Sun Prairie Area School District<\/br>Elementary School","<b>Crescent Elementary School<\/b><\/br>Rhinelander School District<\/br>Elementary School","<b>Crestwood Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Crivitz Elementary School<\/b><\/br>Crivitz School District<\/br>Elementary School","<b>Crivitz High School<\/b><\/br>Crivitz School District<\/br>High School","<b>Crivitz Middle School<\/b><\/br>Crivitz School District<\/br>Middle School","<b>Cuba City Elementary School<\/b><\/br>Cuba City School District<\/br>Elementary School","<b>Cuba City High School<\/b><\/br>Cuba City School District<\/br>High School","<b>Cuba City Middle School<\/b><\/br>Cuba City School District<\/br>Middle School","<b>Cudahy High School<\/b><\/br>Cudahy School District<\/br>High School","<b>Cudahy Middle School<\/b><\/br>Cudahy School District<\/br>Middle School","<b>Cumberland Elementary School<\/b><\/br>Cumberland School District<\/br>Elementary School","<b>Cumberland Elementary School<\/b><\/br>Whitefish Bay School District<\/br>Elementary School","<b>Cumberland High School<\/b><\/br>Cumberland School District<\/br>High School","<b>Cumberland Middle School<\/b><\/br>Cumberland School District<\/br>Middle School","<b>Curtin Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Cushing Elementary School<\/b><\/br>Kettle Moraine School District<\/br>Elementary School","<b>D C Everest 4K Community Partnership School<\/b><\/br>D C Everest Area School District<\/br>Elementary School","<b>D C Everest High School<\/b><\/br>D C Everest Area School District<\/br>High School","<b>D C Everest Idea School School<\/b><\/br>D C Everest Area School District<\/br>High School","<b>D C Everest Junior High School<\/b><\/br>D C Everest Area School District<\/br>Junior High School","<b>D C Everest Middle School<\/b><\/br>D C Everest Area School District<\/br>Middle School","<b>Danz Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Darien Elementary School<\/b><\/br>Delavan-Darien School District<\/br>Elementary School","<b>Darlington Elementary/Middle School<\/b><\/br>Darlington Community School District<\/br>Elementary School","<b>Darlington High School<\/b><\/br>Darlington Community School District<\/br>High School","<b>Darrell Lynn Hines Academy School<\/b><\/br>Darrell L. Hines Academy Inc School District<\/br>Elementary School","<b>Davey Elementary School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>De Forest High School<\/b><\/br>De Forest Area School District<\/br>High School","<b>De Forest Middle School<\/b><\/br>De Forest Area School District<\/br>Middle School","<b>De Pere High School<\/b><\/br>De Pere School District<\/br>High School","<b>De Pere Middle School<\/b><\/br>De Pere School District<\/br>Middle School","<b>De Soto High School<\/b><\/br>De Soto Area School District<\/br>High School","<b>De Soto Middle School<\/b><\/br>De Soto Area School District<\/br>Middle School","<b>De Soto Virtual School School<\/b><\/br>De Soto Area School District<\/br>Combined Elementary/Secondary School","<b>Decorah Elementary School<\/b><\/br>West Bend School District<\/br>Elementary School","<b>Deeper Learning Virtual Academy School<\/b><\/br>West Allis-West Milwaukee School District<\/br>Combined Elementary/Secondary School","<b>Deer Creek Intermediate School<\/b><\/br>Saint Francis School District<\/br>Elementary School","<b>Deerfield Elementary School<\/b><\/br>Deerfield Community School District<\/br>Elementary School","<b>Deerfield Elementary School<\/b><\/br>Oak Creek-Franklin Joint School District<\/br>Elementary School","<b>Deerfield High School<\/b><\/br>Deerfield Community School District<\/br>High School","<b>Deerfield Middle School<\/b><\/br>Deerfield Community School District<\/br>Middle School","<b>Delavan-Darien High School<\/b><\/br>Delavan-Darien School District<\/br>High School","<b>Delavan Darien Technical School Inc School<\/b><\/br>Delavan-Darien School District<\/br>High School","<b>DeLong Middle School<\/b><\/br>Eau Claire Area School District<\/br>Middle School","<b>Denmark Early Childhood Ctr School<\/b><\/br>Denmark School District<\/br>Elementary School","<b>Denmark Elementary School<\/b><\/br>Denmark School District<\/br>Elementary School","<b>Denmark High School<\/b><\/br>Denmark School District<\/br>High School","<b>Denmark Middle School<\/b><\/br>Denmark School District<\/br>Middle School","<b>Destinations Career Academy of Wisconsin High School<\/b><\/br>McFarland School District<\/br>High School","<b>Dickinson Elementary School<\/b><\/br>De Pere School District<\/br>Elementary School","<b>Dimensions of Learning Academy School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Discovery Charter School School<\/b><\/br>Columbus School District<\/br>Elementary School","<b>District 4K School<\/b><\/br>Mukwonago School District<\/br>Elementary School","<b>Dixon Elementary School<\/b><\/br>Elmbrook School District<\/br>Elementary School","<b>Dodgeland Elementary School<\/b><\/br>Dodgeland School District<\/br>Elementary School","<b>Dodgeland High School<\/b><\/br>Dodgeland School District<\/br>High School","<b>Dodgeland Middle School<\/b><\/br>Dodgeland School District<\/br>Middle School","<b>Dodgeville Elementary School<\/b><\/br>Dodgeville School District<\/br>Elementary School","<b>Dodgeville High School<\/b><\/br>Dodgeville School District<\/br>High School","<b>Dodgeville Middle School<\/b><\/br>Dodgeville School District<\/br>Middle School","<b>Doerfler Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Donges Bay Elementary School<\/b><\/br>Mequon-Thiensville School District<\/br>Elementary School","<b>Doty Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Douglas Elementary School<\/b><\/br>Watertown Unified School District<\/br>Elementary School","<b>Dousman Elementary School<\/b><\/br>Kettle Moraine School District<\/br>Elementary School","<b>Downsville Elementary School<\/b><\/br>Menomonie Area School District<\/br>Elementary School","<b>Downtown Montessori School<\/b><\/br>Downtown Montessori Academy Inc School District<\/br>Elementary School","<b>Dr H B Tanner Elementary School<\/b><\/br>Kaukauna Area School District<\/br>Elementary School","<b>Dr Howard Fuller Collegiate Academy School<\/b><\/br>Dr. Howard Fuller Collegiate Academy Inc School District<\/br>High School","<b>Dr Rosa Minoka-Hill School School<\/b><\/br>Green Bay Area Public School District<\/br>Combined Elementary/Secondary School","<b>Dr Virginia Henderson Elementary School School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Dresser Elementary School<\/b><\/br>Saint Croix Falls School District<\/br>Elementary School","<b>Drought Elementary School<\/b><\/br>Norway J7 School District<\/br>Elementary School","<b>Drummond Elementary School<\/b><\/br>Drummond Area School District<\/br>Elementary School","<b>Drummond High School<\/b><\/br>Drummond Area School District<\/br>High School","<b>Drummond Junior High School<\/b><\/br>Drummond Area School District<\/br>Middle School","<b>Dunwiddie Elementary School<\/b><\/br>Port Washington-Saukville School District<\/br>Elementary School","<b>Durand Middle/High School<\/b><\/br>Durand-Arkansaw School District<\/br>High School","<b>Dyer Elementary School<\/b><\/br>Burlington Area School District<\/br>Elementary School","<b>E Cook Elementary School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>E W Luther Elementary School<\/b><\/br>South Milwaukee School District<\/br>Elementary School","<b>eAchieve Academy - Wisconsin School<\/b><\/br>Waukesha School District<\/br>High School","<b>eAchieve Elementary School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>Eagle Bluff Elementary School<\/b><\/br>Onalaska School District<\/br>Elementary School","<b>Eagle Elementary School<\/b><\/br>Palmyra-Eagle Area School District<\/br>Elementary School","<b>Eagle Point Elementary School<\/b><\/br>De Forest Area School District<\/br>Elementary School","<b>Eagles' Wings Public Montessori Charter School<\/b><\/br>Solon Springs School District<\/br>Elementary School","<b>Eagles' Wings Virtual Charter School School<\/b><\/br>Solon Springs School District<\/br>Combined Elementary/Secondary School","<b>Eagles Academy School<\/b><\/br>Solon Springs School District<\/br>Combined Elementary/Secondary School","<b>Eagleville Charter School School<\/b><\/br>Mukwonago School District<\/br>Elementary School","<b>Early Childhood School<\/b><\/br>Cedarburg School District<\/br>Elementary School","<b>Early Childhood School<\/b><\/br>Verona Area School District<\/br>Elementary School","<b>Early Learning Academy School<\/b><\/br>Oak Creek-Franklin Joint School District<\/br>Elementary School","<b>Early Learning Center School<\/b><\/br>North Fond du Lac School District<\/br>Elementary School","<b>Early Learning Center School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Early Learning in Fond du Lac School<\/b><\/br>Fond du Lac School District<\/br>Elementary School","<b>Early Learning Program School<\/b><\/br>De Forest Area School District<\/br>Elementary School","<b>East Elementary School<\/b><\/br>Antigo Unified School District<\/br>Elementary School","<b>East Elementary School<\/b><\/br>Baraboo School District<\/br>Elementary School","<b>East Elementary School<\/b><\/br>Jefferson School District<\/br>Elementary School","<b>East Elementary School<\/b><\/br>Milton School District<\/br>Elementary School","<b>East High School<\/b><\/br>Appleton Area School District<\/br>High School","<b>East High School<\/b><\/br>Green Bay Area Public School District<\/br>High School","<b>East High School<\/b><\/br>Madison Metropolitan School District<\/br>High School","<b>East High School<\/b><\/br>Wausau School District<\/br>High School","<b>East High School<\/b><\/br>Wauwatosa School District<\/br>High School","<b>East High School<\/b><\/br>West Bend School District<\/br>High School","<b>East Troy High School<\/b><\/br>East Troy Community School District<\/br>High School","<b>East Troy Middle School<\/b><\/br>East Troy Community School District<\/br>Middle School","<b>Eastside Elementary School<\/b><\/br>Sun Prairie Area School District<\/br>Elementary School","<b>Eastview Elementary School<\/b><\/br>Lake Geneva J1 School District<\/br>Elementary School","<b>Eau Claire Community Sites School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Eau Claire Virtual School School<\/b><\/br>Eau Claire Area School District<\/br>Combined Elementary/Secondary School","<b>eCampus Academy Charter School School<\/b><\/br>Watertown Unified School District<\/br>Combined Elementary/Secondary School","<b>Eden Elementary School<\/b><\/br>Campbellsport School District<\/br>Elementary School","<b>Edgar Elementary School<\/b><\/br>Edgar School District<\/br>Elementary School","<b>Edgar High School<\/b><\/br>Edgar School District<\/br>High School","<b>Edgar Middle School<\/b><\/br>Edgar School District<\/br>Middle School","<b>Edgerton Community Elementary School<\/b><\/br>Edgerton School District<\/br>Elementary School","<b>Edgerton Elementary School<\/b><\/br>Whitnall School District<\/br>Elementary School","<b>Edgerton High School<\/b><\/br>Edgerton School District<\/br>High School","<b>Edgerton Middle School<\/b><\/br>Edgerton School District<\/br>Middle School","<b>Edgewood Elementary School<\/b><\/br>Greenfield School District<\/br>Elementary School","<b>Edgewood Elementary School<\/b><\/br>Oak Creek-Franklin Joint School District<\/br>Elementary School","<b>Edison Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Edison Middle School<\/b><\/br>Green Bay Area Public School District<\/br>Middle School","<b>Edison Middle School<\/b><\/br>Janesville School District<\/br>Middle School","<b>Edward Bain School - Creative Arts School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Edward Bain School - Dual Language School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Eighty-First Street Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Einstein Middle School<\/b><\/br>Appleton Area School District<\/br>Middle School","<b>Eisenhower Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Eisenhower Elementary School<\/b><\/br>Wauwatosa School District<\/br>Elementary School","<b>Eisenhower Middle/High School<\/b><\/br>New Berlin School District<\/br>High School","<b>Elcho Elementary School<\/b><\/br>Elcho School District<\/br>Elementary School","<b>Elcho High School<\/b><\/br>Elcho School District<\/br>High School","<b>Elcho Middle School<\/b><\/br>Elcho School District<\/br>Middle School","<b>Eleva-Strum Elementary School<\/b><\/br>Eleva-Strum School District<\/br>Elementary School","<b>Eleva-Strum High School<\/b><\/br>Eleva-Strum School District<\/br>High School","<b>Eleva-Strum Middle School<\/b><\/br>Eleva-Strum School District<\/br>Middle School","<b>Elk Mound High School<\/b><\/br>Elk Mound Area School District<\/br>High School","<b>Elk Mound Middle School<\/b><\/br>Elk Mound Area School District<\/br>Middle School","<b>Elkhart Lake Elementary/Middle School<\/b><\/br>Elkhart Lake-Glenbeulah School District<\/br>Elementary School","<b>Elkhart Lake High School<\/b><\/br>Elkhart Lake-Glenbeulah School District<\/br>High School","<b>Elkhorn Area High School<\/b><\/br>Elkhorn Area School District<\/br>High School","<b>Elkhorn Area Middle School<\/b><\/br>Elkhorn Area School District<\/br>Middle School","<b>Elkhorn Options Virtual School School<\/b><\/br>Elkhorn Area School District<\/br>Combined Elementary/Secondary School","<b>Ellsworth Elementary School<\/b><\/br>Ellsworth Community School District<\/br>Elementary School","<b>Ellsworth High School<\/b><\/br>Ellsworth Community School District<\/br>High School","<b>Ellsworth Middle School<\/b><\/br>Ellsworth Community School District<\/br>Middle School","<b>Elm Creative Arts Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Elm Dale Elementary School<\/b><\/br>Greenfield School District<\/br>Elementary School","<b>Elm Lawn Elementary School<\/b><\/br>Middleton-Cross Plains Area School District<\/br>Elementary School","<b>Elmore Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Elmwood Elementary School<\/b><\/br>Elmwood School District<\/br>Elementary School","<b>Elmwood Elementary School<\/b><\/br>New Berlin School District<\/br>Elementary School","<b>Elmwood High School<\/b><\/br>Elmwood School District<\/br>High School","<b>Elmwood Middle School<\/b><\/br>Elmwood School District<\/br>Middle School","<b>Elvehjem Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Emerson Elementary School<\/b><\/br>La Crosse School District<\/br>Elementary School","<b>Emerson Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Emerson Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Endeavor Charter School School<\/b><\/br>Watertown Unified School District<\/br>High School","<b>Endeavor Elementary School<\/b><\/br>Portage Community School District<\/br>Elementary School","<b>Engleburg Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Enrich Excel Achieve Learning Academy School<\/b><\/br>Wausau School District<\/br>High School","<b>Erin Elementary School<\/b><\/br>Erin School District<\/br>Elementary School","<b>Escuela Verde School<\/b><\/br>Trans Center for Youth Inc School District<\/br>High School","<b>eSucceed Charter School School<\/b><\/br>Gilman School District<\/br>Combined Elementary/Secondary School","<b>Ettrick Elementary School<\/b><\/br>Galesville-Ettrick-Trempealeau School District<\/br>Elementary School","<b>Etude Elementary School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Etude High School<\/b><\/br>Sheboygan Area School District<\/br>High School","<b>Etude Middle School<\/b><\/br>Sheboygan Area School District<\/br>Middle School","<b>Evans Elementary School<\/b><\/br>Fond du Lac School District<\/br>Elementary School","<b>Evansville High School<\/b><\/br>Evansville Community School District<\/br>High School","<b>Evergreen Elementary School<\/b><\/br>D C Everest Area School District<\/br>Elementary School","<b>Evergreen Elementary School<\/b><\/br>Holmen School District<\/br>Elementary School","<b>Evergreen Elementary School<\/b><\/br>Waterford Graded J1 School District<\/br>Elementary School","<b>Exploration Charter High School School<\/b><\/br>North Fond du Lac School District<\/br>High School","<b>Ezekiel Gillespie Middle School School<\/b><\/br>Madison Metropolitan School District<\/br>Middle School","<b>Fair Park Elementary School<\/b><\/br>West Bend School District<\/br>Elementary School","<b>Fairview Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Fairview Elementary School<\/b><\/br>Plymouth Joint School District<\/br>Elementary School","<b>Fairview Elementary School<\/b><\/br>Pulaski Community School District<\/br>Elementary School","<b>Fairview South School<\/b><\/br>Elmbrook School District<\/br>Combined Elementary/Secondary School","<b>Fall Creek Elementary School<\/b><\/br>Fall Creek School District<\/br>Elementary School","<b>Fall Creek High School<\/b><\/br>Fall Creek School District<\/br>High School","<b>Fall Creek Middle School<\/b><\/br>Fall Creek School District<\/br>Middle School","<b>Fall River Elementary School<\/b><\/br>Fall River School District<\/br>Elementary School","<b>Fall River High School<\/b><\/br>Fall River School District<\/br>High School","<b>Farmington Elementary School<\/b><\/br>Kewaskum School District<\/br>Elementary School","<b>Farnsworth Middle School<\/b><\/br>Sheboygan Area School District<\/br>Middle School","<b>Fennimore Elementary School<\/b><\/br>Fennimore Community School District<\/br>Elementary School","<b>Fennimore High School<\/b><\/br>Fennimore Community School District<\/br>High School","<b>Fennimore Middle School<\/b><\/br>Fennimore Community School District<\/br>Middle School","<b>Ferber Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Fernwood Montessori School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Fifty-Third Street Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Flambeau Elementary School<\/b><\/br>Flambeau School District<\/br>Elementary School","<b>Flambeau High School<\/b><\/br>Flambeau School District<\/br>High School","<b>Flambeau Middle School<\/b><\/br>Flambeau School District<\/br>Middle School","<b>Flex Academy School<\/b><\/br>Little Chute Area School District<\/br>Elementary School","<b>Florence Elementary School<\/b><\/br>Florence County School District<\/br>Elementary School","<b>Florence High School<\/b><\/br>Florence County School District<\/br>High School","<b>Florence Middle School<\/b><\/br>Florence County School District<\/br>Middle School","<b>Flynn Elementary School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Fond du Lac High School<\/b><\/br>Fond du Lac School District<\/br>High School","<b>Fond du Lac STEM Academy School<\/b><\/br>Fond du Lac School District<\/br>Combined Elementary/Secondary School","<b>Fontana Elementary School<\/b><\/br>Fontana J8 School District<\/br>Elementary School","<b>Forest Edge Elementary School School<\/b><\/br>Oregon School District<\/br>Elementary School","<b>Forest Glen Elementary School<\/b><\/br>Howard-Suamico School District<\/br>Elementary School","<b>Forest Home Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Forest Lane Community School School<\/b><\/br>Montello School District<\/br>Elementary School","<b>Forest Park Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Forest Park Middle School<\/b><\/br>Franklin Public School District<\/br>Middle School","<b>Forest Ridge Elementary School<\/b><\/br>Oak Creek-Franklin Joint School District<\/br>Elementary School","<b>Forrest Street Elementary School School<\/b><\/br>Black River Falls School District<\/br>Elementary School","<b>Fort Atkinson 4K School<\/b><\/br>Fort Atkinson School District<\/br>Elementary School","<b>Fort Atkinson High School<\/b><\/br>Fort Atkinson School District<\/br>High School","<b>Fort Atkinson Middle School<\/b><\/br>Fort Atkinson School District<\/br>Middle School","<b>Fort Howard Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Four Corners Elementary School<\/b><\/br>Superior School District<\/br>Elementary School","<b>Fox Cities Leadership Academy School<\/b><\/br>Appleton Area School District<\/br>High School","<b>Fox Prairie Elementary School<\/b><\/br>Stoughton Area School District<\/br>Elementary School","<b>Fox River Academy School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Fox River Middle School<\/b><\/br>Waterford Graded J1 School District<\/br>Middle School","<b>Fox Valley Virtual School School<\/b><\/br>Menasha Joint School District<\/br>Combined Elementary/Secondary School","<b>Fox West Academy School<\/b><\/br>Hortonville Area School District<\/br>Middle School","<b>Foxview Intermediate School<\/b><\/br>De Pere School District<\/br>Middle School","<b>Fran Fruzen Intermediate School<\/b><\/br>Beloit School District<\/br>Middle School","<b>Frank Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Frank Lloyd Wright Intermediate School<\/b><\/br>West Allis-West Milwaukee School District<\/br>Middle School","<b>Franklin Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Franklin Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Franklin Elementary School<\/b><\/br>Manitowoc School District<\/br>Elementary School","<b>Franklin Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Franklin Elementary School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>Franklin Elementary School<\/b><\/br>Wausau School District<\/br>Elementary School","<b>Franklin Elementary School<\/b><\/br>West Allis-West Milwaukee School District<\/br>Elementary School","<b>Franklin High School<\/b><\/br>Franklin Public School District<\/br>High School","<b>Franklin Middle School<\/b><\/br>Green Bay Area Public School District<\/br>Middle School","<b>Franklin Middle School<\/b><\/br>Janesville School District<\/br>Middle School","<b>Fratney Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Fratt Elementary School<\/b><\/br>Racine Unified School District<\/br>Elementary School","<b>Frederic 6-12 School School<\/b><\/br>Frederic School District<\/br>High School","<b>Frederic Elementary School<\/b><\/br>Frederic School District<\/br>Elementary School","<b>Freedom Elementary School<\/b><\/br>Freedom Area School District<\/br>Elementary School","<b>Freedom High School<\/b><\/br>Freedom Area School District<\/br>High School","<b>Freedom Middle School<\/b><\/br>Freedom Area School District<\/br>Middle School","<b>Fremont Elementary School<\/b><\/br>Weyauwega-Fremont School District<\/br>Elementary School","<b>Fremont STEM Academy Inc. School<\/b><\/br>Weyauwega-Fremont School District<\/br>Middle School","<b>Friendship Learning Elementary School<\/b><\/br>North Fond du Lac School District<\/br>Elementary School","<b>Friess Lake Elementary School<\/b><\/br>Holy Hill Area School District<\/br>Elementary School","<b>G D Jones Elementary School<\/b><\/br>Wausau School District<\/br>Elementary School","<b>Gaenslen Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Galesville-Ettrick-Trempealeau High School<\/b><\/br>Galesville-Ettrick-Trempealeau School District<\/br>High School","<b>Galesville-Ettrick-Trempealeau Middle School<\/b><\/br>Galesville-Ettrick-Trempealeau School District<\/br>Middle School","<b>Galesville Elementary School<\/b><\/br>Galesville-Ettrick-Trempealeau School District<\/br>Elementary School","<b>Garden Prairie Intermediate School School<\/b><\/br>Beloit Turner School District<\/br>Elementary School","<b>Garland Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Gaston Elementary School<\/b><\/br>Beloit School District<\/br>Elementary School","<b>Gaylord A Nelson Educational Center School<\/b><\/br>Clear Lake School District<\/br>Elementary School","<b>GBAPS Community 4K Site School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Gegan Elementary School<\/b><\/br>Menasha Joint School District<\/br>Elementary School","<b>George D Warriner High School for Personalized Learning School<\/b><\/br>Sheboygan Area School District<\/br>High School","<b>George D Warriner Middle School<\/b><\/br>Sheboygan Area School District<\/br>Middle School","<b>Germantown High School<\/b><\/br>Germantown School District<\/br>High School","<b>Gerritts Middle School<\/b><\/br>Kimberly Area School District<\/br>Middle School","<b>Gibraltar Elementary School<\/b><\/br>Gibraltar Area School District<\/br>Elementary School","<b>Gibraltar High School<\/b><\/br>Gibraltar Area School District<\/br>High School","<b>Gibraltar Middle School<\/b><\/br>Gibraltar Area School District<\/br>Middle School","<b>Gifford School School<\/b><\/br>Racine Unified School District<\/br>Combined Elementary/Secondary School","<b>Gillett Elementary School<\/b><\/br>Gillett School District<\/br>Elementary School","<b>Gillett High School<\/b><\/br>Gillett School District<\/br>High School","<b>Gillett Middle School<\/b><\/br>Gillett School District<\/br>Middle School","<b>Gilman Elementary School<\/b><\/br>Gilman School District<\/br>Elementary School","<b>Gilman High School<\/b><\/br>Gilman School District<\/br>High School","<b>Gilmanton Elementary School<\/b><\/br>Gilmanton School District<\/br>Elementary School","<b>Gilmanton High School<\/b><\/br>Gilmanton School District<\/br>High School","<b>Gilmanton Middle School<\/b><\/br>Gilmanton School District<\/br>Middle School","<b>Gilmore Fine Arts School School<\/b><\/br>Racine Unified School District<\/br>Combined Elementary/Secondary School","<b>Glacial Drumlin School School<\/b><\/br>Monona Grove School District<\/br>Middle School","<b>Glacier Creek Middle School<\/b><\/br>Middleton-Cross Plains Area School District<\/br>Middle School","<b>Glacier Edge Elementary School<\/b><\/br>Verona Area School District<\/br>Elementary School","<b>Glen Hills Middle School<\/b><\/br>Glendale-River Hills School District<\/br>Combined Elementary/Secondary School","<b>Glenbrook Elementary School<\/b><\/br>Pulaski Community School District<\/br>Elementary School","<b>Glenwood City Elementary School<\/b><\/br>Glenwood City School District<\/br>Elementary School","<b>Glenwood City High School<\/b><\/br>Glenwood City School District<\/br>High School","<b>Glenwood City Middle School<\/b><\/br>Glenwood City School District<\/br>Middle School","<b>Glenwood Elementary School<\/b><\/br>Greenfield School District<\/br>Elementary School","<b>Glidden Elementary School<\/b><\/br>Chequamegon School District<\/br>Elementary School","<b>Golda Meir School School<\/b><\/br>Milwaukee School District<\/br>Combined Elementary/Secondary School","<b>Gompers Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Goodman-Armstrong Elementary School<\/b><\/br>Goodman-Armstrong Creek School District<\/br>Elementary School","<b>Goodman High School<\/b><\/br>Goodman-Armstrong Creek School District<\/br>High School","<b>Goodrich Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Grafton High School<\/b><\/br>Grafton School District<\/br>High School","<b>Grand Avenue Elementary School<\/b><\/br>Sauk Prairie School District<\/br>Elementary School","<b>Grandview High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Granite Ridge School School<\/b><\/br>Monona Grove School District<\/br>Elementary School","<b>Grant Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Grant Elementary School<\/b><\/br>Marshfield Unified School District<\/br>Elementary School","<b>Grant Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Grant Elementary School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Grant Elementary School<\/b><\/br>Wausau School District<\/br>Elementary School","<b>Grant Elementary School<\/b><\/br>Wisconsin Rapids School District<\/br>Elementary School","<b>Grant Gordon Learning Center School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Granton Elementary School<\/b><\/br>Granton Area School District<\/br>Elementary School","<b>Granton High School<\/b><\/br>Granton Area School District<\/br>High School","<b>Grantosa Drive Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Grantsburg Elementary School<\/b><\/br>Grantsburg School District<\/br>Elementary School","<b>Grantsburg High School<\/b><\/br>Grantsburg School District<\/br>High School","<b>Grantsburg Middle School<\/b><\/br>Grantsburg School District<\/br>Combined Elementary/Secondary School","<b>Grayside Elementary School<\/b><\/br>Mauston School District<\/br>Elementary School","<b>Great Lakes Elementary School<\/b><\/br>Superior School District<\/br>Elementary School","<b>Green Bay Head Start School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Green Lake Elementary School<\/b><\/br>Green Lake School District<\/br>Elementary School","<b>Green Lake High School<\/b><\/br>Green Lake School District<\/br>High School","<b>Green Tree Elementary School<\/b><\/br>West Bend School District<\/br>Elementary School","<b>Green Tree Preparatory Academy School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Greendale High School<\/b><\/br>Greendale School District<\/br>High School","<b>Greendale Middle School<\/b><\/br>Greendale School District<\/br>Middle School","<b>Greenfield Bilingual School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Greenfield Elementary School<\/b><\/br>Baldwin-Woodville Area School District<\/br>Elementary School","<b>Greenfield High School<\/b><\/br>Greenfield School District<\/br>High School","<b>Greenfield Middle School<\/b><\/br>Greenfield School District<\/br>Middle School","<b>Greenland Elementary School<\/b><\/br>Oconomowoc Area School District<\/br>Elementary School","<b>Greenville Elementary School<\/b><\/br>Hortonville Area School District<\/br>Elementary School","<b>Greenville Middle School<\/b><\/br>Hortonville Area School District<\/br>Middle School","<b>Greenwood Elementary School<\/b><\/br>Greenwood School District<\/br>Elementary School","<b>Greenwood Elementary School<\/b><\/br>River Falls School District<\/br>Elementary School","<b>Greenwood High School<\/b><\/br>Greenwood School District<\/br>High School","<b>Gresham Elementary School<\/b><\/br>Gresham School District<\/br>Elementary School","<b>Gresham High School<\/b><\/br>Gresham School District<\/br>High School","<b>Grewenow Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Groppi High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Grove Elementary School<\/b><\/br>Wisconsin Rapids School District<\/br>Elementary School","<b>Hackett Elementary School<\/b><\/br>Beloit School District<\/br>Elementary School","<b>Hadfield Elementary School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>Haen Elementary School<\/b><\/br>Kaukauna Area School District<\/br>Elementary School","<b>Hales Corners Elementary School<\/b><\/br>Whitnall School District<\/br>Elementary School","<b>Halmstad Elementary School<\/b><\/br>Chippewa Falls Area Unified School District<\/br>Elementary School","<b>Hamilton Elementary School School<\/b><\/br>La Crosse School District<\/br>Elementary School","<b>Hamilton High School<\/b><\/br>Hamilton School District<\/br>High School","<b>Hamilton High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Hamilton Middle School<\/b><\/br>Madison Metropolitan School District<\/br>Middle School","<b>Hampton Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>HAPA-Hmong American Peace Academy K3-12 School<\/b><\/br>Milwaukee School District<\/br>Combined Elementary/Secondary School","<b>Harborside Academy School<\/b><\/br>Kenosha School District<\/br>High School","<b>Harmony Elementary School<\/b><\/br>Milton School District<\/br>Elementary School","<b>Harold S Vincent School of Agricultural Science School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Harrison Elementary School<\/b><\/br>Janesville School District<\/br>Elementary School","<b>Hartford Avenue Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Hartford High School<\/b><\/br>Hartford UHS School District<\/br>High School","<b>Harvest Intermediate School School<\/b><\/br>De Forest Area School District<\/br>Elementary School","<b>Harvey Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Hatley Elementary School<\/b><\/br>D C Everest Area School District<\/br>Elementary School","<b>Haugen Elementary School<\/b><\/br>Rice Lake Area School District<\/br>Elementary School","<b>Hawley Environmental School School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Hawthorn Hills Elementary School<\/b><\/br>Wausau School District<\/br>Elementary School","<b>Hawthorne Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Hawthorne Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Hawthorne Elementary School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>Hayes Bilingual School School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Hayward Ctr for Individualized Learning School<\/b><\/br>Hayward Community School District<\/br>Combined Elementary/Secondary School","<b>Hayward High School<\/b><\/br>Hayward Community School District<\/br>High School","<b>Hayward Intermediate School<\/b><\/br>Hayward Community School District<\/br>Elementary School","<b>Hayward Middle School<\/b><\/br>Hayward Community School District<\/br>Middle School","<b>Hayward Primary School<\/b><\/br>Hayward Community School District<\/br>Elementary School","<b>Hemlock Creek Elementary School<\/b><\/br>West De Pere School District<\/br>Elementary School","<b>Heritage Elementary School<\/b><\/br>De Pere School District<\/br>Elementary School","<b>Herrman Elementary School<\/b><\/br>Sparta Area School District<\/br>Elementary School","<b>Hewitt-Texas Elementary School<\/b><\/br>Wausau School District<\/br>Elementary School","<b>Heyer Elementary School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>Hi-Mount Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>High Marq Environmental Charter School School<\/b><\/br>Montello School District<\/br>High School","<b>High School of Health Sciences School<\/b><\/br>Kettle Moraine School District<\/br>High School","<b>Highland Community Elementary School<\/b><\/br>Highland School District<\/br>Elementary School","<b>Highland Community High School<\/b><\/br>Highland School District<\/br>High School","<b>Highland Community Middle School<\/b><\/br>Highland School District<\/br>Middle School","<b>Highland Community School School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Highland View Elementary School<\/b><\/br>Greendale School District<\/br>Elementary School","<b>Highlands Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Hilbert Elementary School<\/b><\/br>Hilbert School District<\/br>Elementary School","<b>Hilbert High School<\/b><\/br>Hilbert School District<\/br>High School","<b>Hilbert Middle School<\/b><\/br>Hilbert School District<\/br>Middle School","<b>Hillcrest Elementary School<\/b><\/br>Chippewa Falls Area Unified School District<\/br>Elementary School","<b>Hillcrest Elementary School<\/b><\/br>Pulaski Community School District<\/br>Elementary School","<b>Hillcrest Elementary School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>Hillcrest Primary School School<\/b><\/br>Shawano School District<\/br>Elementary School","<b>Hillcrest School School<\/b><\/br>Kenosha School District<\/br>High School","<b>Hillsboro Elementary School<\/b><\/br>Hillsboro School District<\/br>Elementary School","<b>Hillsboro High School<\/b><\/br>Hillsboro School District<\/br>High School","<b>Hilltop Day Care and Preschool School<\/b><\/br>Rice Lake Area School District<\/br>Elementary School","<b>Hilltop Elementary School<\/b><\/br>Rice Lake Area School District<\/br>Elementary School","<b>Hintgen Elementary School<\/b><\/br>La Crosse School District<\/br>Elementary School","<b>Holcombe Elementary School<\/b><\/br>Lake Holcombe School District<\/br>Elementary School","<b>Holcombe High School<\/b><\/br>Lake Holcombe School District<\/br>High School","<b>Holmen High School<\/b><\/br>Holmen School District<\/br>High School","<b>Holmen Middle School<\/b><\/br>Holmen School District<\/br>Middle School","<b>Holmen Public Preschool School<\/b><\/br>Holmen School District<\/br>Elementary School","<b>Holmes Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Homestead High School<\/b><\/br>Mequon-Thiensville School District<\/br>High School","<b>Honey Creek Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Honor Elementary School<\/b><\/br>Herman-Neosho-Rubicon School District<\/br>Elementary School","<b>Honor Intermediate School<\/b><\/br>Herman-Neosho-Rubicon School District<\/br>Middle School","<b>Hoover Elementary School<\/b><\/br>Neenah Joint School District<\/br>Elementary School","<b>Hoover Elementary School<\/b><\/br>West Allis-West Milwaukee School District<\/br>Elementary School","<b>Hopkins Lloyd Community School School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Horace Mann Elementary School<\/b><\/br>Neenah Joint School District<\/br>Elementary School","<b>Horace Mann Elementary School<\/b><\/br>West Allis-West Milwaukee School District<\/br>Elementary School","<b>Horace Mann High School<\/b><\/br>North Fond du Lac School District<\/br>High School","<b>Horace Mann Middle School<\/b><\/br>Sheboygan Area School District<\/br>Middle School","<b>Horace Mann Middle School<\/b><\/br>Wausau School District<\/br>Middle School","<b>Horicon Elementary School School<\/b><\/br>Horicon School District<\/br>Elementary School","<b>Horicon High School School<\/b><\/br>Horicon School District<\/br>High School","<b>Horicon Middle School School<\/b><\/br>Horicon School District<\/br>Middle School","<b>Horizon Elementary School<\/b><\/br>Plymouth Joint School District<\/br>Elementary School","<b>Horizon Elementary School<\/b><\/br>Sun Prairie Area School District<\/br>Elementary School","<b>Horizon School School<\/b><\/br>Pewaukee School District<\/br>Elementary School","<b>Horizons Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Horlick High School<\/b><\/br>Racine Unified School District<\/br>High School","<b>Horning Middle School<\/b><\/br>Waukesha School District<\/br>Middle School","<b>Hortonville Area K4 School School<\/b><\/br>Hortonville Area School District<\/br>Elementary School","<b>Hortonville Elementary School<\/b><\/br>Hortonville Area School District<\/br>Elementary School","<b>Hortonville High School<\/b><\/br>Hortonville Area School District<\/br>High School","<b>Hortonville Middle School<\/b><\/br>Hortonville Area School District<\/br>Middle School","<b>Houdini Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Houlton Elementary School<\/b><\/br>Hudson School District<\/br>Elementary School","<b>Howard and Suamico 4K Collaborative School<\/b><\/br>Howard-Suamico School District<\/br>Elementary School","<b>Howard Elementary School<\/b><\/br>Howard-Suamico School District<\/br>Elementary School","<b>Howards Grove High School<\/b><\/br>Howards Grove School District<\/br>High School","<b>Howards Grove Middle School<\/b><\/br>Howards Grove School District<\/br>Middle School","<b>Howe Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Howe Elementary School<\/b><\/br>Wisconsin Rapids School District<\/br>Elementary School","<b>Hudson 4K School<\/b><\/br>Hudson School District<\/br>Elementary School","<b>Hudson High School<\/b><\/br>Hudson School District<\/br>High School","<b>Hudson Middle School<\/b><\/br>Hudson School District<\/br>Middle School","<b>Hudson Prairie Elementary School<\/b><\/br>Hudson School District<\/br>Elementary School","<b>Hudson Virtual Charter School School<\/b><\/br>Hudson School District<\/br>High School","<b>Huegel Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Humboldt Park Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Humke Elementary School<\/b><\/br>Nekoosa School District<\/br>Elementary School","<b>Huntley Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Hurley Elementary School<\/b><\/br>Hurley School District<\/br>Elementary School","<b>Hurley High School<\/b><\/br>Hurley School District<\/br>High School","<b>Hustisford High School<\/b><\/br>Hustisford School District<\/br>High School","<b>IDEAL Individualized Developmental Educational Approaches to Learning School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>iForward School<\/b><\/br>Grantsburg School District<\/br>Combined Elementary/Secondary School","<b>iLEAD Individualized Leadership and Entrepreneurship Academic Discovery School<\/b><\/br>Mauston School District<\/br>High School","<b>Independence Elementary School<\/b><\/br>Independence School District<\/br>Elementary School","<b>Independence High School<\/b><\/br>Independence School District<\/br>High School","<b>Independence Middle School<\/b><\/br>Independence School District<\/br>Middle School","<b>Indian Hill School School<\/b><\/br>Maple Dale-Indian Hill School District<\/br>Elementary School","<b>Indian Mound Middle School<\/b><\/br>McFarland School District<\/br>Middle School","<b>Indian Trail High School and Academy School<\/b><\/br>Kenosha School District<\/br>High School","<b>Innovations STEM Academy School<\/b><\/br>Sparta Area School District<\/br>Middle School","<b>Innovative and Alternative Middle School<\/b><\/br>Madison Metropolitan School District<\/br>Middle School","<b>Innovative High School<\/b><\/br>Madison Metropolitan School District<\/br>High School","<b>Insight School of Wisconsin High School<\/b><\/br>McFarland School District<\/br>High School","<b>Iola-Scandinavia Elementary School<\/b><\/br>Iola-Scandinavia School District<\/br>Elementary School","<b>Iola-Scandinavia High School<\/b><\/br>Iola-Scandinavia School District<\/br>High School","<b>Iowa-Grant Elementary/Middle School<\/b><\/br>Iowa-Grant School District<\/br>Elementary School","<b>Iowa-Grant High School<\/b><\/br>Iowa-Grant School District<\/br>High School","<b>Iron River Elementary School<\/b><\/br>Maple School District<\/br>Elementary School","<b>Irving Elementary School<\/b><\/br>West Allis-West Milwaukee School District<\/br>Elementary School","<b>Island City Virtual Academy School<\/b><\/br>Cumberland School District<\/br>Combined Elementary/Secondary School","<b>Isthmus Montessori Academy Public School<\/b><\/br>Isthmus Montessori Academy Inc School District<\/br>Combined Elementary/Secondary School","<b>Ithaca Elementary School<\/b><\/br>Ithaca School District<\/br>Elementary School","<b>Ithaca High School<\/b><\/br>Ithaca School District<\/br>High School","<b>Ithaca Middle School<\/b><\/br>Ithaca School District<\/br>Middle School","<b>Ixonia Elementary School<\/b><\/br>Oconomowoc Area School District<\/br>Elementary School","<b>J C McKenna Middle School<\/b><\/br>Evansville Community School District<\/br>Middle School","<b>Jack Young Middle School<\/b><\/br>Baraboo School District<\/br>Middle School","<b>Jackson Elementary School<\/b><\/br>Elkhorn Area School District<\/br>Elementary School","<b>Jackson Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Jackson Elementary School<\/b><\/br>Janesville School District<\/br>Elementary School","<b>Jackson Elementary School<\/b><\/br>Manitowoc School District<\/br>Elementary School","<b>Jackson Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Jackson Elementary School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Jackson Elementary School<\/b><\/br>West Bend School District<\/br>Elementary School","<b>James E Dottke Project-Based Learning High School School<\/b><\/br>West Allis-West Milwaukee School District<\/br>High School","<b>James Madison Academic Campus School<\/b><\/br>Milwaukee School District<\/br>High School","<b>James Madison Elementary School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>James Williams Middle School<\/b><\/br>Rhinelander School District<\/br>Middle School","<b>James Wright Middle School<\/b><\/br>Madison Metropolitan School District<\/br>Middle School","<b>Janssen Elementary School<\/b><\/br>Kimberly Area School District<\/br>Elementary School","<b>JEDI Virtual K-12 School<\/b><\/br>Marshall School District<\/br>Combined Elementary/Secondary School","<b>JEDI Virtual K-12 - Jefferson and Eastern Dane County Interactive School<\/b><\/br>Lake Mills Area School District<\/br>Combined Elementary/Secondary School","<b>Jefferson Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Jefferson Elementary School<\/b><\/br>Beaver Dam Unified School District<\/br>Elementary School","<b>Jefferson Elementary School<\/b><\/br>Janesville School District<\/br>Elementary School","<b>Jefferson Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Jefferson Elementary School<\/b><\/br>Manitowoc School District<\/br>Elementary School","<b>Jefferson Elementary School<\/b><\/br>Menasha Joint School District<\/br>Elementary School","<b>Jefferson Elementary School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>Jefferson Elementary School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Jefferson Elementary School<\/b><\/br>Stevens Point Area Public School District<\/br>Elementary School","<b>Jefferson Elementary School<\/b><\/br>Wauwatosa School District<\/br>Elementary School","<b>Jefferson Elementary School<\/b><\/br>West Allis-West Milwaukee School District<\/br>Elementary School","<b>Jefferson Head Start Learning Center School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Jefferson High School<\/b><\/br>Jefferson School District<\/br>High School","<b>Jefferson Lighthouse Elementary School<\/b><\/br>Racine Unified School District<\/br>Elementary School","<b>Jefferson Middle School<\/b><\/br>Jefferson School District<\/br>Middle School","<b>Jeffery Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Jerstad-Agerholm School School<\/b><\/br>Racine Unified School District<\/br>Combined Elementary/Secondary School","<b>Jim Falls Elementary School<\/b><\/br>Chippewa Falls Area Unified School District<\/br>Elementary School","<b>John Dewey Academy of Learning School<\/b><\/br>Green Bay Area Public School District<\/br>High School","<b>John Edwards High School<\/b><\/br>Port Edwards School District<\/br>High School","<b>John Edwards Middle School<\/b><\/br>Port Edwards School District<\/br>Middle School","<b>John Hustis Elementary School<\/b><\/br>Hustisford School District<\/br>Elementary School","<b>John Long Middle School<\/b><\/br>Grafton School District<\/br>Middle School","<b>John Marshall Elementary School<\/b><\/br>Wausau School District<\/br>Elementary School","<b>John Muir Middle School<\/b><\/br>Wausau School District<\/br>Middle School","<b>Johnson Creek Public School School<\/b><\/br>Johnson Creek School District<\/br>Combined Elementary/Secondary School","<b>Johnson Elementary School<\/b><\/br>Racine Unified School District<\/br>Elementary School","<b>Johnston Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Jones Elementary School<\/b><\/br>Cudahy School District<\/br>Elementary School","<b>Journey School<\/b><\/br>Ripon Area School District<\/br>Elementary School","<b>Juda Elementary School<\/b><\/br>Juda School District<\/br>Elementary School","<b>Juda High School<\/b><\/br>Juda School District<\/br>High School","<b>Julian Thomas Elementary School<\/b><\/br>Racine Unified School District<\/br>Elementary School","<b>Juvenile Detention School<\/b><\/br>Stevens Point Area Public School District<\/br>Combined Elementary/Secondary School","<b>Kaehkenawapahtaeq School<\/b><\/br>Menominee Indian School District<\/br>Elementary School","<b>Kagel Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Kaleidoscope Academy School<\/b><\/br>Appleton Area School District<\/br>Middle School","<b>Kansasville Elementary School<\/b><\/br>Dover #1 School District<\/br>Elementary School","<b>Karcher Middle School School<\/b><\/br>Burlington Area School District<\/br>Middle School","<b>Kate Goodrich Elementary School<\/b><\/br>Merrill Area School District<\/br>Elementary School","<b>Katherine Johnson Academy of Enriched Virtual Learning School<\/b><\/br>Green Bay Area Public School District<\/br>Combined Elementary/Secondary School","<b>Kaukauna High School<\/b><\/br>Kaukauna Area School District<\/br>High School","<b>Keefe Avenue Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Kegonsa Elementary School<\/b><\/br>Stoughton Area School District<\/br>Elementary School","<b>Keller Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Kennedy Elementary School<\/b><\/br>Grafton School District<\/br>Elementary School","<b>Kennedy Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Kennedy Elementary School<\/b><\/br>Janesville School District<\/br>Elementary School","<b>Kennedy Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Kennedy Elementary School<\/b><\/br>Stevens Point Area Public School District<\/br>Elementary School","<b>Kennedy Middle School<\/b><\/br>Germantown School District<\/br>Middle School","<b>Kenosha 4 Year Old Kindergarten School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Kenosha High School of Technology Enhanced Curriculum School<\/b><\/br>Kenosha Schools of Technology Enhanced Curriculum Inc School District<\/br>High School","<b>Kenosha Pike School School<\/b><\/br>Kenosha School District<\/br>Combined Elementary/Secondary School","<b>Kenosha School of Technology Enhanced Curriculum School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Keshena Primary School<\/b><\/br>Menominee Indian School District<\/br>Elementary School","<b>Kettle Moraine 4K School<\/b><\/br>Kettle Moraine School District<\/br>Elementary School","<b>Kettle Moraine Explore School<\/b><\/br>Kettle Moraine School District<\/br>Elementary School","<b>Kettle Moraine Global School for Global Leadership and Innovation School<\/b><\/br>Kettle Moraine School District<\/br>High School","<b>Kettle Moraine High School<\/b><\/br>Kettle Moraine School District<\/br>High School","<b>Kettle Moraine Middle School<\/b><\/br>Kettle Moraine School District<\/br>Middle School","<b>Kewaskum Elementary School<\/b><\/br>Kewaskum School District<\/br>Elementary School","<b>Kewaskum High School<\/b><\/br>Kewaskum School District<\/br>High School","<b>Kewaskum Middle School<\/b><\/br>Kewaskum School District<\/br>Middle School","<b>Kewaunee Elementary School<\/b><\/br>Kewaunee School District<\/br>Elementary School","<b>Kewaunee High School<\/b><\/br>Kewaunee School District<\/br>High School","<b>Kewaunee Middle School<\/b><\/br>Kewaunee School District<\/br>Middle School","<b>Kickapoo Elementary School<\/b><\/br>Kickapoo Area School District<\/br>Elementary School","<b>Kickapoo High School<\/b><\/br>Kickapoo Area School District<\/br>High School","<b>Kickapoo Valley Forest School School<\/b><\/br>La Farge School District<\/br>Elementary School","<b>Kiel eSchool School<\/b><\/br>Kiel Area School District<\/br>High School","<b>Kiel eSchool School<\/b><\/br>West De Pere School District<\/br>High School","<b>Kiel High School<\/b><\/br>Kiel Area School District<\/br>High School","<b>Kiel Middle School<\/b><\/br>Kiel Area School District<\/br>Middle School","<b>Kilbourn Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Kimberly High School<\/b><\/br>Kimberly Area School District<\/br>High School","<b>King Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>King International School<\/b><\/br>Milwaukee School District<\/br>High School","<b>King International Baccalaureate Middle School<\/b><\/br>Milwaukee School District<\/br>Middle School","<b>King Jr Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Kluge Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>KM Connect Virtual Academy for Communication and Collaboration School<\/b><\/br>Kettle Moraine School District<\/br>Combined Elementary/Secondary School","<b>Knapp Elementary School<\/b><\/br>Menomonie Area School District<\/br>Elementary School","<b>Knapp Elementary School<\/b><\/br>Racine Unified School District<\/br>Elementary School","<b>Koenig Elementary School<\/b><\/br>Two Rivers Public School District<\/br>Elementary School","<b>Kohler Elementary School<\/b><\/br>Kohler School District<\/br>Elementary School","<b>Kohler High School<\/b><\/br>Kohler School District<\/br>High School","<b>Kohler Middle School<\/b><\/br>Kohler School District<\/br>Middle School","<b>Korger-Chestnut School<\/b><\/br>Chippewa Falls Area Unified School District<\/br>Elementary School","<b>Kosciuszko Elementary School<\/b><\/br>Cudahy School District<\/br>Elementary School","<b>Koshkonong Trails School School<\/b><\/br>Cambridge School District<\/br>High School","<b>Kromrey Middle School<\/b><\/br>Middleton-Cross Plains Area School District<\/br>Middle School","<b>La Casa de Esperanza Charter School School<\/b><\/br>La Casa De Esperanza Inc. School District<\/br>Elementary School","<b>La Causa Charter School School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>La Crosse Offsite Preschool School<\/b><\/br>La Crosse School District<\/br>Elementary School","<b>La Crosse Polytechnic School School<\/b><\/br>La Crosse School District<\/br>High School","<b>La Farge Elementary School<\/b><\/br>La Farge School District<\/br>Elementary School","<b>La Farge High School<\/b><\/br>La Farge School District<\/br>High School","<b>La Farge Middle School<\/b><\/br>La Farge School District<\/br>Middle School","<b>La Grange Elementary School<\/b><\/br>Tomah Area School District<\/br>Elementary School","<b>La Pointe Elementary School<\/b><\/br>Bayfield School District<\/br>Elementary School","<b>Lac du Flambeau Elementary School<\/b><\/br>Lac du Flambeau #1 School District<\/br>Elementary School","<b>Laconia High School<\/b><\/br>Rosendale-Brandon School District<\/br>High School","<b>Lad Lake Synergy School School<\/b><\/br>Milwaukee School District<\/br>Combined Elementary/Secondary School","<b>Ladysmith Elementary School<\/b><\/br>Ladysmith School District<\/br>Elementary School","<b>Ladysmith High School<\/b><\/br>Ladysmith School District<\/br>High School","<b>Ladysmith Middle School<\/b><\/br>Ladysmith School District<\/br>Middle School","<b>LaFollette Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>LaFollette High School<\/b><\/br>Madison Metropolitan School District<\/br>High School","<b>Lake Bluff Elementary School<\/b><\/br>Shorewood School District<\/br>Elementary School","<b>Lake Country Academy - Charter School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Lake Country Classical Academy Inc School<\/b><\/br>Lake Country Classical Academy Inc School District<\/br>Combined Elementary/Secondary School","<b>Lake Country School School<\/b><\/br>Lake Country School District<\/br>Elementary School","<b>Lake Delton Elementary School<\/b><\/br>Wisconsin Dells School District<\/br>Elementary School","<b>Lake Denoon Middle School<\/b><\/br>Muskego-Norway School District<\/br>Middle School","<b>Lake Geneva Middle School<\/b><\/br>Lake Geneva J1 School District<\/br>Middle School","<b>Lake Holcombe Middle School<\/b><\/br>Lake Holcombe School District<\/br>Middle School","<b>Lake Mills Elementary School<\/b><\/br>Lake Mills Area School District<\/br>Elementary School","<b>Lake Mills High School<\/b><\/br>Lake Mills Area School District<\/br>High School","<b>Lake Mills Middle School<\/b><\/br>Lake Mills Area School District<\/br>Middle School","<b>Lake Shore Middle School<\/b><\/br>Mequon-Thiensville School District<\/br>Middle School","<b>Lake Superior Elementary School<\/b><\/br>Ashland School District<\/br>Elementary School","<b>Lake Superior Elementary School<\/b><\/br>Superior School District<\/br>Elementary School","<b>Lake View Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Lakeland High School<\/b><\/br>Lakeland UHS School District<\/br>High School","<b>Lakeland STAR Academy--Strong Talented Adventurous Remarkable School<\/b><\/br>Lakeland UHS School District<\/br>High School","<b>Lakeland STAR School--Strong Talented Adventurous Remarkable School<\/b><\/br>Minocqua J1 School District<\/br>Middle School","<b>Laker Online School<\/b><\/br>Turtle Lake School District<\/br>Combined Elementary/Secondary School","<b>Lakeshore Elementary School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Lakeshore Elementary School<\/b><\/br>Fond du Lac School District<\/br>Elementary School","<b>Lakeside Elementary School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>Lakeview Elementary School<\/b><\/br>Muskego-Norway School District<\/br>Elementary School","<b>Lakeview Elementary School<\/b><\/br>Neenah Joint School District<\/br>Elementary School","<b>Lakeview Elementary School<\/b><\/br>South Milwaukee School District<\/br>Elementary School","<b>Lakeview Elementary School<\/b><\/br>Whitewater Unified School District<\/br>Elementary School","<b>Lakeview Technology Academy School<\/b><\/br>Kenosha School District<\/br>High School","<b>Lakewood Elementary School<\/b><\/br>Twin Lakes #4 School District<\/br>Elementary School","<b>Lancaster Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Lancaster High School<\/b><\/br>Lancaster Community School District<\/br>High School","<b>Lancaster Middle School<\/b><\/br>Lancaster Community School District<\/br>Middle School","<b>Lance Middle School<\/b><\/br>Kenosha School District<\/br>Middle School","<b>Langlade Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Lannon Elementary School<\/b><\/br>Hamilton School District<\/br>Elementary School","<b>Lannoye Elementary School<\/b><\/br>Pulaski Community School District<\/br>Elementary School","<b>Laona High School<\/b><\/br>Laona School District<\/br>High School","<b>Lapham Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Laurel High School<\/b><\/br>Viroqua Area School District<\/br>High School","<b>LEADS Primary Charter School School<\/b><\/br>Shawano School District<\/br>Elementary School","<b>LEAP Elementary School<\/b><\/br>Watertown Unified School District<\/br>Elementary School","<b>Learning by Design Academy School<\/b><\/br>Twin Lakes #4 School District<\/br>Elementary School","<b>Lemonweir Academy School<\/b><\/br>Mauston School District<\/br>Combined Elementary/Secondary School","<b>Lemonweir Elementary School<\/b><\/br>Tomah Area School District<\/br>Elementary School","<b>Lena Elementary School<\/b><\/br>Lena School District<\/br>Elementary School","<b>Lena High School<\/b><\/br>Lena School District<\/br>High School","<b>Lena Middle School<\/b><\/br>Lena School District<\/br>Middle School","<b>Leonardo da Vinci School for Gifted Learners School<\/b><\/br>Green Bay Area Public School District<\/br>Combined Elementary/Secondary School","<b>Leopold Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Les Paul Middle School<\/b><\/br>Waukesha School District<\/br>Middle School","<b>Levi Leonard Elementary School<\/b><\/br>Evansville Community School District<\/br>Elementary School","<b>Lewiston Elementary School<\/b><\/br>Portage Community School District<\/br>Elementary School","<b>Lien Elementary School<\/b><\/br>Amery School District<\/br>Elementary School","<b>Lighthouse Learning Academy School<\/b><\/br>Two Rivers Public School District<\/br>Combined Elementary/Secondary School","<b>Lincoln-Erdman Elementary School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Lincoln Avenue Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>Alma Center School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>Beaver Dam Unified School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>Cudahy School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>Hartford J1 School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>Janesville School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>Marshfield Unified School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>New London School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>Port Washington-Saukville School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>Watertown Unified School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>Wausau School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>Wauwatosa School District<\/br>Elementary School","<b>Lincoln Elementary School<\/b><\/br>Whitewater Unified School District<\/br>Elementary School","<b>Lincoln High School<\/b><\/br>Manitowoc School District<\/br>High School","<b>Lincoln High School<\/b><\/br>Wisconsin Rapids School District<\/br>High School","<b>Lincoln Jr/Sr High School School<\/b><\/br>Alma Center School District<\/br>High School","<b>Lincoln Middle School<\/b><\/br>Kenosha School District<\/br>Middle School","<b>Lincoln Middle School<\/b><\/br>Milwaukee School District<\/br>Middle School","<b>Lindbergh Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Lineville Intermediate School<\/b><\/br>Howard-Suamico School District<\/br>Elementary School","<b>Link2Learn Virtual Charter School School<\/b><\/br>Chetek-Weyerhaeuser Area School District<\/br>Combined Elementary/Secondary School","<b>Little Chute Career Pathways Academy School<\/b><\/br>Little Chute Area School District<\/br>High School","<b>Little Chute Elementary School<\/b><\/br>Little Chute Area School District<\/br>Elementary School","<b>Little Chute High School<\/b><\/br>Little Chute Area School District<\/br>High School","<b>Little Chute Intermediate School<\/b><\/br>Little Chute Area School District<\/br>Elementary School","<b>Little Chute Middle School<\/b><\/br>Little Chute Area School District<\/br>Middle School","<b>Little Prairie Primary School<\/b><\/br>East Troy Community School District<\/br>Elementary School","<b>Little Stars Pre-School School<\/b><\/br>Colby School District<\/br>Elementary School","<b>Little Wolf High School<\/b><\/br>Manawa School District<\/br>High School","<b>Locust Lane Elementary School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Lodi Elementary School<\/b><\/br>Lodi School District<\/br>Elementary School","<b>Lodi High School<\/b><\/br>Lodi School District<\/br>High School","<b>Lodi Middle School<\/b><\/br>Lodi School District<\/br>Middle School","<b>Lodi Primary School<\/b><\/br>Lodi School District<\/br>Elementary School","<b>Logan High School<\/b><\/br>La Crosse School District<\/br>High School","<b>Logan Middle School<\/b><\/br>La Crosse School District<\/br>Middle School","<b>Lombardi Middle School<\/b><\/br>Green Bay Area Public School District<\/br>Middle School","<b>Lomira Elementary School<\/b><\/br>Lomira School District<\/br>Elementary School","<b>Lomira High School<\/b><\/br>Lomira School District<\/br>High School","<b>Lomira Middle School<\/b><\/br>Lomira School District<\/br>Middle School","<b>Longfellow Elementary School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Longfellow Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Longfellow Elementary School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Longfellow Middle School<\/b><\/br>La Crosse School District<\/br>Middle School","<b>Longfellow Middle School<\/b><\/br>Wauwatosa School District<\/br>Middle School","<b>Lowell Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Lowell Elementary School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>Lowell International Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Loyal Elementary School<\/b><\/br>Loyal School District<\/br>Elementary School","<b>Loyal High School<\/b><\/br>Loyal School District<\/br>High School","<b>Loyal Middle School School<\/b><\/br>Loyal School District<\/br>Middle School","<b>Luck Elementary School<\/b><\/br>Luck School District<\/br>Elementary School","<b>Luck High School<\/b><\/br>Luck School District<\/br>High School","<b>Luck Middle School<\/b><\/br>Luck School District<\/br>Middle School","<b>Luther Elementary School<\/b><\/br>Fort Atkinson School District<\/br>Elementary School","<b>Luxemburg-Casco High School<\/b><\/br>Luxemburg-Casco School District<\/br>High School","<b>Luxemburg-Casco Intermediate School<\/b><\/br>Luxemburg-Casco School District<\/br>Elementary School","<b>Luxemburg-Casco Middle School<\/b><\/br>Luxemburg-Casco School District<\/br>Middle School","<b>Luxemburg-Casco Primary School<\/b><\/br>Luxemburg-Casco School District<\/br>Elementary School","<b>Lyndon Station Elementary School<\/b><\/br>Mauston School District<\/br>Elementary School","<b>Lyons Center Elementary School<\/b><\/br>Burlington Area School District<\/br>Elementary School","<b>MacArthur Elementary School<\/b><\/br>Germantown School District<\/br>Elementary School","<b>MacArthur Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>MacDowell Montessori School K3-12 School<\/b><\/br>Milwaukee School District<\/br>Combined Elementary/Secondary School","<b>Madison Elementary School<\/b><\/br>Janesville School District<\/br>Elementary School","<b>Madison Elementary School<\/b><\/br>Manitowoc School District<\/br>Elementary School","<b>Madison Elementary School<\/b><\/br>Marshfield Unified School District<\/br>Elementary School","<b>Madison Elementary School<\/b><\/br>Stevens Point Area Public School District<\/br>Elementary School","<b>Madison Elementary School<\/b><\/br>Wauwatosa School District<\/br>Elementary School","<b>Madison Middle School<\/b><\/br>Appleton Area School District<\/br>Middle School","<b>Magee Elementary School<\/b><\/br>Kettle Moraine School District<\/br>Elementary School","<b>Magee Elementary School<\/b><\/br>Two Rivers Public School District<\/br>Elementary School","<b>Mahone Middle School<\/b><\/br>Kenosha School District<\/br>Middle School","<b>Maine Elementary School<\/b><\/br>Wausau School District<\/br>Elementary School","<b>Malone Elementary School<\/b><\/br>Prescott School District<\/br>Elementary School","<b>Manawa Elementary School<\/b><\/br>Manawa School District<\/br>Elementary School","<b>Manawa Middle School<\/b><\/br>Manawa School District<\/br>Middle School","<b>Manitoba Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Manz Elementary School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Maple Avenue Elementary School<\/b><\/br>Hamilton School District<\/br>Elementary School","<b>Maple Dale School School<\/b><\/br>Maple Dale-Indian Hill School District<\/br>Elementary School","<b>Maple Grove Elementary School<\/b><\/br>Greenfield School District<\/br>Elementary School","<b>Maple Grove School School<\/b><\/br>Athens School District<\/br>Elementary School","<b>Maple Park Charter School School<\/b><\/br>Lake Geneva J1 School District<\/br>Elementary School","<b>Maple Tree Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Mapleview Intermediate School<\/b><\/br>Kimberly Area School District<\/br>Elementary School","<b>Maplewood Middle School<\/b><\/br>Menasha Joint School District<\/br>Middle School","<b>Marathon Elementary School<\/b><\/br>Marathon City School District<\/br>Elementary School","<b>Marathon High School<\/b><\/br>Marathon City School District<\/br>High School","<b>Marathon Venture Academy School<\/b><\/br>Marathon City School District<\/br>Middle School","<b>Marcy Elementary School<\/b><\/br>Hamilton School District<\/br>Elementary School","<b>Marengo Valley Elementary School<\/b><\/br>Ashland School District<\/br>Elementary School","<b>Marinette High School<\/b><\/br>Marinette School District<\/br>High School","<b>Marinette Intermediate School<\/b><\/br>Marinette School District<\/br>Elementary School","<b>Marinette Middle School<\/b><\/br>Marinette School District<\/br>Middle School","<b>Marinette Primary School<\/b><\/br>Marinette School District<\/br>Elementary School","<b>Marion Elementary School<\/b><\/br>Marion School District<\/br>Elementary School","<b>Marion High School<\/b><\/br>Marion School District<\/br>High School","<b>Markesan High School<\/b><\/br>Markesan School District<\/br>High School","<b>Markesan Intermediate School<\/b><\/br>Markesan School District<\/br>Elementary School","<b>Markesan Middle School<\/b><\/br>Markesan School District<\/br>Middle School","<b>Markesan Primary School<\/b><\/br>Markesan School District<\/br>Elementary School","<b>Marquette Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Marshall Early Learning Center School<\/b><\/br>Marshall School District<\/br>Elementary School","<b>Marshall Elementary School<\/b><\/br>Marshall School District<\/br>Elementary School","<b>Marshall High School<\/b><\/br>Marshall School District<\/br>High School","<b>Marshall High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Marshall Middle School<\/b><\/br>Janesville School District<\/br>Middle School","<b>Marshall Middle School<\/b><\/br>Marshall School District<\/br>Middle School","<b>Marshfield High School<\/b><\/br>Marshfield Unified School District<\/br>High School","<b>Marshfield K4 School<\/b><\/br>Marshfield Unified School District<\/br>Elementary School","<b>Marshfield Middle School<\/b><\/br>Marshfield Unified School District<\/br>Middle School","<b>Martin Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Maryland Montessori School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Mauston High School<\/b><\/br>Mauston School District<\/br>High School","<b>Mauston Montessori Charter School School<\/b><\/br>Mauston School District<\/br>Elementary School","<b>Mayville Elementary School<\/b><\/br>Mayville School District<\/br>Elementary School","<b>Mayville Junior-Senior High School<\/b><\/br>Mayville School District<\/br>High School","<b>McAuliffe Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>McDill Elementary School<\/b><\/br>Stevens Point Area Public School District<\/br>Elementary School","<b>McFarland High School<\/b><\/br>McFarland School District<\/br>High School","<b>McKinley Academy School<\/b><\/br>Manitowoc School District<\/br>Combined Elementary/Secondary School","<b>McKinley Center School<\/b><\/br>Stevens Point Area Public School District<\/br>Elementary School","<b>McKinley Charter School School<\/b><\/br>Eau Claire Area School District<\/br>High School","<b>McKinley Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>McKinley Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>McKinley Elementary School<\/b><\/br>Wauwatosa School District<\/br>Elementary School","<b>McLane Elementary School<\/b><\/br>West Bend School District<\/br>Elementary School","<b>Mead Elementary School<\/b><\/br>Wisconsin Rapids School District<\/br>Elementary School","<b>Meadow View Elementary School<\/b><\/br>Oconomowoc Area School District<\/br>Elementary School","<b>Meadow View Elementary School<\/b><\/br>Sun Prairie Area School District<\/br>Elementary School","<b>Meadow View Primary School<\/b><\/br>Waupun School District<\/br>Elementary School","<b>Meadowbrook Elementary School<\/b><\/br>Howard-Suamico School District<\/br>Elementary School","<b>Meadowbrook Elementary School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>Meadowview Elementary School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Meadowview Elementary School<\/b><\/br>Oak Creek-Franklin Joint School District<\/br>Elementary School","<b>Medford Elementary School<\/b><\/br>Medford Area Public School District<\/br>Elementary School","<b>Medford High School<\/b><\/br>Medford Area Public School District<\/br>High School","<b>Medford Middle School<\/b><\/br>Medford Area Public School District<\/br>Middle School","<b>Mellen Public School School<\/b><\/br>Mellen School District<\/br>Combined Elementary/Secondary School","<b>Melrose-Mindoro Elementary School<\/b><\/br>Melrose-Mindoro School District<\/br>Elementary School","<b>Melrose-Mindoro Junior/Senior High School<\/b><\/br>Melrose-Mindoro School District<\/br>High School","<b>Memorial High School<\/b><\/br>Beloit School District<\/br>High School","<b>Memorial High School<\/b><\/br>Eau Claire Area School District<\/br>High School","<b>Menasha High School<\/b><\/br>Menasha Joint School District<\/br>High School","<b>Mendota Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Menominee Indian High School<\/b><\/br>Menominee Indian School District<\/br>High School","<b>Menominee Indian Middle School<\/b><\/br>Menominee Indian School District<\/br>Middle School","<b>Menomonee Falls High School<\/b><\/br>Menomonee Falls School District<\/br>High School","<b>Menomonie High School<\/b><\/br>Menomonie Area School District<\/br>High School","<b>Menomonie Middle School<\/b><\/br>Menomonie Area School District<\/br>Middle School","<b>Mercer School School<\/b><\/br>Mercer School District<\/br>Combined Elementary/Secondary School","<b>Merrill Adult Diploma Academy School<\/b><\/br>Merrill Area School District<\/br>High School","<b>Merrill Elementary School<\/b><\/br>Beloit School District<\/br>Elementary School","<b>Merrill Elementary School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>Merrill High School<\/b><\/br>Merrill Area School District<\/br>High School","<b>Merrimac Community School<\/b><\/br>Sauk Prairie School District<\/br>Elementary School","<b>Merton Intermediate School<\/b><\/br>Merton Community School District<\/br>Elementary School","<b>Merton Primary School<\/b><\/br>Merton Community School District<\/br>Elementary School","<b>Metcalfe Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Metro School School<\/b><\/br>Madison Metropolitan School District<\/br>Combined Elementary/Secondary School","<b>Meyer Middle School<\/b><\/br>River Falls School District<\/br>Middle School","<b>Middleton-Cross Plains Area School District 4K School<\/b><\/br>Middleton-Cross Plains Area School District<\/br>Elementary School","<b>Middleton High School<\/b><\/br>Middleton-Cross Plains Area School District<\/br>High School","<b>Midvale Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Mighty River Academy of Virtual Education School<\/b><\/br>Prairie du Chien Area School District<\/br>Combined Elementary/Secondary School","<b>Milele Chikasa Anana Elementary School School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Milestone Democratic School School<\/b><\/br>Milestone Democratic School Inc School District<\/br>High School","<b>Mill Creek Academy School<\/b><\/br>Mill Creek Academy Inc School District<\/br>Elementary School","<b>Mill Valley Elementary School<\/b><\/br>Muskego-Norway School District<\/br>Elementary School","<b>Miller Elementary School<\/b><\/br>Tomah Area School District<\/br>Elementary School","<b>Milton High School<\/b><\/br>Milton School District<\/br>High School","<b>Milton Middle School<\/b><\/br>Milton School District<\/br>Middle School","<b>Milwaukee Academy of Chinese Language School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Milwaukee Academy of Science School<\/b><\/br>Milwaukee Science Education Consortium Inc School District<\/br>Combined Elementary/Secondary School","<b>Milwaukee College Preparatory School -- 36th Street Campus School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Milwaukee College Preparatory School -- 38th Street School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Milwaukee College Preparatory School -- Lloyd Street School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Milwaukee College Preparatory School: Lola Rowe North Campus School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Milwaukee County Community Reintegration Center School<\/b><\/br>Franklin Public School District<\/br>High School","<b>Milwaukee County Youth Education Center School<\/b><\/br>Milwaukee School District<\/br>Combined Elementary/Secondary School","<b>Milwaukee Environmental Science Academy School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Milwaukee Excellence Charter School School<\/b><\/br>Milwaukee School District<\/br>Combined Elementary/Secondary School","<b>Milwaukee French Immersion School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Milwaukee German Immersion School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Milwaukee High School of the Arts School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Milwaukee Math and Science Academy School<\/b><\/br>Milwaukee Math and Science Academy Inc. School District<\/br>Combined Elementary/Secondary School","<b>Milwaukee Parkside School School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Milwaukee Scholars Charter School School<\/b><\/br>Milwaukee Scholars Charter School Inc School District<\/br>Elementary School","<b>Milwaukee School of Languages School<\/b><\/br>Milwaukee School District<\/br>Combined Elementary/Secondary School","<b>Milwaukee Sign Language Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Milwaukee Spanish Immersion School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Mineral Point Elementary School<\/b><\/br>Mineral Point Unified School District<\/br>Elementary School","<b>Mineral Point High School<\/b><\/br>Mineral Point Unified School District<\/br>High School","<b>Mineral Point Middle School<\/b><\/br>Mineral Point Unified School District<\/br>Middle School","<b>Minocqua Elementary School<\/b><\/br>Minocqua J1 School District<\/br>Elementary School","<b>Mishicot High School<\/b><\/br>Mishicot School District<\/br>High School","<b>Mishicot Middle School<\/b><\/br>Mishicot School District<\/br>Middle School","<b>Mitchell Elementary School<\/b><\/br>Cudahy School District<\/br>Elementary School","<b>Mitchell Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Mitchell Elementary School<\/b><\/br>West Allis-West Milwaukee School District<\/br>Elementary School","<b>Mitchell School School<\/b><\/br>Racine Unified School District<\/br>Combined Elementary/Secondary School","<b>Mondovi Elementary School<\/b><\/br>Mondovi School District<\/br>Elementary School","<b>Mondovi High School<\/b><\/br>Mondovi School District<\/br>High School","<b>Mondovi Middle School<\/b><\/br>Mondovi School District<\/br>Middle School","<b>Monona Grove High School<\/b><\/br>Monona Grove School District<\/br>High School","<b>Monona Grove Liberal Arts Charter School for the 21st Century School<\/b><\/br>Monona Grove School District<\/br>Combined Elementary/Secondary School","<b>Monroe Elementary School<\/b><\/br>Janesville School District<\/br>Elementary School","<b>Monroe Elementary School<\/b><\/br>Manitowoc School District<\/br>Elementary School","<b>Monroe High School<\/b><\/br>Monroe School District<\/br>High School","<b>Monroe Middle School<\/b><\/br>Monroe School District<\/br>Middle School","<b>Montello Junior/Senior High School<\/b><\/br>Montello School District<\/br>High School","<b>Montello Virtual Charter School School<\/b><\/br>Montello School District<\/br>Combined Elementary/Secondary School","<b>Monticello Elementary School<\/b><\/br>Monticello School District<\/br>Elementary School","<b>Monticello High School<\/b><\/br>Monticello School District<\/br>High School","<b>Monticello Middle School<\/b><\/br>Monticello School District<\/br>Middle School","<b>Morgandale Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Morse Mid School<\/b><\/br>Milwaukee School District<\/br>Middle School","<b>Mosinee Elementary School<\/b><\/br>Mosinee School District<\/br>Elementary School","<b>Mosinee High School<\/b><\/br>Mosinee School District<\/br>High School","<b>Mosinee Middle School<\/b><\/br>Mosinee School District<\/br>Combined Elementary/Secondary School","<b>Mound View Elementary School<\/b><\/br>Elk Mound Area School District<\/br>Elementary School","<b>Mount Horeb Area Community 4K School<\/b><\/br>Mount Horeb Area School District<\/br>Elementary School","<b>Mount Horeb Early Learning Center School<\/b><\/br>Mount Horeb Area School District<\/br>Elementary School","<b>Mount Horeb High School<\/b><\/br>Mount Horeb Area School District<\/br>High School","<b>Mount Horeb Intermediate School<\/b><\/br>Mount Horeb Area School District<\/br>Elementary School","<b>Mount Horeb Middle School<\/b><\/br>Mount Horeb Area School District<\/br>Middle School","<b>Mount Horeb Primary Center School<\/b><\/br>Mount Horeb Area School District<\/br>Elementary School","<b>Mountain Bay Elementary School<\/b><\/br>D C Everest Area School District<\/br>Elementary School","<b>Muir Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Muir Elementary School<\/b><\/br>Portage Community School District<\/br>Elementary School","<b>Mukwonago High School<\/b><\/br>Mukwonago School District<\/br>High School","<b>Murray Park Elementary School<\/b><\/br>Ripon Area School District<\/br>Elementary School","<b>Muskego High School<\/b><\/br>Muskego-Norway School District<\/br>High School","<b>Muskego Lakes Middle School<\/b><\/br>Muskego-Norway School District<\/br>Middle School","<b>N-Gage Academy School<\/b><\/br>Necedah Area School District<\/br>High School","<b>N-Vision Learning Center School<\/b><\/br>Necedah Area School District<\/br>Elementary School","<b>Nash Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Nasonville Elementary School<\/b><\/br>Marshfield Unified School District<\/br>Elementary School","<b>Nathan Hale High School<\/b><\/br>West Allis-West Milwaukee School District<\/br>High School","<b>Nature Hill Intermediate School<\/b><\/br>Oconomowoc Area School District<\/br>Middle School","<b>Neal Wilkins Early Learning Center School<\/b><\/br>Platteville School District<\/br>Elementary School","<b>Necedah Elementary School<\/b><\/br>Necedah Area School District<\/br>Elementary School","<b>Necedah High School<\/b><\/br>Necedah Area School District<\/br>High School","<b>Necedah Middle School<\/b><\/br>Necedah Area School District<\/br>Middle School","<b>Neenah High School<\/b><\/br>Neenah Joint School District<\/br>High School","<b>Neenah Middle School School<\/b><\/br>Neenah Joint School District<\/br>Middle School","<b>Neeskara Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Neillsville Elementary School<\/b><\/br>Neillsville School District<\/br>Elementary School","<b>Neillsville High School<\/b><\/br>Neillsville School District<\/br>High School","<b>Neillsville Middle School<\/b><\/br>Neillsville School District<\/br>Middle School","<b>Nekoosa Academy School<\/b><\/br>Nekoosa School District<\/br>High School","<b>Nekoosa High School<\/b><\/br>Nekoosa School District<\/br>High School","<b>Nelson Elementary School<\/b><\/br>Grantsburg School District<\/br>Elementary School","<b>Netherwood Knoll Elementary School<\/b><\/br>Oregon School District<\/br>Elementary School","<b>New Auburn Elementary School<\/b><\/br>New Auburn School District<\/br>Elementary School","<b>New Auburn High School<\/b><\/br>New Auburn School District<\/br>High School","<b>New Auburn Middle School<\/b><\/br>New Auburn School District<\/br>Middle School","<b>New Berlin West Middle/High School<\/b><\/br>New Berlin School District<\/br>High School","<b>New Century School School<\/b><\/br>Verona Area School District<\/br>Elementary School","<b>New Directions Learning Community School<\/b><\/br>Kaukauna Area School District<\/br>Elementary School","<b>New Glarus Elementary School<\/b><\/br>New Glarus School District<\/br>Elementary School","<b>New Glarus High School<\/b><\/br>New Glarus School District<\/br>High School","<b>New Glarus Middle School<\/b><\/br>New Glarus School District<\/br>Middle School","<b>New Holstein Elementary School<\/b><\/br>New Holstein School District<\/br>Elementary School","<b>New Holstein High School<\/b><\/br>New Holstein School District<\/br>High School","<b>New Holstein Middle School<\/b><\/br>New Holstein School District<\/br>Middle School","<b>New Horizons for Learning School<\/b><\/br>Shorewood School District<\/br>High School","<b>New Leaf Prep Academy School<\/b><\/br>New Leaf Prep Academy Inc School District<\/br>Combined Elementary/Secondary School","<b>New Lisbon Elementary School<\/b><\/br>New Lisbon School District<\/br>Elementary School","<b>New Lisbon Junior High/High School<\/b><\/br>New Lisbon School District<\/br>High School","<b>New London High School<\/b><\/br>New London School District<\/br>High School","<b>New London Middle School<\/b><\/br>New London School District<\/br>Middle School","<b>New Richmond Early Childhood Special Education School<\/b><\/br>New Richmond School District<\/br>Elementary School","<b>New Richmond High School<\/b><\/br>New Richmond School District<\/br>High School","<b>New Richmond Hillside Elementary School<\/b><\/br>New Richmond School District<\/br>Elementary School","<b>New Richmond Middle School<\/b><\/br>New Richmond School District<\/br>Middle School","<b>New Richmond Paperjack Elementary School<\/b><\/br>New Richmond School District<\/br>Elementary School","<b>New Richmond Starr Elementary School<\/b><\/br>New Richmond School District<\/br>Elementary School","<b>New Visions Charter School School<\/b><\/br>Lake Geneva-Genoa City UHS School District<\/br>High School","<b>Next Door Charter School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Niagara Elementary School<\/b><\/br>Niagara School District<\/br>Elementary School","<b>Niagara High School<\/b><\/br>Niagara School District<\/br>High School","<b>Nicolet Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Nicolet High School<\/b><\/br>Nicolet Union High School School District<\/br>High School","<b>Nikolay Middle School<\/b><\/br>Cambridge School District<\/br>Middle School","<b>Ninety-Fifth Street Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Norris Academy School<\/b><\/br>Norris School District<\/br>Combined Elementary/Secondary School","<b>Norris Academy Virtual School School<\/b><\/br>Norris School District<\/br>Combined Elementary/Secondary School","<b>North Cape Elementary School<\/b><\/br>North Cape School District<\/br>Elementary School","<b>North Crawford Elementary School<\/b><\/br>North Crawford School District<\/br>Elementary School","<b>North Crawford High School<\/b><\/br>North Crawford School District<\/br>High School","<b>North Division High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>North Elementary School<\/b><\/br>Antigo Unified School District<\/br>Elementary School","<b>North Elementary School<\/b><\/br>Hartland-Lakeside J3 School District<\/br>Elementary School","<b>North Freedom Elementary School<\/b><\/br>Baraboo School District<\/br>Elementary School","<b>North Greenville Elementary School<\/b><\/br>Hortonville Area School District<\/br>Elementary School","<b>North High School<\/b><\/br>Appleton Area School District<\/br>High School","<b>North High School<\/b><\/br>Eau Claire Area School District<\/br>High School","<b>North High School<\/b><\/br>Oshkosh Area School District<\/br>High School","<b>North High School<\/b><\/br>Sheboygan Area School District<\/br>High School","<b>North High School<\/b><\/br>Waukesha School District<\/br>High School","<b>North Hudson Elementary School<\/b><\/br>Hudson School District<\/br>Elementary School","<b>North Lake Elementary School<\/b><\/br>North Lake School District<\/br>Elementary School","<b>North Lakeland Elementary School<\/b><\/br>North Lakeland School District<\/br>Elementary School","<b>North Middle School<\/b><\/br>Menomonee Falls School District<\/br>Middle School","<b>North Shore Middle School<\/b><\/br>Hartland-Lakeside J3 School District<\/br>Middle School","<b>North Star Academy School<\/b><\/br>Cameron School District<\/br>High School","<b>North Woods International School School<\/b><\/br>La Crosse School District<\/br>Elementary School","<b>Northeast Wisconsin Learning Academy School<\/b><\/br>Oconto Unified School District<\/br>Combined Elementary/Secondary School","<b>Northeast Wisconsin School of Innovation School<\/b><\/br>Green Bay Area Public School District<\/br>High School","<b>Northern Hills Elementary School<\/b><\/br>Onalaska School District<\/br>Elementary School","<b>Northern Lights Elementary School<\/b><\/br>Superior School District<\/br>Elementary School","<b>Northern Waters Environmental School School<\/b><\/br>Hayward Community School District<\/br>Combined Elementary/Secondary School","<b>Northland Pines Elementary-Eagle River School<\/b><\/br>Northland Pines School District<\/br>Elementary School","<b>Northland Pines Elementary-Land O' Lakes School<\/b><\/br>Northland Pines School District<\/br>Elementary School","<b>Northland Pines Elementary-St Germain School<\/b><\/br>Northland Pines School District<\/br>Elementary School","<b>Northland Pines High School<\/b><\/br>Northland Pines School District<\/br>High School","<b>Northland Pines Middle School<\/b><\/br>Northland Pines School District<\/br>Middle School","<b>Northland Pines Montessori Learning Center (NPMLC) School<\/b><\/br>Northland Pines School District<\/br>Elementary School","<b>Northside Elementary School<\/b><\/br>La Crosse School District<\/br>Elementary School","<b>Northside Elementary School<\/b><\/br>Middleton-Cross Plains Area School District<\/br>Elementary School","<b>Northside Elementary School<\/b><\/br>Monroe School District<\/br>Elementary School","<b>Northside Elementary School<\/b><\/br>Sun Prairie Area School District<\/br>Elementary School","<b>Northside Intermediate School<\/b><\/br>Milton School District<\/br>Elementary School","<b>NorthStar Community Charter School School<\/b><\/br>Northwood School District<\/br>Combined Elementary/Secondary School","<b>Northstar Middle School<\/b><\/br>Eau Claire Area School District<\/br>Middle School","<b>Northview Elementary School<\/b><\/br>Howards Grove School District<\/br>Elementary School","<b>Northwestern Elementary School<\/b><\/br>Maple School District<\/br>Elementary School","<b>Northwestern High School<\/b><\/br>Maple School District<\/br>High School","<b>Northwestern Middle School<\/b><\/br>Maple School District<\/br>Middle School","<b>Northwood Elementary School<\/b><\/br>Northwood School District<\/br>Elementary School","<b>Northwood High/Middle School<\/b><\/br>Northwood School District<\/br>High School","<b>Northwood Virtual Charter School School<\/b><\/br>Northwood School District<\/br>Combined Elementary/Secondary School","<b>Northwoods Community Elementary School<\/b><\/br>Rhinelander School District<\/br>Elementary School","<b>Northwoods Elementary School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Norwalk-Ontario-Wilton Elementary School<\/b><\/br>Norwalk-Ontario-Wilton School District<\/br>Elementary School","<b>NOVA-Northwest Opportunities Vocational Academy School<\/b><\/br>Milwaukee School District<\/br>High School","<b>NR4Kids School<\/b><\/br>New Richmond School District<\/br>Elementary School","<b>Nuestro Mundo School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>O'Keeffe Middle School<\/b><\/br>Madison Metropolitan School District<\/br>Middle School","<b>O Brown Elementary School<\/b><\/br>Racine Unified School District<\/br>Elementary School","<b>Oak Creek East Middle School<\/b><\/br>Oak Creek-Franklin Joint School District<\/br>Middle School","<b>Oak Creek High School<\/b><\/br>Oak Creek-Franklin Joint School District<\/br>High School","<b>Oak Creek West Middle School<\/b><\/br>Oak Creek-Franklin Joint School District<\/br>Middle School","<b>Oakdale Elementary School<\/b><\/br>Tomah Area School District<\/br>Elementary School","<b>Oakfield Elementary School<\/b><\/br>Oakfield School District<\/br>Elementary School","<b>Oakfield High School<\/b><\/br>Oakfield School District<\/br>High School","<b>Oakfield Middle School<\/b><\/br>Oakfield School District<\/br>Middle School","<b>Oaklawn Elementary School<\/b><\/br>Menomonie Area School District<\/br>Elementary School","<b>Oaklawn Elementary School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>Oakwood Elementary School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>Obama School of Career and Technical Education School<\/b><\/br>Milwaukee School District<\/br>Combined Elementary/Secondary School","<b>Oconomowoc High School<\/b><\/br>Oconomowoc Area School District<\/br>High School","<b>Oconto Elementary School<\/b><\/br>Oconto Unified School District<\/br>Elementary School","<b>Oconto Falls Elementary School<\/b><\/br>Oconto Falls Public School District<\/br>Elementary School","<b>Oconto Falls High School<\/b><\/br>Oconto Falls Public School District<\/br>High School","<b>Oconto High School<\/b><\/br>Oconto Unified School District<\/br>High School","<b>Oconto Middle School<\/b><\/br>Oconto Unified School District<\/br>Middle School","<b>Odyssey-Magellan School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Odyssey Academy of Virtual Learning School<\/b><\/br>Ripon Area School District<\/br>Combined Elementary/Secondary School","<b>Odyssey Elementary School<\/b><\/br>D C Everest Area School District<\/br>Elementary School","<b>Olson Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Olson Middle School<\/b><\/br>Mauston School District<\/br>Middle School","<b>Omro Elementary School<\/b><\/br>Omro School District<\/br>Elementary School","<b>Omro High School<\/b><\/br>Omro School District<\/br>High School","<b>Omro Middle School<\/b><\/br>Omro School District<\/br>Middle School","<b>Onalaska High School<\/b><\/br>Onalaska School District<\/br>High School","<b>Onalaska Middle School<\/b><\/br>Onalaska School District<\/br>Middle School","<b>Onalaska Prekindergarten Partner School School<\/b><\/br>Onalaska School District<\/br>Elementary School","<b>One City Elementary School School<\/b><\/br>One City Schools Inc School District<\/br>Elementary School","<b>One City Preparatory Academy School<\/b><\/br>One City Schools Inc School District<\/br>High School","<b>Oostburg Elementary School<\/b><\/br>Oostburg School District<\/br>Elementary School","<b>Oostburg High School<\/b><\/br>Oostburg School District<\/br>High School","<b>Oostburg Middle School<\/b><\/br>Oostburg School District<\/br>Middle School","<b>Orchard Lane Elementary School<\/b><\/br>New Berlin School District<\/br>Elementary School","<b>Orchard Ridge Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Oregon 4K School<\/b><\/br>Oregon School District<\/br>Elementary School","<b>Oregon High School<\/b><\/br>Oregon School District<\/br>High School","<b>Oregon Middle School<\/b><\/br>Oregon School District<\/br>Middle School","<b>Oriole Lane Elementary School<\/b><\/br>Mequon-Thiensville School District<\/br>Elementary School","<b>Osceola Elementary School<\/b><\/br>Osceola School District<\/br>Elementary School","<b>Osceola High School<\/b><\/br>Osceola School District<\/br>High School","<b>Osceola Intermediate School<\/b><\/br>Osceola School District<\/br>Elementary School","<b>Osceola Middle School<\/b><\/br>Osceola School District<\/br>Middle School","<b>Osseo-Fairchild Elementary School<\/b><\/br>Osseo-Fairchild School District<\/br>Elementary School","<b>Osseo-Fairchild High School<\/b><\/br>Osseo-Fairchild School District<\/br>High School","<b>Osseo-Fairchild Middle School<\/b><\/br>Osseo-Fairchild School District<\/br>Middle School","<b>Ouisconsing School of Collaboration School<\/b><\/br>Lodi School District<\/br>Elementary School","<b>Owen-Withee Elementary School<\/b><\/br>Owen-Withee School District<\/br>Elementary School","<b>Owen-Withee High School<\/b><\/br>Owen-Withee School District<\/br>High School","<b>Owen-Withee Junior High School<\/b><\/br>Owen-Withee School District<\/br>Middle School","<b>Oxford Avenue School School<\/b><\/br>Eau Claire Area School District<\/br>High School","<b>Oxford Elementary School<\/b><\/br>Westfield School District<\/br>Elementary School","<b>Ozaukee Elementary School<\/b><\/br>Northern Ozaukee School District<\/br>Elementary School","<b>Ozaukee High School<\/b><\/br>Northern Ozaukee School District<\/br>High School","<b>Ozaukee Middle School<\/b><\/br>Northern Ozaukee School District<\/br>Middle School","<b>P J Jacobs Junior High School<\/b><\/br>Stevens Point Area Public School District<\/br>Junior High School","<b>Palmyra-Eagle High School<\/b><\/br>Palmyra-Eagle Area School District<\/br>High School","<b>Palmyra-Eagle Middle School<\/b><\/br>Palmyra-Eagle Area School District<\/br>Middle School","<b>Palmyra Eagle Montessori School School<\/b><\/br>Palmyra-Eagle Area School District<\/br>Elementary School","<b>Pardeeville Elementary School<\/b><\/br>Pardeeville Area School District<\/br>Elementary School","<b>Pardeeville High School<\/b><\/br>Pardeeville Area School District<\/br>High School","<b>Pardeeville Middle School<\/b><\/br>Pardeeville Area School District<\/br>Middle School","<b>Paris Elementary School<\/b><\/br>Paris J1 School District<\/br>Elementary School","<b>Park Community Charter School School<\/b><\/br>Kaukauna Area School District<\/br>Elementary School","<b>Park Elementary School<\/b><\/br>Middleton-Cross Plains Area School District<\/br>Elementary School","<b>Park Falls Elementary School<\/b><\/br>Chequamegon School District<\/br>Elementary School","<b>Park High School<\/b><\/br>Racine Unified School District<\/br>High School","<b>Park Lawn Elementary School<\/b><\/br>Oconomowoc Area School District<\/br>Elementary School","<b>Park View Middle School<\/b><\/br>Mukwonago School District<\/br>Middle School","<b>Parker High School<\/b><\/br>Janesville School District<\/br>High School","<b>Parkside Elementary School<\/b><\/br>Fond du Lac School District<\/br>Elementary School","<b>Parkside Elementary School<\/b><\/br>Monroe School District<\/br>Elementary School","<b>Parkside School School<\/b><\/br>Wautoma Area School District<\/br>Combined Elementary/Secondary School","<b>Parkview Academy of Virtual Education School<\/b><\/br>Parkview School District<\/br>Combined Elementary/Secondary School","<b>Parkview Early Learning Center School<\/b><\/br>Mayville School District<\/br>Elementary School","<b>Parkview Elementary School<\/b><\/br>Cedarburg School District<\/br>Elementary School","<b>Parkview Elementary School<\/b><\/br>Chippewa Falls Area Unified School District<\/br>Elementary School","<b>Parkview Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Parkview Elementary School<\/b><\/br>New London School District<\/br>Elementary School","<b>Parkview Elementary School<\/b><\/br>Parkview School District<\/br>Elementary School","<b>Parkview Elementary School<\/b><\/br>Plymouth Joint School District<\/br>Elementary School","<b>Parkview High School<\/b><\/br>Parkview School District<\/br>High School","<b>Parkview Junior High School<\/b><\/br>Parkview School District<\/br>Middle School","<b>Parkview Middle School<\/b><\/br>Ashwaubenon School District<\/br>Middle School","<b>Parkway Elementary School<\/b><\/br>Glendale-River Hills School District<\/br>Elementary School","<b>PARTNER Charter School School<\/b><\/br>Richland School District<\/br>High School","<b>Patch Elementary School<\/b><\/br>Omro School District<\/br>Elementary School","<b>Pathways High School<\/b><\/br>Pathways High Inc School District<\/br>High School","<b>Patrick Marsh Middle School<\/b><\/br>Sun Prairie Area School District<\/br>Middle School","<b>Pecatonica Elementary School<\/b><\/br>Pecatonica Area School District<\/br>Elementary School","<b>Pecatonica High School<\/b><\/br>Pecatonica Area School District<\/br>High School","<b>Pelican Elementary School<\/b><\/br>Rhinelander School District<\/br>Elementary School","<b>Pembine Elementary School<\/b><\/br>Beecher-Dunbar-Pembine School District<\/br>Elementary School","<b>Pembine High School<\/b><\/br>Beecher-Dunbar-Pembine School District<\/br>High School","<b>Pepin Elementary School<\/b><\/br>Pepin Area School District<\/br>Elementary School","<b>Pepin High School<\/b><\/br>Pepin Area School District<\/br>High School","<b>Pershing Elementary School<\/b><\/br>West Allis-West Milwaukee School District<\/br>Elementary School","<b>Pertzsch Elementary School<\/b><\/br>Onalaska School District<\/br>Elementary School","<b>Peshtigo Elementary School<\/b><\/br>Peshtigo School District<\/br>Elementary School","<b>Peshtigo High School<\/b><\/br>Peshtigo School District<\/br>High School","<b>Peshtigo Middle School<\/b><\/br>Peshtigo School District<\/br>Middle School","<b>Pewaukee High School<\/b><\/br>Pewaukee School District<\/br>High School","<b>Pewaukee Lake Elementary School<\/b><\/br>Pewaukee School District<\/br>Elementary School","<b>Phantom Knight School of Opportunity School<\/b><\/br>West De Pere School District<\/br>High School","<b>Phelps Elementary School<\/b><\/br>Phelps School District<\/br>Elementary School","<b>Phelps High School<\/b><\/br>Phelps School District<\/br>High School","<b>Phillips Elementary School<\/b><\/br>Phillips School District<\/br>Elementary School","<b>Phillips High School<\/b><\/br>Phillips School District<\/br>High School","<b>Phillips Middle School<\/b><\/br>Phillips School District<\/br>Middle School","<b>Phoenix Middle School<\/b><\/br>Delavan-Darien School District<\/br>Middle School","<b>Phoenix Project School<\/b><\/br>Kenosha School District<\/br>Combined Elementary/Secondary School","<b>Pier Elementary School<\/b><\/br>Fond du Lac School District<\/br>Elementary School","<b>Pigeon River Elementary School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Pilgrim Park Middle School<\/b><\/br>Elmbrook School District<\/br>Middle School","<b>Pine River School for Young Learners (PRSYL) School<\/b><\/br>Merrill Area School District<\/br>Elementary School","<b>Pineview Elementary School<\/b><\/br>Reedsburg School District<\/br>Elementary School","<b>Pioneer Elementary School<\/b><\/br>Ashwaubenon School District<\/br>Elementary School","<b>Pitsch Early Learning Center School<\/b><\/br>Wisconsin Rapids School District<\/br>Elementary School","<b>Pittsville Elementary School<\/b><\/br>Pittsville School District<\/br>Elementary School","<b>Pittsville High School<\/b><\/br>Pittsville School District<\/br>High School","<b>Platteville High School<\/b><\/br>Platteville School District<\/br>High School","<b>Platteville Middle School<\/b><\/br>Platteville School District<\/br>Middle School","<b>Pleasant Prairie Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Pleasant View Elementary School<\/b><\/br>Franklin Public School District<\/br>Elementary School","<b>Plover-Whiting Elementary School<\/b><\/br>Stevens Point Area Public School District<\/br>Elementary School","<b>Plum City Elementary School<\/b><\/br>Plum City School District<\/br>Elementary School","<b>Plum City High School<\/b><\/br>Plum City School District<\/br>High School","<b>Plymouth High School<\/b><\/br>Plymouth Joint School District<\/br>High School","<b>Point 4 the Future School<\/b><\/br>Stevens Point Area Public School District<\/br>Elementary School","<b>Point of Discovery School School<\/b><\/br>Stevens Point Area Public School District<\/br>Combined Elementary/Secondary School","<b>Pope Farm Elementary School<\/b><\/br>Middleton-Cross Plains Area School District<\/br>Elementary School","<b>Poplar Creek Elementary School<\/b><\/br>New Berlin School District<\/br>Elementary School","<b>Port Edwards Ed Heuer Elementary School School<\/b><\/br>Port Edwards School District<\/br>Elementary School","<b>Port Washington High School<\/b><\/br>Port Washington-Saukville School District<\/br>High School","<b>Portage Academy of Achievement School<\/b><\/br>Portage Community School District<\/br>High School","<b>Portage High School<\/b><\/br>Portage Community School District<\/br>High School","<b>Portage Partnering Preschool School<\/b><\/br>Portage Community School District<\/br>Elementary School","<b>Potosi Elementary School<\/b><\/br>Potosi School District<\/br>Elementary School","<b>Potosi High School<\/b><\/br>Potosi School District<\/br>High School","<b>Potosi Middle School<\/b><\/br>Potosi School District<\/br>Middle School","<b>Powers Elementary School<\/b><\/br>Beloit Turner School District<\/br>Elementary School","<b>Poynette Elementary School<\/b><\/br>Poynette School District<\/br>Elementary School","<b>Poynette High School<\/b><\/br>Poynette School District<\/br>High School","<b>Poynette Middle School<\/b><\/br>Poynette School District<\/br>Middle School","<b>Prairie du Chien High School<\/b><\/br>Prairie du Chien Area School District<\/br>High School","<b>Prairie Elementary School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>Prairie Farm Elementary School<\/b><\/br>Prairie Farm Public School District<\/br>Elementary School","<b>Prairie Farm High School<\/b><\/br>Prairie Farm Public School District<\/br>High School","<b>Prairie Farm Middle School<\/b><\/br>Prairie Farm Public School District<\/br>Middle School","<b>Prairie Lane Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Prairie Phoenix Academy School<\/b><\/br>Sun Prairie Area School District<\/br>High School","<b>Prairie Ridge Early Learning School School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Prairie Ridge Intermediate School<\/b><\/br>Reedsburg School District<\/br>Elementary School","<b>Prairie River Middle School<\/b><\/br>Merrill Area School District<\/br>Middle School","<b>Prairie View Elementary School<\/b><\/br>Beaver Dam Unified School District<\/br>Elementary School","<b>Prairie View Elementary School<\/b><\/br>De Soto Area School District<\/br>Elementary School","<b>Prairie View Elementary School<\/b><\/br>East Troy Community School District<\/br>Elementary School","<b>Prairie View Elementary School<\/b><\/br>Holmen School District<\/br>Elementary School","<b>Prairie View Elementary School<\/b><\/br>Mukwonago School District<\/br>Elementary School","<b>Prairie View Elementary School<\/b><\/br>Oregon School District<\/br>Elementary School","<b>Prairie View Middle School<\/b><\/br>Sun Prairie Area School District<\/br>Middle School","<b>Pratt Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Preble High School<\/b><\/br>Green Bay Area Public School District<\/br>High School","<b>Prentice Elementary School<\/b><\/br>Prentice School District<\/br>Elementary School","<b>Prentice High School<\/b><\/br>Prentice School District<\/br>High School","<b>Prentice Middle School<\/b><\/br>Prentice School District<\/br>Middle School","<b>Preschool 4 Janesville School<\/b><\/br>Janesville School District<\/br>Elementary School","<b>Preschool Options School<\/b><\/br>Stevens Point Area Public School District<\/br>Elementary School","<b>Prescott 4K School<\/b><\/br>Prescott School District<\/br>Elementary School","<b>Prescott High School<\/b><\/br>Prescott School District<\/br>High School","<b>Prescott Middle School<\/b><\/br>Prescott School District<\/br>Middle School","<b>Princeton School School<\/b><\/br>Princeton School District<\/br>Combined Elementary/Secondary School","<b>Project STAY-Supporting Teachers and Youth School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Promethean Charter School School<\/b><\/br>Butternut School District<\/br>High School","<b>Pulaski Community Middle School<\/b><\/br>Pulaski Community School District<\/br>Middle School","<b>Pulaski High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Pulaski High School<\/b><\/br>Pulaski Community School District<\/br>High School","<b>Purdy Elementary School<\/b><\/br>Fort Atkinson School District<\/br>Elementary School","<b>Putnam Heights Elementary School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Quest Charter School School<\/b><\/br>Ripon Area School District<\/br>Elementary School","<b>Quinney Elementary School<\/b><\/br>Kaukauna Area School District<\/br>Elementary School","<b>Racine Alternative Learning School<\/b><\/br>Racine Unified School District<\/br>Combined Elementary/Secondary School","<b>Racine County Detention Center School<\/b><\/br>Racine Unified School District<\/br>Combined Elementary/Secondary School","<b>Racine County Jail School<\/b><\/br>Racine Unified School District<\/br>Combined Elementary/Secondary School","<b>Randall Consolidated School School<\/b><\/br>Randall J1 School District<\/br>Elementary School","<b>Randall Elementary School School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Randolph Elementary School<\/b><\/br>Randolph School District<\/br>Elementary School","<b>Randolph High School<\/b><\/br>Randolph School District<\/br>High School","<b>Randolph Middle School School<\/b><\/br>Randolph School District<\/br>Middle School","<b>Random Lake Elementary School<\/b><\/br>Random Lake School District<\/br>Elementary School","<b>Random Lake High School<\/b><\/br>Random Lake School District<\/br>High School","<b>Random Lake Middle School<\/b><\/br>Random Lake School District<\/br>Middle School","<b>Rawson Elementary School<\/b><\/br>South Milwaukee School District<\/br>Elementary School","<b>Raymond Elementary School<\/b><\/br>Raymond #14 School District<\/br>Elementary School","<b>Read Elementary School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>Readfield Elementary School<\/b><\/br>New London School District<\/br>Elementary School","<b>Ready 4 Learning School School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>Reagan College Preparatory High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Red Apple Elementary School<\/b><\/br>Racine Unified School District<\/br>Elementary School","<b>Red Creek Elementary School<\/b><\/br>Black River Falls School District<\/br>Elementary School","<b>Red Smith K-8 School<\/b><\/br>Green Bay Area Public School District<\/br>Combined Elementary/Secondary School","<b>Redgranite Elementary School<\/b><\/br>Wautoma Area School District<\/br>Elementary School","<b>Reedsburg Area High School<\/b><\/br>Reedsburg School District<\/br>High School","<b>Reedsville Elementary School<\/b><\/br>Reedsville School District<\/br>Elementary School","<b>Reedsville Jr/Sr High School School<\/b><\/br>Reedsville School District<\/br>High School","<b>Reek Elementary School<\/b><\/br>Linn J6 School District<\/br>Elementary School","<b>Renaissance Charter Academy School<\/b><\/br>River Falls School District<\/br>High School","<b>Renaissance School School<\/b><\/br>Appleton Area School District<\/br>High School","<b>Reuther Central High School<\/b><\/br>Kenosha School District<\/br>High School","<b>Rhinelander High School<\/b><\/br>Rhinelander School District<\/br>High School","<b>Rib Lake Elementary School<\/b><\/br>Rib Lake School District<\/br>Elementary School","<b>Rib Lake High School<\/b><\/br>Rib Lake School District<\/br>High School","<b>Rib Lake Middle School<\/b><\/br>Rib Lake School District<\/br>Middle School","<b>Rib Mountain Elementary School<\/b><\/br>Wausau School District<\/br>Elementary School","<b>Rice Lake High School<\/b><\/br>Rice Lake Area School District<\/br>High School","<b>Rice Lake Middle School<\/b><\/br>Rice Lake Area School District<\/br>Middle School","<b>Richards Elementary School<\/b><\/br>Whitefish Bay School District<\/br>Elementary School","<b>Richfield Middle School<\/b><\/br>Holy Hill Area School District<\/br>Middle School","<b>Richland Center High School<\/b><\/br>Richland School District<\/br>High School","<b>Richland Center Intermediate School School<\/b><\/br>Richland School District<\/br>Elementary School","<b>Richland Center Primary School School<\/b><\/br>Richland School District<\/br>Elementary School","<b>Richland Community 4K School<\/b><\/br>Richland School District<\/br>Elementary School","<b>Richland Online Academy School<\/b><\/br>Richland School District<\/br>Combined Elementary/Secondary School","<b>Richmond Elementary School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Richmond Elementary School<\/b><\/br>Richmond School District<\/br>Combined Elementary/Secondary School","<b>Ridgeland-Dallas Elementary School<\/b><\/br>Barron Area School District<\/br>Elementary School","<b>Riley Dual Language Montessori School School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Rio Elementary School<\/b><\/br>Rio Community School District<\/br>Elementary School","<b>Rio Middle/High School<\/b><\/br>Rio Community School District<\/br>High School","<b>Ripon High School<\/b><\/br>Ripon Area School District<\/br>High School","<b>Ripon Middle School<\/b><\/br>Ripon Area School District<\/br>Middle School","<b>River Bluff Middle School<\/b><\/br>Stoughton Area School District<\/br>Middle School","<b>River Cities High School<\/b><\/br>Wisconsin Rapids School District<\/br>High School","<b>River Crest Elementary School<\/b><\/br>Hudson School District<\/br>Elementary School","<b>River Falls 4 Children School<\/b><\/br>River Falls School District<\/br>Elementary School","<b>River Falls eSchool School<\/b><\/br>River Falls School District<\/br>Combined Elementary/Secondary School","<b>River Falls High School<\/b><\/br>River Falls School District<\/br>High School","<b>River Falls Public Montessori Academy School<\/b><\/br>River Falls School District<\/br>Elementary School","<b>River Heights Elementary School<\/b><\/br>Menomonie Area School District<\/br>Elementary School","<b>River Ridge Elementary School<\/b><\/br>River Ridge School District<\/br>Elementary School","<b>River Ridge High School<\/b><\/br>River Ridge School District<\/br>High School","<b>River Ridge Middle School<\/b><\/br>River Ridge School District<\/br>Middle School","<b>River Trail School of Agricultural Science School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>River Valley Early Learning Center School<\/b><\/br>River Valley School District<\/br>Elementary School","<b>River Valley Elementary School<\/b><\/br>River Valley School District<\/br>Elementary School","<b>River Valley High School<\/b><\/br>River Valley School District<\/br>High School","<b>River Valley Middle School<\/b><\/br>River Valley School District<\/br>Middle School","<b>River View School School<\/b><\/br>Kaukauna Area School District<\/br>Middle School","<b>Riverdale Academy School<\/b><\/br>Riverdale School District<\/br>High School","<b>Riverdale Elementary School<\/b><\/br>Riverdale School District<\/br>Elementary School","<b>Riverdale High School<\/b><\/br>Riverdale School District<\/br>High School","<b>Riverdale Junior High School<\/b><\/br>Riverdale School District<\/br>Junior High School","<b>Riverside Elementary School<\/b><\/br>D C Everest Area School District<\/br>Elementary School","<b>Riverside Elementary School<\/b><\/br>Fond du Lac School District<\/br>Elementary School","<b>Riverside Elementary School<\/b><\/br>Menomonee Falls School District<\/br>Elementary School","<b>Riverside High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Riverside Middle School<\/b><\/br>Watertown Unified School District<\/br>Middle School","<b>Riverview Early Learning Center School<\/b><\/br>Manitowoc School District<\/br>Elementary School","<b>Riverview Elementary School<\/b><\/br>Manitowoc School District<\/br>Elementary School","<b>Riverview Elementary School<\/b><\/br>Silver Lake J1 School District<\/br>Elementary School","<b>Riverview Elementary School<\/b><\/br>Wausau School District<\/br>Elementary School","<b>Riverview Elementary School<\/b><\/br>Wautoma Area School District<\/br>Elementary School","<b>Riverview Middle School<\/b><\/br>Barron Area School District<\/br>Middle School","<b>Riverview Middle School<\/b><\/br>Plymouth Joint School District<\/br>Middle School","<b>Riverview School School<\/b><\/br>Waukesha School District<\/br>Combined Elementary/Secondary School","<b>Riverwest Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Robbins Elementary School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Robert Kupper Learning Center School<\/b><\/br>Tomah Area School District<\/br>Combined Elementary/Secondary School","<b>Roberts Elementary School<\/b><\/br>Fond du Lac School District<\/br>Elementary School","<b>Robinson Elementary School<\/b><\/br>Beloit School District<\/br>Elementary School","<b>Robinson Elementary School<\/b><\/br>Laona School District<\/br>Elementary School","<b>Robinwood Elementary School<\/b><\/br>Franklin Public School District<\/br>Elementary School","<b>Rock Elementary School<\/b><\/br>Hudson School District<\/br>Elementary School","<b>Rock Ledge Elementary School<\/b><\/br>Seymour Community School District<\/br>Elementary School","<b>Rock River Charter School School<\/b><\/br>Janesville School District<\/br>High School","<b>Rock River Intermediate School<\/b><\/br>Waupun School District<\/br>Elementary School","<b>Rock University High School<\/b><\/br>Janesville School District<\/br>High School","<b>Rocket Academy School<\/b><\/br>Cedar Grove-Belgium Area School District<\/br>High School","<b>Rocketship Southside Community Prep School<\/b><\/br>Rocketship Education Wisconsin Inc School District<\/br>Elementary School","<b>Rocketship Transformation Prep School<\/b><\/br>Rocketship Education Wisconsin Inc School District<\/br>Elementary School","<b>Rockfield Elementary School<\/b><\/br>Germantown School District<\/br>Elementary School","<b>Rockwell Elementary School<\/b><\/br>Fort Atkinson School District<\/br>Elementary School","<b>Rocky Branch Elementary School<\/b><\/br>River Falls School District<\/br>Elementary School","<b>Rogers Street Academy School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Rolf's Early Childhood Center School<\/b><\/br>West Bend School District<\/br>Elementary School","<b>Rolling Hills Elementary School<\/b><\/br>Mukwonago School District<\/br>Elementary School","<b>Rome Corners Intermediate School<\/b><\/br>Oregon School District<\/br>Elementary School","<b>Ronald C Dunlap Elementary School School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Ronald R Albrecht Elementary School<\/b><\/br>Brodhead School District<\/br>Elementary School","<b>Ronald Reagan Elementary School<\/b><\/br>New Berlin School District<\/br>Elementary School","<b>Roosevelt Elementary School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Roosevelt Elementary School<\/b><\/br>Janesville School District<\/br>Elementary School","<b>Roosevelt Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Roosevelt Elementary School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>Roosevelt Elementary School<\/b><\/br>Racine Unified School District<\/br>Elementary School","<b>Roosevelt Elementary School<\/b><\/br>Stevens Point Area Public School District<\/br>Elementary School","<b>Roosevelt Elementary School<\/b><\/br>Wauwatosa School District<\/br>Elementary School","<b>Roosevelt Middle School<\/b><\/br>Milwaukee School District<\/br>Middle School","<b>Rose Glen Elementary School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>Rosendale-Brandon Middle School<\/b><\/br>Rosendale-Brandon School District<\/br>Middle School","<b>Rosendale Intermediate School<\/b><\/br>Rosendale-Brandon School District<\/br>Elementary School","<b>Rosendale Primary School<\/b><\/br>Rosendale-Brandon School District<\/br>Elementary School","<b>Rosenow Elementary School<\/b><\/br>Fond du Lac School District<\/br>Elementary School","<b>Rosholt Elementary School<\/b><\/br>Rosholt School District<\/br>Elementary School","<b>Rosholt High School<\/b><\/br>Rosholt School District<\/br>High School","<b>Rosholt Middle School<\/b><\/br>Rosholt School District<\/br>Middle School","<b>Rossman Elementary School<\/b><\/br>Hartford J1 School District<\/br>Elementary School","<b>Rothschild Elementary School<\/b><\/br>D C Everest Area School District<\/br>Elementary School","<b>Royal Oaks Elementary School<\/b><\/br>Sun Prairie Area School District<\/br>Elementary School","<b>Royall Elementary School<\/b><\/br>Royall School District<\/br>Elementary School","<b>Royall High School<\/b><\/br>Royall School District<\/br>High School","<b>Royall Intermediate School<\/b><\/br>Royall School District<\/br>Elementary School","<b>Rural Virtual Academy School<\/b><\/br>Bowler School District<\/br>Combined Elementary/Secondary School","<b>Rural Virtual Academy School<\/b><\/br>Medford Area Public School District<\/br>Combined Elementary/Secondary School","<b>Rural Virtual Academy School<\/b><\/br>Phillips School District<\/br>Combined Elementary/Secondary School","<b>RUSD Montessori School<\/b><\/br>Racine Unified School District<\/br>Combined Elementary/Secondary School","<b>Sabish Middle School<\/b><\/br>Fond du Lac School District<\/br>Middle School","<b>Saint Croix Central Elementary School<\/b><\/br>Saint Croix Central School District<\/br>Elementary School","<b>Saint Croix Central High School<\/b><\/br>Saint Croix Central School District<\/br>High School","<b>Saint Croix Central Middle School<\/b><\/br>Saint Croix Central School District<\/br>Middle School","<b>Saint Croix Falls Elementary School<\/b><\/br>Saint Croix Falls School District<\/br>Elementary School","<b>Saint Croix Falls High School<\/b><\/br>Saint Croix Falls School District<\/br>High School","<b>Saint Croix Falls Middle School<\/b><\/br>Saint Croix Falls School District<\/br>Middle School","<b>Saint Croix Virtual Academy Inc School<\/b><\/br>Saint Croix Central School District<\/br>Combined Elementary/Secondary School","<b>Saint Francis High School<\/b><\/br>Saint Francis School District<\/br>High School","<b>Salem Elementary School<\/b><\/br>Salem School District<\/br>Elementary School","<b>Sand Lake Elementary School<\/b><\/br>Holmen School District<\/br>Elementary School","<b>Sandburg Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Sandhill Elementary School<\/b><\/br>Stoughton Area School District<\/br>Elementary School","<b>SASD 4K School<\/b><\/br>Stoughton Area School District<\/br>Elementary School","<b>Sauk Prairie High School<\/b><\/br>Sauk Prairie School District<\/br>High School","<b>Sauk Prairie Middle School<\/b><\/br>Sauk Prairie School District<\/br>Middle School","<b>Sauk Trail Elementary School<\/b><\/br>Middleton-Cross Plains Area School District<\/br>Elementary School","<b>Saukville Elementary School<\/b><\/br>Port Washington-Saukville School District<\/br>Elementary School","<b>Savanna Oaks Middle School<\/b><\/br>Verona Area School District<\/br>Middle School","<b>Sawyer Elementary School<\/b><\/br>Sturgeon Bay School District<\/br>Elementary School","<b>Schenk Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>School District of the Menomonie Area 4K School<\/b><\/br>Menomonie Area School District<\/br>Elementary School","<b>School for Agricultural and Environmental Studies School<\/b><\/br>Waupun School District<\/br>Elementary School","<b>School for Arts and Performance School<\/b><\/br>Kettle Moraine School District<\/br>High School","<b>School of Options and Applied Research High School<\/b><\/br>Northland Pines School District<\/br>High School","<b>School of Options and Applied Research Middle School<\/b><\/br>Northland Pines School District<\/br>Middle School","<b>School of Technology and Arts I School<\/b><\/br>La Crosse School District<\/br>Elementary School","<b>School of Technology and Arts II School<\/b><\/br>La Crosse School District<\/br>Middle School","<b>Schulte School School<\/b><\/br>Racine Unified School District<\/br>Combined Elementary/Secondary School","<b>Schultz Elementary School<\/b><\/br>Mishicot School District<\/br>Elementary School","<b>Schurz Elementary School<\/b><\/br>Watertown Unified School District<\/br>Elementary School","<b>Second Avenue School School<\/b><\/br>Eau Claire Area School District<\/br>Combined Elementary/Secondary School","<b>Section Elementary School<\/b><\/br>Mukwonago School District<\/br>Elementary School","<b>Seeds of Health Elementary Program School<\/b><\/br>Seeds of Health Inc School District<\/br>Elementary School","<b>Seneca Elementary School<\/b><\/br>Seneca Area School District<\/br>Elementary School","<b>Seneca High School<\/b><\/br>Seneca Area School District<\/br>High School","<b>Seneca Junior High School<\/b><\/br>Seneca Area School District<\/br>Middle School","<b>Sennett Middle School<\/b><\/br>Madison Metropolitan School District<\/br>Middle School","<b>Sevastopol Elementary School<\/b><\/br>Sevastopol School District<\/br>Elementary School","<b>Sevastopol High School<\/b><\/br>Sevastopol School District<\/br>High School","<b>Sevastopol Middle School<\/b><\/br>Sevastopol School District<\/br>Middle School","<b>Sevastopol Pre-School School<\/b><\/br>Sevastopol School District<\/br>Elementary School","<b>Seymour High School<\/b><\/br>Seymour Community School District<\/br>High School","<b>Seymour Middle School<\/b><\/br>Seymour Community School District<\/br>Middle School","<b>Shabazz-City High School<\/b><\/br>Madison Metropolitan School District<\/br>High School","<b>Shady Lane Elementary School<\/b><\/br>Menomonee Falls School District<\/br>Elementary School","<b>Shalom High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Shapiro STEM Academy School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>Shared Journeys School<\/b><\/br>West Allis-West Milwaukee School District<\/br>High School","<b>Sharon Community School<\/b><\/br>Sharon J11 School District<\/br>Elementary School","<b>Shawano Community Middle School<\/b><\/br>Shawano School District<\/br>Middle School","<b>Shawano High School<\/b><\/br>Shawano School District<\/br>High School","<b>Sheboygan Falls Elementary School<\/b><\/br>Sheboygan Falls School District<\/br>Elementary School","<b>Sheboygan Falls High School<\/b><\/br>Sheboygan Falls School District<\/br>High School","<b>Sheboygan Falls Middle School<\/b><\/br>Sheboygan Falls School District<\/br>Middle School","<b>Sheboygan Leadership Academy School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Shell Lake Elementary (3-6) School<\/b><\/br>Shell Lake School District<\/br>Elementary School","<b>Shell Lake Junior/Senior High School<\/b><\/br>Shell Lake School District<\/br>High School","<b>Shell Lake Primary (K-2) School<\/b><\/br>Shell Lake School District<\/br>Elementary School","<b>Shepard Hills Elementary School<\/b><\/br>Oak Creek-Franklin Joint School District<\/br>Elementary School","<b>Sheridan Elementary School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Sherman Elementary School<\/b><\/br>Eau Claire Area School District<\/br>Elementary School","<b>Sherman Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Sherman Middle School<\/b><\/br>Madison Metropolitan School District<\/br>Middle School","<b>Shiocton Elementary School<\/b><\/br>Shiocton School District<\/br>Elementary School","<b>Shiocton High School<\/b><\/br>Shiocton School District<\/br>High School","<b>Shorewood High School<\/b><\/br>Shorewood School District<\/br>High School","<b>Shorewood Hills Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Shorewood Intermediate School<\/b><\/br>Shorewood School District<\/br>Middle School","<b>Shullsburg Elementary School<\/b><\/br>Shullsburg School District<\/br>Elementary School","<b>Shullsburg High School<\/b><\/br>Shullsburg School District<\/br>High School","<b>Shullsburg Junior High School<\/b><\/br>Shullsburg School District<\/br>Middle School","<b>Siefert Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Silver Lake Intermediate School<\/b><\/br>Oconomowoc Area School District<\/br>Middle School","<b>Silver Spring Intermediate School<\/b><\/br>Hamilton School District<\/br>Middle School","<b>Silverbrook Intermediate School<\/b><\/br>West Bend School District<\/br>Elementary School","<b>Siren Elementary School<\/b><\/br>Siren School District<\/br>Elementary School","<b>Siren High School<\/b><\/br>Siren School District<\/br>High School","<b>Slinger Elementary School<\/b><\/br>Slinger School District<\/br>Elementary School","<b>Slinger High School<\/b><\/br>Slinger School District<\/br>High School","<b>Slinger Middle School<\/b><\/br>Slinger School District<\/br>Middle School","<b>Solon Springs School School<\/b><\/br>Solon Springs School District<\/br>Combined Elementary/Secondary School","<b>Somers Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Somerset Elementary School<\/b><\/br>Somerset School District<\/br>Elementary School","<b>Somerset High School<\/b><\/br>Somerset School District<\/br>High School","<b>Somerset Middle School<\/b><\/br>Somerset School District<\/br>Middle School","<b>South Accelerated Academy School<\/b><\/br>Milwaukee School District<\/br>High School","<b>South Division High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>South Elementary School<\/b><\/br>Hartland-Lakeside J3 School District<\/br>Elementary School","<b>South High School<\/b><\/br>Sheboygan Area School District<\/br>High School","<b>South High School<\/b><\/br>Waukesha School District<\/br>High School","<b>South Middle School<\/b><\/br>Eau Claire Area School District<\/br>Middle School","<b>South Milwaukee High School<\/b><\/br>South Milwaukee School District<\/br>High School","<b>South Milwaukee Middle School<\/b><\/br>South Milwaukee School District<\/br>Middle School","<b>South Mountain Elementary School<\/b><\/br>Wausau School District<\/br>Elementary School","<b>South Park Middle School<\/b><\/br>Oshkosh Area School District<\/br>Middle School","<b>South Shore Elementary School<\/b><\/br>South Shore School District<\/br>Elementary School","<b>South Shore Jr/Sr High School<\/b><\/br>South Shore School District<\/br>High School","<b>Southeastern School<\/b><\/br>Milwaukee School District<\/br>Middle School","<b>Southern Bluffs Elementary School<\/b><\/br>La Crosse School District<\/br>Elementary School","<b>Southern Door Elementary School<\/b><\/br>Southern Door County School District<\/br>Elementary School","<b>Southern Door High School<\/b><\/br>Southern Door County School District<\/br>High School","<b>Southern Door Middle School<\/b><\/br>Southern Door County School District<\/br>Middle School","<b>Southport Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Southside Early Learning Center School<\/b><\/br>Sparta Area School District<\/br>Elementary School","<b>Southside Elementary School School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Southview Elementary School<\/b><\/br>Chippewa Falls Area Unified School District<\/br>Elementary School","<b>Southwest High School<\/b><\/br>Green Bay Area Public School District<\/br>High School","<b>Southwestern Wisconsin Community Middle School<\/b><\/br>Southwestern Wisconsin School District<\/br>Middle School","<b>Southwestern Wisconsin Elementary School<\/b><\/br>Southwestern Wisconsin School District<\/br>Elementary School","<b>Southwestern Wisconsin High School<\/b><\/br>Southwestern Wisconsin School District<\/br>High School","<b>Southwood Glen Elementary School<\/b><\/br>Franklin Public School District<\/br>Elementary School","<b>Sparta Alternative Independent Learning School School<\/b><\/br>Sparta Area School District<\/br>High School","<b>Sparta High School<\/b><\/br>Sparta Area School District<\/br>High School","<b>Sparta Meadowview Middle School<\/b><\/br>Sparta Area School District<\/br>Middle School","<b>Sparta Montessori School School<\/b><\/br>Sparta Area School District<\/br>Elementary School","<b>Spence Elementary School<\/b><\/br>La Crosse School District<\/br>Elementary School","<b>Spencer Elementary School<\/b><\/br>Spencer School District<\/br>Elementary School","<b>Spencer Junior High/High School<\/b><\/br>Spencer School District<\/br>High School","<b>Spooner Elementary School<\/b><\/br>Spooner Area School District<\/br>Elementary School","<b>Spooner High School<\/b><\/br>Spooner Area School District<\/br>High School","<b>Spooner Middle School<\/b><\/br>Spooner Area School District<\/br>Middle School","<b>Spring Harbor Middle School<\/b><\/br>Madison Metropolitan School District<\/br>Middle School","<b>Spring Hill Elementary School<\/b><\/br>Wisconsin Dells School District<\/br>Elementary School","<b>Spring Road Elementary School<\/b><\/br>Neenah Joint School District<\/br>Elementary School","<b>Spring Valley Elementary School<\/b><\/br>Spring Valley School District<\/br>Elementary School","<b>Spring Valley High School<\/b><\/br>Spring Valley School District<\/br>High School","<b>Spring Valley Middle School<\/b><\/br>Spring Valley School District<\/br>Middle School","<b>Stanley-Boyd High School<\/b><\/br>Stanley-Boyd Area School District<\/br>High School","<b>Stanley-Boyd Middle School<\/b><\/br>Stanley-Boyd Area School District<\/br>Middle School","<b>Stanley Elementary School<\/b><\/br>Stanley-Boyd Area School District<\/br>Elementary School","<b>Star Center Elementary School<\/b><\/br>Lake Geneva J1 School District<\/br>Elementary School","<b>Starbuck - An IB World School School<\/b><\/br>Racine Unified School District<\/br>Middle School","<b>Starms Discovery School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Starms Early Childhood School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>State Road Elementary School<\/b><\/br>La Crosse School District<\/br>Elementary School","<b>Steffen Middle School<\/b><\/br>Mequon-Thiensville School District<\/br>Middle School","<b>Stellar Collegiate Charter School School<\/b><\/br>Carmen High School of Science and Technology Inc. School District<\/br>Elementary School","<b>Stephen Foster Elementary Charter School<\/b><\/br>Appleton Area School District<\/br>Elementary School","<b>Stephens Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Stetsonville Elementary School<\/b><\/br>Medford Area Public School District<\/br>Elementary School","<b>Stettin Elementary School<\/b><\/br>Wausau School District<\/br>Elementary School","<b>Stevens Point Area Senior High School<\/b><\/br>Stevens Point Area Public School District<\/br>High School","<b>Stillson Elementary School<\/b><\/br>Chippewa Falls Area Unified School District<\/br>Elementary School","<b>Stockbridge Elementary School<\/b><\/br>Stockbridge School District<\/br>Elementary School","<b>Stockbridge High School<\/b><\/br>Stockbridge School District<\/br>High School","<b>Stockbridge Middle School<\/b><\/br>Stockbridge School District<\/br>Middle School","<b>Stocker Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Stoddard Elementary School<\/b><\/br>De Soto Area School District<\/br>Elementary School","<b>Stone Bank Elementary School<\/b><\/br>Stone Bank School District<\/br>Elementary School","<b>Stoner Prairie Elementary School<\/b><\/br>Verona Area School District<\/br>Elementary School","<b>Stormonth Elementary School<\/b><\/br>Fox Point J2 School District<\/br>Elementary School","<b>Story Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Stoughton High School<\/b><\/br>Stoughton Area School District<\/br>High School","<b>Strange Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Stratford Elementary School<\/b><\/br>Stratford School District<\/br>Elementary School","<b>Stratford High School<\/b><\/br>Stratford School District<\/br>High School","<b>Stratford Middle School<\/b><\/br>Stratford School District<\/br>Middle School","<b>Stuart Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Sturgeon Bay High School<\/b><\/br>Sturgeon Bay School District<\/br>High School","<b>Suamico Elementary School<\/b><\/br>Howard-Suamico School District<\/br>Elementary School","<b>Sugar Bush Elementary School<\/b><\/br>New London School District<\/br>Elementary School","<b>Sugar Camp Elementary School<\/b><\/br>Three Lakes School District<\/br>Elementary School","<b>Sugar Creek Elementary School<\/b><\/br>Verona Area School District<\/br>Elementary School","<b>Sugar Maple Nature School School<\/b><\/br>Northern Ozaukee School District<\/br>Elementary School","<b>Sullivan Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Sullivan Elementary School<\/b><\/br>Jefferson School District<\/br>Elementary School","<b>Summit Elementary School<\/b><\/br>Oconomowoc Area School District<\/br>Elementary School","<b>Summit Environmental School School<\/b><\/br>La Crosse School District<\/br>Elementary School","<b>Summit View Elementary School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>Sun Prairie East High School<\/b><\/br>Sun Prairie Area School District<\/br>High School","<b>Sun Prairie Four Kids School<\/b><\/br>Sun Prairie Area School District<\/br>Elementary School","<b>Sun Prairie West High School<\/b><\/br>Sun Prairie Area School District<\/br>High School","<b>Sunnyside Elementary School<\/b><\/br>Pulaski Community School District<\/br>Elementary School","<b>Sunrise Elementary School<\/b><\/br>Kimberly Area School District<\/br>Elementary School","<b>Sunrise Elementary School<\/b><\/br>Sturgeon Bay School District<\/br>Elementary School","<b>Sunset Ridge Elementary School<\/b><\/br>Middleton-Cross Plains Area School District<\/br>Elementary School","<b>Superior Community Preschool School<\/b><\/br>Superior School District<\/br>Elementary School","<b>Superior High School<\/b><\/br>Superior School District<\/br>High School","<b>Superior Middle School<\/b><\/br>Superior School District<\/br>Middle School","<b>Suring Elementary School<\/b><\/br>Suring Public School District<\/br>Elementary School","<b>Suring High School<\/b><\/br>Suring Public School District<\/br>High School","<b>Susie C Altmayer Elementary School<\/b><\/br>De Pere School District<\/br>Elementary School","<b>Swallow Elementary School<\/b><\/br>Swallow School District<\/br>Elementary School","<b>Swanson Elementary School<\/b><\/br>Elmbrook School District<\/br>Elementary School","<b>Taft Elementary School<\/b><\/br>Neenah Joint School District<\/br>Elementary School","<b>Tainter Elementary School<\/b><\/br>Rice Lake Area School District<\/br>Elementary School","<b>Tank Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Taylor Prairie Elementary School<\/b><\/br>Monona Grove School District<\/br>Elementary School","<b>Templeton Middle School<\/b><\/br>Hamilton School District<\/br>Middle School","<b>Tenor High School<\/b><\/br>Seeds of Health Inc School District<\/br>High School","<b>Tesla Engineering Charter School School<\/b><\/br>Appleton Area School District<\/br>High School","<b>The Lincoln Academy School<\/b><\/br>The Lincoln Academy Inc School District<\/br>Combined Elementary/Secondary School","<b>The REAL School-Racine Educational Alternative Learning Experience School<\/b><\/br>Racine Unified School District<\/br>High School","<b>Theisen Middle School<\/b><\/br>Fond du Lac School District<\/br>Middle School","<b>Theodore Robinson Intermediate School School<\/b><\/br>Evansville Community School District<\/br>Elementary School","<b>Theresa Elementary School<\/b><\/br>Lomira School District<\/br>Elementary School","<b>THINK Academy-Together Helping INspire Kids School<\/b><\/br>Wisconsin Rapids School District<\/br>Elementary School","<b>Thomas Jefferson Elementary School<\/b><\/br>Wausau School District<\/br>Elementary School","<b>Thomas Jefferson Middle School<\/b><\/br>Port Washington-Saukville School District<\/br>Middle School","<b>Thoreau Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Thoreau Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Thorp Elementary School<\/b><\/br>Thorp School District<\/br>Elementary School","<b>Thorp High School<\/b><\/br>Thorp School District<\/br>High School","<b>Thorson Elementary School<\/b><\/br>Cedarburg School District<\/br>Elementary School","<b>Three Lakes Elementary School<\/b><\/br>Three Lakes School District<\/br>Elementary School","<b>Three Lakes High School<\/b><\/br>Three Lakes School District<\/br>High School","<b>Three Lakes Junior High School<\/b><\/br>Three Lakes School District<\/br>Junior High School","<b>Thurston Woods Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Tibbets Elementary School<\/b><\/br>Elkhorn Area School District<\/br>Elementary School","<b>Tiffany Creek Elementary School<\/b><\/br>Boyceville Community School District<\/br>Elementary School","<b>Tigerton Elementary School<\/b><\/br>Tigerton School District<\/br>Elementary School","<b>Tigerton High School<\/b><\/br>Tigerton School District<\/br>High School","<b>Timber PUPS Learning Center School<\/b><\/br>Tomah Area School District<\/br>Elementary School","<b>Time 4 Learning Charter School School<\/b><\/br>Greendale School District<\/br>Elementary School","<b>Tipler Middle School<\/b><\/br>Oshkosh Area School District<\/br>Middle School","<b>Todd Elementary School<\/b><\/br>Beloit School District<\/br>Elementary School","<b>Token Springs Elementary School<\/b><\/br>Sun Prairie Area School District<\/br>Elementary School","<b>Toki Middle School<\/b><\/br>Madison Metropolitan School District<\/br>Middle School","<b>Tomah Area Montessori School School<\/b><\/br>Tomah Area School District<\/br>Elementary School","<b>Tomah High School<\/b><\/br>Tomah Area School District<\/br>High School","<b>Tomah Middle School<\/b><\/br>Tomah Area School District<\/br>Middle School","<b>Tomahawk Elementary School<\/b><\/br>Tomahawk School District<\/br>Elementary School","<b>Tomahawk High School<\/b><\/br>Tomahawk School District<\/br>High School","<b>Tomahawk Middle School<\/b><\/br>Tomahawk School District<\/br>Middle School","<b>Tomorrow River Community Charter School<\/b><\/br>Tomorrow River School District<\/br>Elementary School","<b>Tomorrow River Virtual Charter School (TRVCS) School<\/b><\/br>Tomorrow River School District<\/br>Elementary School","<b>Tonawanda Elementary School<\/b><\/br>Elmbrook School District<\/br>Elementary School","<b>Tower Rock Elementary School<\/b><\/br>Sauk Prairie School District<\/br>Elementary School","<b>Townsend Street Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Traeger Elementary School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>Traeger Middle School<\/b><\/br>Oshkosh Area School District<\/br>Middle School","<b>Trailside Elementary School<\/b><\/br>Waterford Graded J1 School District<\/br>Elementary School","<b>Transition High School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Traver Elementary School<\/b><\/br>Linn J4 School District<\/br>Elementary School","<b>Treffert Way for the Exceptional Mind School<\/b><\/br>North Fond du Lac School District<\/br>Combined Elementary/Secondary School","<b>Trempealeau Elementary School<\/b><\/br>Galesville-Ettrick-Trempealeau School District<\/br>Elementary School","<b>Tremper High School<\/b><\/br>Kenosha School District<\/br>High School","<b>Trevor-Wilmot Grade School<\/b><\/br>Trevor-Wilmot Consolidated School District<\/br>Elementary School","<b>Tri-County Elementary School<\/b><\/br>Tri-County Area School District<\/br>Elementary School","<b>Tri-County High School<\/b><\/br>Tri-County Area School District<\/br>High School","<b>Tri-County Middle School<\/b><\/br>Tri-County Area School District<\/br>Middle School","<b>Trowbridge Street School of Great Lakes Studies School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Tullar Elementary School<\/b><\/br>Neenah Joint School District<\/br>Elementary School","<b>Turner High School<\/b><\/br>Beloit Turner School District<\/br>High School","<b>Turner Middle School<\/b><\/br>Beloit Turner School District<\/br>Middle School","<b>Turtle Creek Elementary School<\/b><\/br>Delavan-Darien School District<\/br>Elementary School","<b>Turtle Lake Elementary School<\/b><\/br>Turtle Lake School District<\/br>Elementary School","<b>Turtle Lake High School<\/b><\/br>Turtle Lake School District<\/br>High School","<b>Turtle Lake Middle School<\/b><\/br>Turtle Lake School District<\/br>Middle School","<b>Two Rivers High School<\/b><\/br>Two Rivers Public School District<\/br>High School","<b>Underwood Elementary School<\/b><\/br>Wauwatosa School District<\/br>Elementary School","<b>Union Grove Elementary School<\/b><\/br>Union Grove J1 School District<\/br>Elementary School","<b>Union Grove High School<\/b><\/br>Union Grove UHS School District<\/br>High School","<b>United Community Center Acosta Middle School School<\/b><\/br>United Community Center Inc School District<\/br>Middle School","<b>Unity Elementary School<\/b><\/br>Unity School District<\/br>Elementary School","<b>Unity High School<\/b><\/br>Unity School District<\/br>High School","<b>Unity Middle School<\/b><\/br>Unity School District<\/br>Middle School","<b>UpGrade Media Arts Schools School<\/b><\/br>UpGrade Media Arts Schools Inc School District<\/br>Combined Elementary/Secondary School","<b>Urban Middle School<\/b><\/br>Sheboygan Area School District<\/br>Middle School","<b>Valders Elementary School<\/b><\/br>Valders Area School District<\/br>Elementary School","<b>Valders High School<\/b><\/br>Valders Area School District<\/br>High School","<b>Valders Middle School<\/b><\/br>Valders Area School District<\/br>Middle School","<b>Valley New School School<\/b><\/br>Appleton Area School District<\/br>High School","<b>Valley View Elementary School<\/b><\/br>Ashwaubenon School District<\/br>Elementary School","<b>Valley View Elementary School<\/b><\/br>Menomonee Falls School District<\/br>Elementary School","<b>Van Buren Elementary School<\/b><\/br>Janesville School District<\/br>Elementary School","<b>Van Hise Elementary School<\/b><\/br>Madison Metropolitan School District<\/br>Elementary School","<b>Vel Phillips Memorial High School School<\/b><\/br>Madison Metropolitan School District<\/br>High School","<b>Vel Phillips Middle School School<\/b><\/br>Oshkosh Area School District<\/br>Middle School","<b>Vel R Phillips School School<\/b><\/br>Wauwatosa School District<\/br>Combined Elementary/Secondary School","<b>Veritas High School<\/b><\/br>Seeds of Health Inc School District<\/br>High School","<b>Vernon County Area Better Futures High School<\/b><\/br>Viroqua Area School District<\/br>High School","<b>Vernon Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Verona Area High School<\/b><\/br>Verona Area School District<\/br>High School","<b>Verona Area International School School<\/b><\/br>Verona Area School District<\/br>Elementary School","<b>Verona Area K4 School<\/b><\/br>Verona Area School District<\/br>Elementary School","<b>Victory Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Vieau Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Viking Academy School<\/b><\/br>Denmark School District<\/br>Combined Elementary/Secondary School","<b>Viking Elementary School<\/b><\/br>Holmen School District<\/br>Elementary School","<b>Viking Middle School<\/b><\/br>Baldwin-Woodville Area School District<\/br>Middle School","<b>Vincent Accelerated Academy School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Viroqua Area Montessori School School<\/b><\/br>Viroqua Area School District<\/br>Combined Elementary/Secondary School","<b>Viroqua Elementary School<\/b><\/br>Viroqua Area School District<\/br>Elementary School","<b>Viroqua High School<\/b><\/br>Viroqua Area School District<\/br>High School","<b>Viroqua Middle School<\/b><\/br>Viroqua Area School District<\/br>Middle School","<b>Wabeno Elementary School<\/b><\/br>Wabeno Area School District<\/br>Elementary School","<b>Wabeno High School<\/b><\/br>Wabeno Area School District<\/br>High School","<b>Wadewitz Elementary School<\/b><\/br>Racine Unified School District<\/br>Elementary School","<b>Wakanda Elementary School<\/b><\/br>Menomonie Area School District<\/br>Elementary School","<b>Walden III High School<\/b><\/br>Racine Unified School District<\/br>High School","<b>Wales Elementary School<\/b><\/br>Kettle Moraine School District<\/br>Elementary School","<b>Walker Elementary School<\/b><\/br>West Allis-West Milwaukee School District<\/br>Elementary School","<b>Walker Middle School<\/b><\/br>Sturgeon Bay School District<\/br>Middle School","<b>Waller Elementary School<\/b><\/br>Burlington Area School District<\/br>Elementary School","<b>Walworth Elementary School<\/b><\/br>Walworth J1 School District<\/br>Elementary School","<b>Warrens Elementary School<\/b><\/br>Tomah Area School District<\/br>Elementary School","<b>Washburn Elementary School<\/b><\/br>Washburn School District<\/br>Elementary School","<b>Washburn High School<\/b><\/br>Washburn School District<\/br>High School","<b>Washburn Middle School<\/b><\/br>Washburn School District<\/br>Middle School","<b>Washington Elementary School<\/b><\/br>Beaver Dam Unified School District<\/br>Elementary School","<b>Washington Elementary School<\/b><\/br>Janesville School District<\/br>Elementary School","<b>Washington Elementary School<\/b><\/br>Marshfield Unified School District<\/br>Elementary School","<b>Washington Elementary School<\/b><\/br>Merrill Area School District<\/br>Elementary School","<b>Washington Elementary School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>Washington Elementary School<\/b><\/br>Stevens Point Area Public School District<\/br>Elementary School","<b>Washington Elementary School<\/b><\/br>Washington-Caldwell School District<\/br>Elementary School","<b>Washington Elementary School<\/b><\/br>Wauwatosa School District<\/br>Elementary School","<b>Washington Elementary School<\/b><\/br>Whitewater Unified School District<\/br>Elementary School","<b>Washington Elementary School<\/b><\/br>Wisconsin Rapids School District<\/br>Elementary School","<b>Washington Island Elementary School<\/b><\/br>Washington Island School District<\/br>Elementary School","<b>Washington Island High School<\/b><\/br>Washington Island School District<\/br>High School","<b>Washington Middle School<\/b><\/br>Green Bay Area Public School District<\/br>Middle School","<b>Washington Middle School<\/b><\/br>Kenosha School District<\/br>Middle School","<b>Washington Middle School<\/b><\/br>Manitowoc School District<\/br>Middle School","<b>Washington Middle School<\/b><\/br>Oconto Falls Public School District<\/br>Middle School","<b>Washington School of Early Learning School<\/b><\/br>Neenah Joint School District<\/br>Elementary School","<b>Washington Street School School<\/b><\/br>West Bend School District<\/br>Combined Elementary/Secondary School","<b>Waterford High School<\/b><\/br>Waterford UHS School District<\/br>High School","<b>Waterloo Elementary School<\/b><\/br>Waterloo School District<\/br>Elementary School","<b>Waterloo High School<\/b><\/br>Waterloo School District<\/br>High School","<b>Waterloo Intermediate School<\/b><\/br>Waterloo School District<\/br>Elementary School","<b>Waterloo Middle School<\/b><\/br>Waterloo School District<\/br>Middle School","<b>Waters Elementary School<\/b><\/br>Fond du Lac School District<\/br>Elementary School","<b>Watertown 4 Kids School<\/b><\/br>Watertown Unified School District<\/br>Elementary School","<b>Watertown High School<\/b><\/br>Watertown Unified School District<\/br>High School","<b>Waubesa Intermediate School<\/b><\/br>McFarland School District<\/br>Elementary School","<b>Waukesha Academy of Health Professions School<\/b><\/br>Waukesha School District<\/br>High School","<b>Waukesha East Alternative School School<\/b><\/br>Waukesha School District<\/br>High School","<b>Waukesha Engineering Preparatory Academy School<\/b><\/br>Waukesha School District<\/br>High School","<b>Waukesha STEM Academy School<\/b><\/br>Waukesha School District<\/br>Combined Elementary/Secondary School","<b>Waukesha Transition Academy School<\/b><\/br>Waukesha School District<\/br>High School","<b>Waunakee Community 4K School School<\/b><\/br>Waunakee Community School District<\/br>Elementary School","<b>Waunakee Heritage Elementary School<\/b><\/br>Waunakee Community School District<\/br>Elementary School","<b>Waunakee High School<\/b><\/br>Waunakee Community School District<\/br>High School","<b>Waunakee Intermediate School<\/b><\/br>Waunakee Community School District<\/br>Elementary School","<b>Waunakee Middle School<\/b><\/br>Waunakee Community School District<\/br>Middle School","<b>Waunakee Prairie Elementary School<\/b><\/br>Waunakee Community School District<\/br>Elementary School","<b>Waupaca Community 4-Year Old Kindergarten School<\/b><\/br>Waupaca School District<\/br>Elementary School","<b>Waupaca High School<\/b><\/br>Waupaca School District<\/br>High School","<b>Waupaca Learning Center Elementary School<\/b><\/br>Waupaca School District<\/br>Elementary School","<b>Waupaca Middle School<\/b><\/br>Waupaca School District<\/br>Middle School","<b>Waupun Area Junior High School<\/b><\/br>Waupun School District<\/br>Junior High School","<b>Waupun Area Senior High School<\/b><\/br>Waupun School District<\/br>High School","<b>Wausau Area Montessori Charter School School<\/b><\/br>Wausau School District<\/br>Combined Elementary/Secondary School","<b>Wausau Area Virtual Education School<\/b><\/br>Wausau School District<\/br>Combined Elementary/Secondary School","<b>Wausaukee Elementary School<\/b><\/br>Wausaukee School District<\/br>Elementary School","<b>Wausaukee High School<\/b><\/br>Wausaukee School District<\/br>High School","<b>Wausaukee Middle School<\/b><\/br>Wausaukee School District<\/br>Middle School","<b>Wautoma High School<\/b><\/br>Wautoma Area School District<\/br>High School","<b>Wauwatosa Montessori School School<\/b><\/br>Wauwatosa School District<\/br>Elementary School","<b>Wauwatosa STEM School<\/b><\/br>Wauwatosa School District<\/br>Elementary School","<b>Wauwatosa Virtual Academy School<\/b><\/br>Wauwatosa School District<\/br>Combined Elementary/Secondary School","<b>Wauzeka Elementary School<\/b><\/br>Wauzeka-Steuben School District<\/br>Elementary School","<b>Wauzeka High School<\/b><\/br>Wauzeka-Steuben School District<\/br>High School","<b>Wauzeka Middle School<\/b><\/br>Wauzeka-Steuben School District<\/br>Middle School","<b>Wayne Bartels Middle School<\/b><\/br>Portage Community School District<\/br>Middle School","<b>Webb Middle School<\/b><\/br>Reedsburg School District<\/br>Middle School","<b>Webster Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Webster Elementary School<\/b><\/br>Watertown Unified School District<\/br>Elementary School","<b>Webster Elementary School<\/b><\/br>Webster School District<\/br>Elementary School","<b>Webster High School<\/b><\/br>Webster School District<\/br>High School","<b>Webster Middle School<\/b><\/br>Cedarburg School District<\/br>Middle School","<b>Webster Middle School<\/b><\/br>Webster School District<\/br>Middle School","<b>Webster Stanley Elementary School<\/b><\/br>Oshkosh Area School District<\/br>Elementary School","<b>Wedgewood Park School School<\/b><\/br>Milwaukee School District<\/br>Middle School","<b>Wequiock Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>West Bend School District 4K School<\/b><\/br>West Bend School District<\/br>Elementary School","<b>West De Pere High School<\/b><\/br>West De Pere School District<\/br>High School","<b>West De Pere Intermediate School School<\/b><\/br>West De Pere School District<\/br>Middle School","<b>West De Pere Middle School<\/b><\/br>West De Pere School District<\/br>Middle School","<b>West Elementary School<\/b><\/br>Antigo Unified School District<\/br>Elementary School","<b>West Elementary School<\/b><\/br>Jefferson School District<\/br>Elementary School","<b>West Elementary School<\/b><\/br>Milton School District<\/br>Elementary School","<b>West Elementary-Kindergarten Center School<\/b><\/br>Baraboo School District<\/br>Elementary School","<b>West High School<\/b><\/br>Appleton Area School District<\/br>High School","<b>West High School<\/b><\/br>Green Bay Area Public School District<\/br>High School","<b>West High School<\/b><\/br>Madison Metropolitan School District<\/br>High School","<b>West High School<\/b><\/br>Oshkosh Area School District<\/br>High School","<b>West High School<\/b><\/br>Waukesha School District<\/br>High School","<b>West High School<\/b><\/br>Wausau School District<\/br>High School","<b>West High School<\/b><\/br>Wauwatosa School District<\/br>High School","<b>West High School<\/b><\/br>West Bend School District<\/br>High School","<b>West Middleton Elementary School<\/b><\/br>Middleton-Cross Plains Area School District<\/br>Elementary School","<b>West Milwaukee Intermediate School<\/b><\/br>West Allis-West Milwaukee School District<\/br>Middle School","<b>West Ridge Elementary School<\/b><\/br>Racine Unified School District<\/br>Elementary School","<b>West Salem Elementary School<\/b><\/br>West Salem School District<\/br>Elementary School","<b>West Salem High School<\/b><\/br>West Salem School District<\/br>High School","<b>West Salem Middle School<\/b><\/br>West Salem School District<\/br>Middle School","<b>West Side Elementary School<\/b><\/br>Elkhorn Area School District<\/br>Elementary School","<b>West Side Elementary School<\/b><\/br>Mauston School District<\/br>Elementary School","<b>West Side Elementary School<\/b><\/br>Reedsburg School District<\/br>Elementary School","<b>Westby Elementary School<\/b><\/br>Westby Area School District<\/br>Elementary School","<b>Westby High School<\/b><\/br>Westby Area School District<\/br>High School","<b>Westby Middle School<\/b><\/br>Westby Area School District<\/br>Middle School","<b>Western Wisconsin Virtual Charter School (WWVC) School<\/b><\/br>Elmwood School District<\/br>Combined Elementary/Secondary School","<b>Westfield Area High School<\/b><\/br>Westfield School District<\/br>High School","<b>Westfield Area Middle School<\/b><\/br>Westfield School District<\/br>Middle School","<b>Westfield Elementary School<\/b><\/br>Westfield School District<\/br>Elementary School","<b>Westlawn Elementary School<\/b><\/br>Cedarburg School District<\/br>Elementary School","<b>Weston Elementary School<\/b><\/br>D C Everest Area School District<\/br>Elementary School","<b>Weston Elementary School<\/b><\/br>Weston School District<\/br>Elementary School","<b>Weston Jr High School School<\/b><\/br>Weston School District<\/br>Middle School","<b>Weston Sr High School School<\/b><\/br>Weston School District<\/br>High School","<b>Westside Academy School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Westside Elementary School<\/b><\/br>Kimberly Area School District<\/br>Elementary School","<b>Westside Elementary School<\/b><\/br>River Falls School District<\/br>Elementary School","<b>Westside Elementary School<\/b><\/br>Sun Prairie Area School District<\/br>Elementary School","<b>Westview Elementary School<\/b><\/br>Platteville School District<\/br>Elementary School","<b>Westwood Elementary School<\/b><\/br>West De Pere School District<\/br>Elementary School","<b>Weyauwega Elementary School<\/b><\/br>Weyauwega-Fremont School District<\/br>Elementary School","<b>Weyauwega High School<\/b><\/br>Weyauwega-Fremont School District<\/br>High School","<b>Weyauwega Middle School<\/b><\/br>Weyauwega-Fremont School District<\/br>Middle School","<b>Wheatland Center Elementary School<\/b><\/br>Wheatland J1 School District<\/br>Elementary School","<b>White Lake Elementary School<\/b><\/br>White Lake School District<\/br>Elementary School","<b>White Lake High School<\/b><\/br>White Lake School District<\/br>High School","<b>White Lake Middle School<\/b><\/br>White Lake School District<\/br>Middle School","<b>White Rock Campus School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>White Rock School School<\/b><\/br>Waukesha School District<\/br>Elementary School","<b>Whitefish Bay High School<\/b><\/br>Whitefish Bay School District<\/br>High School","<b>Whitefish Bay Middle School<\/b><\/br>Whitefish Bay School District<\/br>Middle School","<b>Whitehall Memorial Elementary School<\/b><\/br>Whitehall School District<\/br>Elementary School","<b>Whitehall Memorial Junior/Senior High School<\/b><\/br>Whitehall School District<\/br>High School","<b>Whitehorse Middle School<\/b><\/br>Madison Metropolitan School District<\/br>Middle School","<b>Whitewater 4K School<\/b><\/br>Whitewater Unified School District<\/br>Elementary School","<b>Whitewater High School<\/b><\/br>Whitewater Unified School District<\/br>High School","<b>Whitewater Middle School<\/b><\/br>Whitewater Unified School District<\/br>Middle School","<b>Whitman Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Whitman Middle School<\/b><\/br>Wauwatosa School District<\/br>Middle School","<b>Whitnall High School<\/b><\/br>Whitnall School District<\/br>High School","<b>Whitnall Middle School<\/b><\/br>Whitnall School District<\/br>Middle School","<b>Whittier Elementary School<\/b><\/br>Kenosha School District<\/br>Elementary School","<b>Whittier Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>WHS Information Technology School<\/b><\/br>Milwaukee School District<\/br>High School","<b>Wild Rose Elementary School<\/b><\/br>Wild Rose School District<\/br>Elementary School","<b>Wild Rose High School<\/b><\/br>Wild Rose School District<\/br>High School","<b>Wilder Elementary School<\/b><\/br>Green Bay Area Public School District<\/br>Elementary School","<b>Wildlands Charter School School<\/b><\/br>Augusta School District<\/br>High School","<b>Williams Bay Elementary School<\/b><\/br>Williams Bay School District<\/br>Elementary School","<b>Williams Bay High School<\/b><\/br>Williams Bay School District<\/br>High School","<b>Williams Bay Middle School<\/b><\/br>Williams Bay School District<\/br>Middle School","<b>Willow Glen Primary School School<\/b><\/br>Saint Francis School District<\/br>Elementary School","<b>Willow River Elementary School<\/b><\/br>Hudson School District<\/br>Elementary School","<b>Willow Springs Learning Center School<\/b><\/br>Hamilton School District<\/br>Elementary School","<b>Willson Elementary School<\/b><\/br>Baraboo School District<\/br>Elementary School","<b>Wilmot High School<\/b><\/br>Wilmot UHS School District<\/br>High School","<b>Wilson Elementary School<\/b><\/br>Beaver Dam Unified School District<\/br>Elementary School","<b>Wilson Elementary School<\/b><\/br>Janesville School District<\/br>Elementary School","<b>Wilson Elementary School<\/b><\/br>Mequon-Thiensville School District<\/br>Elementary School","<b>Wilson Elementary School<\/b><\/br>Sheboygan Area School District<\/br>Elementary School","<b>Wilson Elementary School<\/b><\/br>Wauwatosa School District<\/br>Elementary School","<b>Wilson Elementary School<\/b><\/br>West Allis-West Milwaukee School District<\/br>Elementary School","<b>Wilson Middle School<\/b><\/br>Appleton Area School District<\/br>Middle School","<b>Wilson Middle School<\/b><\/br>Manitowoc School District<\/br>Middle School","<b>Windsor Elementary School<\/b><\/br>De Forest Area School District<\/br>Elementary School","<b>Winkler Elementary School<\/b><\/br>Burlington Area School District<\/br>Elementary School","<b>Winneconne Elementary School<\/b><\/br>Winneconne Community School District<\/br>Elementary School","<b>Winneconne High School<\/b><\/br>Winneconne Community School District<\/br>High School","<b>Winneconne Middle School<\/b><\/br>Winneconne Community School District<\/br>Middle School","<b>Winnequah School School<\/b><\/br>Monona Grove School District<\/br>Elementary School","<b>Winskill Elementary School<\/b><\/br>Lancaster Community School District<\/br>Elementary School","<b>Winter Elementary School<\/b><\/br>Winter School District<\/br>Elementary School","<b>Winter High School<\/b><\/br>Winter School District<\/br>High School","<b>Winter Middle School<\/b><\/br>Winter School District<\/br>Middle School","<b>Wisconsin Connect Charter School School<\/b><\/br>Burlington Area School District<\/br>Combined Elementary/Secondary School","<b>Wisconsin Connections Academy School<\/b><\/br>Appleton Area School District<\/br>Combined Elementary/Secondary School","<b>Wisconsin Conservatory of Lifelong Learning School<\/b><\/br>Milwaukee School District<\/br>Combined Elementary/Secondary School","<b>Wisconsin Dells High School<\/b><\/br>Wisconsin Dells School District<\/br>High School","<b>Wisconsin Dells Middle School School<\/b><\/br>Wisconsin Dells School District<\/br>Middle School","<b>Wisconsin Heights Elementary School<\/b><\/br>Wisconsin Heights School District<\/br>Elementary School","<b>Wisconsin Heights High School<\/b><\/br>Wisconsin Heights School District<\/br>High School","<b>Wisconsin Heights Middle School<\/b><\/br>Wisconsin Heights School District<\/br>Middle School","<b>Wisconsin Hills Middle School<\/b><\/br>Elmbrook School District<\/br>Middle School","<b>Wisconsin Rapids Area Middle School<\/b><\/br>Wisconsin Rapids School District<\/br>Middle School","<b>Wisconsin Virtual Academy High (WIVA) School<\/b><\/br>McFarland School District<\/br>High School","<b>Wisconsin Virtual Academy K-8 (WIVA) School<\/b><\/br>McFarland School District<\/br>Elementary School","<b>Wisconsin Virtual Learning School<\/b><\/br>Northern Ozaukee School District<\/br>Combined Elementary/Secondary School","<b>WISE Academy School<\/b><\/br>Nekoosa School District<\/br>Combined Elementary/Secondary School","<b>Wittenberg-Birnamwood High School<\/b><\/br>Wittenberg-Birnamwood School District<\/br>High School","<b>Wittenberg Elementary School<\/b><\/br>Wittenberg-Birnamwood School District<\/br>Elementary School","<b>WOLI/Akii'gikinoo'amaading Environmental School School<\/b><\/br>Waadookodaading Ojibwe Language Institute Inc School District<\/br>Combined Elementary/Secondary School","<b>Wonewoc-Center Elementary School<\/b><\/br>Wonewoc-Union Center School District<\/br>Elementary School","<b>Wonewoc-Center High School<\/b><\/br>Wonewoc-Union Center School District<\/br>High School","<b>Wonewoc-Center Junior High School<\/b><\/br>Wonewoc-Union Center School District<\/br>Middle School","<b>Wonewoc-Center Virtual Academy School<\/b><\/br>Wonewoc-Union Center School District<\/br>Combined Elementary/Secondary School","<b>Woodfield Elementary School<\/b><\/br>Waterford Graded J1 School District<\/br>Elementary School","<b>Woodland Elementary School<\/b><\/br>Barron Area School District<\/br>Elementary School","<b>Woodland Intermediate School<\/b><\/br>Kimberly Area School District<\/br>Elementary School","<b>Woodland School School<\/b><\/br>Kimberly Area School District<\/br>Elementary School","<b>Woodlands School School<\/b><\/br>Woodlands School Inc School District<\/br>Elementary School","<b>Woodlands School - State Street Campus School<\/b><\/br>Woodlands School Inc School District<\/br>Elementary School","<b>Woodridge Elementary School<\/b><\/br>Portage Community School District<\/br>Elementary School","<b>Woods Elementary School<\/b><\/br>Geneva J4 School District<\/br>Elementary School","<b>Woodside Elementary School<\/b><\/br>Hamilton School District<\/br>Elementary School","<b>Woodside Elementary School<\/b><\/br>Wisconsin Rapids School District<\/br>Elementary School","<b>Woodview Elementary School<\/b><\/br>Grafton School District<\/br>Elementary School","<b>Woodworth Middle School<\/b><\/br>Fond du Lac School District<\/br>Middle School","<b>Wrightstown Elementary School<\/b><\/br>Wrightstown Community School District<\/br>Elementary School","<b>Wrightstown High School<\/b><\/br>Wrightstown Community School District<\/br>High School","<b>Wrightstown Middle School<\/b><\/br>Wrightstown Community School District<\/br>Middle School","<b>Wyeville Elementary School<\/b><\/br>Tomah Area School District<\/br>Elementary School","<b>Yahara Elementary School<\/b><\/br>De Forest Area School District<\/br>Elementary School","<b>Yahara Elementary School<\/b><\/br>Edgerton School District<\/br>Elementary School","<b>Yorkville Elementary School<\/b><\/br>Yorkville J2 School District<\/br>Elementary School","<b>Youth Services Center School<\/b><\/br>Janesville School District<\/br>Combined Elementary/Secondary School","<b>Zablocki Elementary School<\/b><\/br>Milwaukee School District<\/br>Elementary School","<b>Zielanis Elementary School<\/b><\/br>Kiel Area School District<\/br>Elementary School"],{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addCircleMarkers","args":[[43.12639324,43.070215581,43.073373687,43.06784101,43.073314976,43.076129476,43.070962994,null,43.099590473,43.059786549,43.051830713,43.062804644,43.073283708,43.057019525,43.06064659,43.047350082,43.051965618,43.07379569,43.083189505,43.050125489,43.051408366,43.046247619,43.060796265,43.072871964,43.07210769,43.073224191,43.074893682,43.073239655,43.098693151,43.082629361,43.098690002,43.144538341,43.082714966,43.06774216,43.072235163,43.034589194,43.038614892,43.026727007,null,43.129443642,43.07617003,43.073262807,43.067545662,43.073265035,43.075816615,43.071310636,43.072112112,43.034850254,43.059885573,43.066971258,43.072233417,43.068922014,43.073322355,43.051752462,43.073489453,43.070864677,43.072289641,43.094244701,43.06688708,43.072111853,43.075162239,43.066202364,43.073256712,null,43.067737793,null,43.057172912,43.030940525,43.078518421,43.035500451,43.060041455,43.070505755,null,43.074270844,43.073813199,43.117722206,43.038481412,43.06653111,43.063709738,43.083902082,43.074824059,43.05007718,null,43.046500257,43.121121692,43.046269795,43.080048439,43.053891842,43.031916614,43.073289673,43.069820447,43.065573523,43.120661957,43.106784445,null,43.088443425,43.072463495,43.067859967,43.031783126,43.047113369,43.098937643,43.093889466,43.091152122,null,43.035949082,43.134759901,43.071918582,43.073443514,43.079736879,43.073142182,43.073144744,43.072201115,43.067803093,43.069075381,43.120985092,43.049216618,43.063008885,43.092368339,null,43.087376235,43.056827323,43.055876804,43.057969514,43.056585723,43.059206129,43.01558747,43.08769254,43.124752555,43.042306808,43.064662109,43.07348616,43.075297202,43.07861854,43.056557427,43.079042232,43.128942724,43.07318605,43.104504366,null,43.050551221,43.046654349,43.13789048,43.078956597,43.092958784,43.073378442,43.087376235,null,43.073684199,43.071937471,43.071301992,43.052549265,null,43.063781001,43.071746767,43.071881616,43.07874743,43.070102423,43.110622658,43.129874646,43.068907372,43.046219021,43.077975925,43.094105555,43.080641881,43.07202253,43.072473305,43.09248715,43.073210099,43.073284115,43.078250366,43.098338267,43.081459419,43.088443425,43.084464775,43.072091296,43.083886388,43.080048439,43.09606117,43.071071572,43.082535092,43.078156066,43.047355273,null,43.073156223,43.067746673,43.07615696,43.072126614,43.074825306,43.080048439,43.089851599,43.06697129,null,43.123759687,43.081994879,43.070900681,43.090535865,43.06975039,43.092721284,43.111057903,43.142499929,43.151943337,43.038205162,42.901249478,42.946707319,42.997959452,43.181853995,43.19258675,43.183006857,43.187502535,43.175571453,43.177059085,43.191674089,43.179744796,43.175453959,44.517902917,44.502431054,44.508669398,44.51916323,44.519580918,44.504803331,44.485960818,44.521382746,44.478059451,44.540058305,44.516035539,44.539169057,44.49755851,44.500801729,44.522543311,44.521714473,44.516995897,44.518187959,44.49672126,44.506033628,44.51603493,44.530813722,44.512195587,44.520667085,44.518398649,44.524610156,44.499699781,44.51292701,44.523929114,44.513963559,44.513873069,44.49760602,44.516035539,44.520536059,44.530893023,44.520386466,44.540208681,44.524415291,44.505200211,44.525871821,44.514130099,44.512886528,44.518036517,44.500971933,44.51748565,44.512375855,44.497645429,44.507921659,44.492509269,44.518670532,44.512586773,44.506127335,45.465524548,45.457425222,45.464699171,45.465133157,45.458255748,43.755289107,43.7847983,43.782068985,43.7887781,43.778765686,null,43.783731712,43.783639014,null,null,43.768145386,43.784370636,43.768517043,43.775546613,43.784267989,43.769399444,43.773106274,43.791748387,43.769055243,43.78085515,43.766520296,null,null,43.770291493,43.783475598,43.791769295,43.783589692,43.773273139,43.772737374,43.773579429,43.78397762,null,null,43.769654628,null,43.771518603,null,43.77983191,43.775179099,43.770329191,43.784370636,43.785505838,43.765614109,43.780626379,43.779339964,43.770195324,44.243681356,43.801507648,43.857746572,43.812198231,43.808758206,43.788961029,43.803867577,43.817215582,43.804653372,43.809925393,43.812722704,43.84264574,43.851416097,43.841359945,null,43.85659258,43.811561885,43.815073055,43.802109826,43.811405143,43.830134159,null,43.810053055,43.808757805,43.811614277,43.765426557,43.817729372,43.798405699,43.813844466,43.812859357,43.80257498,43.81109446,43.774738404,43.814231025,43.811038871,43.813075922,43.796604134,43.772578175,43.811886972,43.847886252,43.81393249,43.795935967,43.839444568,43.843212529,43.80460224,null,43.805081682,43.811953373,43.769487194,43.814987158,43.802470968,43.794023925,43.831249819,43.846021507,43.812170175,43.789656414,43.842780215,43.825134953,43.804375926,43.835469119,43.792617847,null,null,43.841351835,43.794177302,43.811540803,43.796883973,43.792258776,43.816123582,43.801465917,43.84135996,43.812674551,45.175953253,null,42.559205401,null,null,42.655048,null,null,42.506573268,42.498710362,44.455552426,44.469993826,44.489234543,44.483703343,44.47762512,44.543124294,44.46586638,44.590877402,44.453923755,44.470704412,null,44.554668383,44.465338022,null,44.472334233,44.489446067,44.49453397,44.492776713,null,44.497559263,null,44.501178909,44.498483556,44.484999744,44.438632589,null,44.43306609,44.454461488,44.441772124,44.431961504,44.448465081,44.441046097,null,45.098309514,null,42.961684282,42.964803329,43.083296959,42.73588252,42.732447324,42.732391549,42.734456777,42.729000722,null,43.03412807,43.951183534,43.94269803,43.944293403,43.923406038,42.54044514,42.54079699,43.557110618,43.555321585,43.556227671,43.183851285,42.577872805,44.184295829,43.106413746,43.095339896,43.091683777,43.111457411,43.093676031,43.106479818,43.094948866,43.089977688,43.102816951,43.111800357,43.028745228,43.026696548,43.024514352,43.017218986,43.015537013,43.001617781,43.030018067,43.042473059,42.845283604,43.015690193,43.057788386,42.985399806,43.182571998,null,42.914064912,null,null,null,null,42.881434423,null,null,null,null,42.925531892,43.120171369,43.174756287,43.108261072,43.169994143,43.170242241,43.175405636,43.178352422,43.177709591,43.1693561,43.07262615,43.071794688,43.047844209,43.061908177,43.047548554,null,43.034995081,43.076692209,43.064917615,43.074738884,null,43.051964381,43.033898506,43.060454701,43.035932638,43.060730715,43.060507167,43.035498069,43.049244987,43.050285541,43.04712027,43.045502618,43.038651487,43.04748322,43.101134542,43.071212652,43.060477416,43.047966335,43.060750104,43.061137203,43.060682878,43.05595826,43.065844761,43.002699338,42.995398872,42.988345172,43.020955942,43.016712109,43.002847674,43.00247114,43.008608,42.994813671,42.988020772,43.016689899,43.015115303,43.016660587,43.006019888,43.00476506,42.99891919,43.000868532,42.98809001,43.010174913,42.99677108,43.014587429,42.988364617,42.995276672,43.021712037,42.995276672,43.015152432,43.002600721,43.016660587,43.023654006,43.016468099,43.015115303,42.984180306,43.008719328,42.998789635,42.988066488,43.003630354,43.002700328,43.02018178,43.002124732,43.002937172,43.023887735,43.016641423,43.016448199,43.016457064,43.016341584,43.016471984,43.012996267,43.003251976,43.013497901,43.011657974,43.016644949,43.016739086,42.990269735,42.993691633,43.015143026,43.003421783,43.016675253,43.016618647,42.995608576,42.988066488,43.01667106,43.013002955,43.013438808,43.01232353,42.987684371,42.995378934,43.012756357,42.988066488,43.002802124,43.018427417,43.013055419,42.988066488,43.002513779,43.960580604,44.796981094,null,44.79537511,null,42.600189222,42.601126209,42.596664024,42.584805157,42.609547448,43.285595981,44.531960446,44.527045051,44.522324287,44.528849755,44.502392543,44.533864234,44.50015537,44.528856342,44.527453818,44.508170908,44.518375983,44.525610699,44.516806942,44.522376108,44.522490605,44.527962162,44.523451287,44.528849445,44.501155909,44.533061928,44.51453488,44.527816046,44.515895138,44.522840677,44.523495587,44.527916869,42.670029952,null,42.665861578,42.683508634,42.669848426,42.670170787,42.664123295,42.671692148,44.372395706,44.381590265,43.113633868,42.60998852,42.613600907,44.184449948,44.18155998,44.160024456,44.177217564,44.175935732,44.156624131,44.175786285,44.185939862,44.189109762,44.160044114,44.182072357,44.156485907,44.174851567,44.174601089,44.177045878,44.185715798,44.190250231,44.185123221,44.177100094,44.174268063,44.182495584,44.208354188,44.197542604,null,44.204702325,44.202000022,44.22246005,44.223506556,44.221013866,44.215897339,44.213003099,44.039409672,44.039283994,44.03854667,44.175894802,44.00428669,43.977180774,44.165066396,44.261934432,null,null,44.258164828,44.280268924,44.264119043,null,44.258497082,44.243943284,44.247621381,44.263079537,44.294476692,44.285953839,null,44.256658173,44.256258229,null,44.261886772,44.237030947,44.243901406,44.261840563,44.258155958,44.261934432,44.26218876,null,44.241623279,null,null,44.258612502,44.262518556,44.265781919,null,44.254709457,44.269298107,44.261641544,44.27501966,44.261881585,44.316442687,44.247050811,44.258683977,44.274878982,44.261902762,null,null,44.28734018,44.272832222,44.286288227,44.261935082,44.262169952,44.261816741,44.258163244,44.258421121,44.264022898,44.288524876,44.243965199,44.273950763,44.242788614,43.427561469,43.470838682,null,43.25088585,44.807971558,44.798768423,44.800465997,44.796825752,44.781125331,44.792083761,44.779264524,44.815587914,44.80210217,44.823759349,44.812300877,44.812825812,44.794380201,44.806964669,44.798768423,44.824636766,44.799356248,44.816184031,44.796970316,44.812294746,44.79324981,44.816045583,44.788377146,44.80685964,null,44.831250517,44.803735099,44.811464965,44.775306943,44.800952306,null,44.825744841,44.844257041,44.820543344,44.798225572,44.804551676,44.796970316,44.677018399,44.709084656,44.70908483,44.315485554,44.321007299,null,null,null,44.788288039,44.761563171,44.78018153,44.783025636,45.073939044,45.081210824,45.099962099,45.100190686,45.092895436,45.088094076,44.460379568,44.344519879,44.357734193,44.357601239,44.55842411,44.609145924,44.610865035,44.356089254,44.374530792,44.374538875,44.387377945,44.387426692,43.627687671,43.625846451,43.62762183,43.627763915,43.850525793,null,null,43.214781217,43.206644225,43.206932802,44.12067884,44.108189503,44.082106798,44.085465012,44.119414369,44.095949482,44.073337532,44.083188344,44.078248705,44.095488255,44.086326575,44.085543376,null,44.088893973,44.103623806,44.106142091,44.104842993,44.110000944,44.088936822,44.075858505,44.085434034,44.082262544,44.081058516,44.079865759,42.998232929,43.004764439,43.014673688,43.020534876,42.999711897,42.988696398,43.002020948,43.048072279,43.009029717,42.988746208,43.029046294,42.988348448,43.011716192,43.015279277,43.028995652,43.012566829,42.983237791,43.020712852,42.988154351,42.980388772,43.036165552,42.981699494,43.002928203,42.988272507,43.009817241,43.012445344,42.993450743,43.011049318,43.016893237,43.010501145,null,42.993261277,42.984888977,43.054047221,43.137489457,43.009267231,43.036707446,43.099811473,43.163089534,43.070658011,43.049054105,43.13375047,42.946800801,43.093109184,43.098502506,43.110214303,45.063527531,45.68508905,45.690400518,44.179282633,44.204909042,46.571339154,44.244022143,44.226599992,44.234585483,43.884245174,43.882554962,43.878161008,43.870377614,44.268574357,44.265747305,44.278714343,44.259532182,44.283470934,44.290414296,44.261043869,45.340391664,44.992588141,44.993535091,45.132484531,44.909119419,null,44.970449058,44.962702097,44.982525922,44.977012031,44.962016991,44.954283604,43.766425552,43.943225221,43.926642188,43.93479201,45.488249816,45.494638355,45.497308639,45.495947119,45.475233716,null,44.842764779,44.854180369,44.854136037,44.882108262,44.857379343,44.854180369,null,null,44.863877973,44.87548535,44.908434779,null,44.879948426,null,44.898597712,null,45.183636625,45.185590951,45.189268082,45.126913304,45.083401028,44.843003805,44.835218763,44.830603432,44.84196672,44.833425983,44.834498048,44.831518189,44.834877476,44.835050993,null,null,44.972356384,44.980706208,44.962068483,44.959302678,44.969741109,44.956430155,44.96669863,44.959439906,44.946785801,44.958145855,44.955851587,44.951200488,44.94004498,44.965528968,44.959427749,44.959356729,44.955115708,44.951989123,44.955090866,44.959807747,44.962787597,44.958397219,44.959764131,44.974241146,44.961483551,44.960365242,44.977048341,44.980854697,44.987147561,45.373313773,43.629168399,43.33316025,43.503021229,43.568280138,43.969226837,43.948875554,43.178497848,44.352219743,43.067631086,43.07667878,43.076100584,43.075128081,43.076881335,43.074136569,43.075168155,43.077144142,44.287050019,44.305121741,44.345097008,44.32134891,44.247201477,44.256951199,44.294548957,44.291062159,null,43.976810084,44.000975409,44.000972709,44.020008009,43.981562214,44.273082775,44.274261647,44.273213545,44.258616096,null,44.273097156,44.273072656,44.262915256,44.301892351,44.273153913,44.260305189,44.272647677,44.256477451,44.258590695,44.275500367,43.177787165,43.186431762,43.178457373,43.046583771,null,45.63806528,45.634360534,45.663504151,45.641368116,null,44.285423991,44.26072213,44.260672065,44.283585006,44.260725042,null,null,44.022148208,44.038247714,44.013236031,null,44.03516055,null,null,null,null,null,null,44.024930201,null,null,44.041322452,44.039274596,44.015877457,44.021069999,null,44.020573761,null,44.009536306,44.02120602,null,null,44.040486128,44.013249122,null,44.044101763,44.032660914,44.010871218,43.981190555,44.059786462,null,43.07457097,43.076900868,44.809404556,null,44.935880862,null,null,null,null,null,44.859359104,46.592119513,46.58824499,43.17696894,44.613675731,null,42.780344224,43.833904362,43.799099956,43.309518111,43.307096507,43.321534026,43.320563309,43.320432807,43.318794404,43.319935665,43.308470147,44.358915236,46.012665209,44.586138681,44.385589753,44.303848268,44.28628313,42.58661379,42.602746302,42.581633825,42.586879539,42.588755715,42.560890287,42.570674751,null,42.600257874,null,42.594234468,42.606546159,42.611408402,42.57656912,42.586504334,null,42.569481472,42.578952913,42.576292721,42.629608402,42.567073494,42.580129397,42.58799853,42.566255986,42.580115437,42.591208529,42.609546717,42.551688187,null,null,42.558629565,42.591232546,null,null,42.551686676,42.571725177,42.567252196,null,42.595664757,null,42.581674804,42.627118105,null,null,null,42.624309748,42.589069916,42.563845185,42.580701059,null,null,42.589934297,42.57869389,42.588013322,42.577170139,42.567939437,42.561180115,42.58837308,null,42.599596053,42.595401855,42.589077002,42.56582236,null,42.577809628,null,42.558513874,42.582166218,null,42.576498754,42.576484065,43.913223815,44.930492433,44.916684782,44.906014796,44.85519803,45.075833586,43.813619058,43.320566694,43.474174352,43.385007644,44.453561512,44.453709286,44.459849891,44.482815806,44.47153614,42.738259704,42.677031407,42.741301087,42.682413396,42.588930976,42.518627246,42.635842855,42.70789171,42.729976654,45.298246774,45.387805847,43.539632513,43.532681607,43.430397207,43.477381636,43.525209375,43.278791733,43.29292268,43.562183109,46.013700293,45.983463301,46.713452992,46.720553916,null,46.713373331,46.724328889,46.677772155,46.732488208,46.713412365,44.959164749,42.532044029,null,null,44.153653714,null,null,42.634171596,42.58399847,42.622448406,42.652547764,42.800064027,42.78727,42.627556049,43.11052525,43.128413007,43.126363817,43.081544657,43.094821055,43.103702554,44.875648224,44.955263559,45.205749732,44.913023393,44.676275543,null,44.666476099,44.670735798,44.661024448,null,44.343856572,43.084962257,43.088378706,43.083409634,43.071523177,null,44.319740444,43.300866213,43.299449546,43.293949018,43.282450212,43.013441674,43.013750142,43.013279449,46.503070488,null,42.962848457,42.959054723,42.960678269,42.959398491,42.973621977,42.966387801,42.959276514,42.961018436,42.973922856,42.953857377,42.966436971,42.966411827,42.944893745,42.527196052,42.508564735,null,42.493141986,44.46745159,44.378220973,44.657054613,43.971418406,43.971432282,43.129927582,43.129577649,43.118852546,43.103984295,43.11899296,null,null,43.118570245,43.118707679,43.125269497,45.128381505,null,45.118200768,45.10438251,null,null,null,null,null,null,null,null,null,null,null,42.933185881,42.944714075,42.939148545,42.937669569,43.633209368,43.633202297,43.633201799,43.628020669,43.057411268,43.036678497,43.03238213,44.916777087,45.181739084,45.177651086,43.453492047,43.098301463,null,43.469084842,43.478142005,43.47183989,null,45.865043598,45.877522189,45.877274936,null,42.908965982,42.915346361,42.910531332,null,42.910815236,42.903557852,null,42.911489101,42.927810931,null,43.021224778,null,43.016680969,43.021194265,43.021100346,43.002941915,43.016894976,43.020771297,null,null,42.719610028,42.721171622,42.697489267,42.700374799,42.72176105,42.717242813,42.736566173,42.752110854,42.682150327,42.701684308,42.691250238,42.71956366,42.718715117,null,null,null,43.88707348,43.797379054,43.797028602,43.791787621,44.241716809,44.951462768,44.941318277,44.936604705,44.937458992,44.939959597,44.933558214,44.936670499,43.792184797,43.382837826,44.888125143,44.886392106,45.295937107,45.310974832,45.311548502,43.532076058,43.539703322,43.539708633,43.536450947,43.532504481,45.170627076,44.760931399,44.755017818,44.844043481,43.585760246,43.586865891,43.612553281,43.615409657,43.600947279,43.588855118,43.586170304,43.575766638,43.614796645,43.595738708,43.589012403,43.589391811,43.581190817,43.589171746,43.615229356,43.607388589,43.615496256,43.591908676,43.596251158,43.589267126,43.613642828,43.601015604,43.607736232,null,43.003162304,42.985749614,42.983565336,43.016704127,42.944277533,43.060495493,43.059858941,44.292088977,44.575492679,42.539195591,42.543730287,null,null,42.959757086,42.973720204,null,45.059550329,42.603474803,42.98524612,44.905663243,44.90471221,null,44.894278403,44.904586792,44.9691057,45.450251126,45.322372166,43.185312043,43.092057484,43.252663566,42.914706816,42.916801747,42.920606524,42.918332087,42.94008377,42.91856801,42.923431141,42.917358928,42.930019265,null,42.930187531,42.946586718,42.959109255,42.959084016,42.959124828,42.939799301,null,42.959128541,null,43.220637551,43.193495054,43.221054236,43.195572373,43.191905096,44.025182376,43.400272265,43.199961105,43.404277437,43.42121418,43.457542973,43.443186501,42.9911631,43.003648059,42.99149096,43.003249401,43.001566386,43.005483148,43.191705788,43.19175211,43.184287114,43.341021029,43.318211356,45.976634553,45.984662961,42.715493012,42.712379616,42.736368401,42.745799198,42.691239277,42.750434787,42.709843818,42.758261294,42.716237217,42.731553959,42.718551648,42.718533073,42.71005403,42.712292558,42.71870857,42.712549122,42.718416753,42.725975435,42.737768309,42.709488159,42.725975812,42.709141121,42.726861278,42.718991035,42.735504637,42.710359287,null,42.718803227,42.747717757,42.718601341,42.718474359,42.710740514,42.712434104,42.714244841,42.721343818,42.734439291,42.718865285,42.745729893,42.715441045,42.733250334,42.742298505,42.745258749,42.731757765,42.726300367,42.695855759,42.698588503,42.7495517,42.736947359,null,42.720699473,42.708646274,42.735487094,42.726875287,42.735511203,42.735558437,42.725958156,42.704322449,42.706773885,42.719402784,42.725990509,42.712478594,42.715501081,42.722553644,42.744702908,42.714244841,42.735490114,42.731778703,42.700752207,42.730197973,42.705375608,42.679220959,42.678003153,42.730871645,42.69047482,42.676988099,42.679325765,42.649870425,42.678841892,42.700707219,42.680104064,42.679437279,42.679340276,42.695690736,42.693758358,42.658902869,42.679604249,42.69019134,42.663995457,42.695414195,42.700122298,42.686813731,42.672193998,42.696607707,42.694145235,42.699738814,42.716093959,42.682873009,42.686659269,42.683632836,42.693537876,42.679437279,42.591757927,42.593700954,42.567538381,42.596789808,null,null,null,null,43.96816109,43.958940872,null,43.524178382,43.513147903,43.317988586,42.501759322,42.524096278,42.512429364,42.49867903,42.512862695,42.512664785,42.499644913,42.50009015,42.499295332,42.511057093,null,42.498668739,42.499020342,42.503565612,42.524213157,42.510835138,42.545651154,42.503950452,42.835883202,42.918925567,42.936112965,42.929108772,42.925048964,42.873381623,null,43.007474038,43.013629955,44.523145832,44.6282,44.492504131,44.664273666,43.339726599,43.33780433,null,43.33347306,42.899984776,42.926066441,42.917014942,42.899301029,42.857419623,42.908272463,42.865702335,42.79986145,42.769750594,42.791302552,43.239339693,42.680594861,42.687817095,42.682101954,42.679132524,43.105713747,null,null,44.029458077,43.066068823,43.01488111,44.074707218,43.986671141,43.189167538,43.196449145,43.193847282,43.206516124,43.194769284,43.193661861,43.194477405,43.194520512,43.192522629,43.193083936,43.193963322,43.189696184,43.19819897,43.331446656,42.623063179,42.628564687,42.640341809,42.62754824,42.623063179,42.631200591,42.630849936,43.081925782,43.319500382,43.310619626,43.317639885,null,43.317611805,43.50110129,43.426547715,43.423344943,43.412292491,43.427092117,43.434237917,43.401318555,43.393419198,43.39720546,43.422689444,43.397446257,43.419723326,43.398025111,null,42.827336425,42.834972022,42.839767147,null,42.838965637,null,42.834992729,42.834972307,42.933758121,42.94904198,42.939553441,42.93744278,43.758567278,43.778027641,43.761043549,43.769067262,43.764542292,43.699861636,43.756375356,43.739931133,43.75365673,43.735858294,43.72794738,43.756332867,43.749793351,43.765343503,43.743125946,43.738327687,43.724234132,43.759630097,43.778266585,43.756352056,43.756474129,43.754425723,43.739933571,43.728851016,43.768374159,43.756304742,43.747377615,43.745713667,43.772992,43.761807,43.776929732,43.716752892,43.755775046,43.749046142,43.702686801,43.760755681,43.756355751,43.745376255,43.761747827,43.864897572,43.572208793,43.732228679,43.646567766,45.140483112,45.141037729,45.16124167,43.459482783,43.472353679,43.449370957,43.481379603,43.452806937,43.474064038,43.456130946,43.456256006,43.460644405,43.454118763,43.457250767,43.456320322,43.466162841,43.075027419,43.016723452,43.089161592,43.053952639,43.104709914,43.104687583,43.088681099,43.074969459,43.080061555,43.061537676,43.089659333,43.057630532,43.060455996,42.941142134,42.925845398,42.933841444,42.931681163,42.922525045,42.929873103,42.93110442,42.91686097,42.513696018,43.00451899,null,45.141113692,45.140484317,42.814507498,43.746343397,43.748815951,43.756826542,43.387005782,43.388035643,43.41052215,43.397701632,43.38989148,43.407822738,43.387566602,43.568093335,43.539102184,43.539916267,43.538797291,43.563296702,43.545355561,43.563248349,43.558196468,43.728795407,45.485388307,45.462790311,45.481799064,42.611293852,42.779735593,45.39691183,44.96721506,43.050331293,43.085679892,42.621228274,45.925415076,44.038207781,43.099431743,43.108966941,43.120083371,43.025244291,43.017032741,43.012519895,43.003170399,42.959153609,43.042733,42.973710176,43.0483053,43.093691366,43.107036607,43.037341975,43.045556316,43.07107443,43.06424723,43.071965879,43.05519136,43.089290634,43.107479074,43.119180433,43.121531037,43.003091648,43.023224961,43.023212263,43.044989504,43.041484203,43.104988847,43.126570263,43.119238743,43.070494891,43.073190837,43.022997485,43.006673754,43.012437911,43.023925185,43.059110559,43.077882243,43.089779694,43.077692451,43.05516636,43.060091224,43.037351297,43.087203039,43.141605259,43.11927197,43.089276957,43.083475699,43.06018974,43.072249524,43.075662396,43.100761613,43.111265687,43.087409227,43.038811922,43.074640175,43.06754617,42.973937724,42.993773414,43.073379965,43.08996294,43.038703155,43.052522796,43.089482762,42.987922731,43.06414491,43.050017683,42.983927278,42.988181368,42.993696431,43.045729806,43.023368697,43.022359102,43.021063751,43.077630378,43.022993498,43.014481425,42.999145086,43.090063807,43.11195731,43.067912081,43.031786116,43.044546542,43.055211,43.067913385,43.060638285,43.052987996,43.0856901,43.070065104,43.045736641,43.045697128,43.033844256,43.081858021,43.038805804,42.985640936,43.051723656,43.093799521,43.089512079,43.082618971,43.090008125,43.071526324,43.07602173,43.059364055,43.055815541,43.072959523,43.05984551,43.067871053,43.076890613,43.072950599,43.05516636,43.082106358,43.049985969,42.995546188,43.094613523,42.944624487,42.93026634,43.108208283,43.068025731,43.10766088,43.075197814,43.081526307,43.081973217,43.078620129,43.077242047,43.073370875,43.071311979,43.056282685,43.038793984,43.098851317,43.090474637,43.111181714,43.089873085,43.075380434,43.06018974,43.078673412,43.058448731,43.002856229,43.025744401,42.988179859,43.066619038,43.061636887,43.177538211,43.117042185,42.952494545,43.104558138,43.045736986,43.072838929,43.079656492,43.037098576,43.059483087,43.075347125,43.026009627,43.063448409,43.054646186,43.1777123,43.16306105,43.068271613,43.045021325,43.003170399,43.021368537,43.075276175,43.016949928,43.021532223,43.019034904,43.005698791,43.012400345,43.020161946,43.043231215,43.061750877,43.067911012,43.067801396,null,43.071009006,43.062032596,42.981058958,43.060617223,43.067537,42.988289288,43.082533407,43.07536501,43.142836792,43.118088573,42.996741332,42.9376178,43.002936469,42.999206948,43.043611711,43.03843016,42.93758284,43.089815247,43.039029628,43.037910167,43.050667071,43.089802843,43.080239064,43.009236157,43.114826511,43.118221261,43.100855997,43.083987342,43.104624547,43.045868424,43.04573,43.10403619,43.089406543,43.074817159,43.060176909,43.074720192,43.113885913,43.029154278,43.03091303,43.071485721,43.017047252,43.022196462,43.02224482,43.019046068,43.020630108,43.019770114,42.981204723,42.986479269,42.988444357,42.988322248,42.981259285,43.093353859,43.08180333,43.086591315,43.079304189,43.075132632,43.082336953,43.089640578,43.033328196,43.04665555,43.036819857,43.06933563,43.036023112,43.073145642,43.075321434,43.12086748,43.11937032,43.114577035,null,43.052854274,43.06800061,43.076118083,43.111682859,43.020372843,43.016024304,43.089641434,43.025998604,43.025418851,42.957512272,43.101156249,43.083574692,43.075016156,43.074310075,43.019021756,43.016982612,42.995802062,43.060115887,43.038967591,43.072893597,43.03741815,43.049358368,43.043171832,43.044694023,43.052979953,43.03913993,43.045857007,43.160431431,43.002612619,43.024117191,43.104497565,43.082533407,43.074771856,43.006544682,43.006053496,43.077013986,43.012892723,43.016983355,42.99577844,42.995569805,43.10356072,43.104982946,43.098594802,43.07349235,43.043175045,43.0319126,43.030170592,43.132689847,null,43.112994879,43.119826212,43.119249933,43.134149889,43.067913385,43.060305632,43.020033829,42.983180182,43.038746414,43.06052438,43.177811743,43.104628215,43.042864193,43.038507677,42.992542928,43.060675901,43.058925765,43.03973051,43.038703155,43.053924203,43.104558138,43.059004163,43.089815205,43.002515415,43.030272796,43.067688591,43.081675302,43.038798725,43.05298827,43.050586002,43.038575123,43.088693387,43.093211345,43.101499047,43.082612921,43.004516248,43.010245347,43.008295385,43.006439877,43.017093811,43.083629813,43.008597981,43.005336253,43.004748072,42.948116999,43.036111078,43.037403274,43.057291685,43.071896711,43.038655087,43.111267234,43.097387474,43.039268443,43.089939129,43.069744634,43.078728262,43.017059067,43.111918666,43.03755282,43.060134118,42.988180821,42.988367956,43.066748468,43.148584523,43.037463898,43.075327476,43.072838929,43.075276175,43.050859991,43.025746895,43.022438041,43.012823865,43.030623896,43.060600701,43.044437444,43.039692613,43.072398497,43.112104867,43.060616113,43.049991737,43.075054095,42.988292606,43.085622553,43.080296595,43.08940278,43.082033986,43.0850523,43.089262486,42.985672801,43.104786185,43.118626983,43.040209599,43.03997691,43.07505579,43.08379518,43.075207816,43.067849986,43.026009627,43.04322877,43.06774664,43.082075804,43.073086908,43.089663075,43.07599888,43.071124872,43.087970621,43.088067453,43.074760718,43.067566159,43.071485536,43.089777373,43.062447757,43.006408505,42.988450476,42.988120625,42.973848453,42.9882114,42.95918938,42.959035425,42.974364204,42.959291214,42.979915594,42.958996959,42.959329567,42.98493882,42.997441095,43.002824504,42.993773,42.989117113,42.981059485,43.141405546,43.147151985,43.11272357,43.127207605,43.119405127,43.159722304,43.153466591,43.184253868,43.134151052,43.117236372,43.131857327,43.129746587,43.137824747,43.111852622,43.134146507,43.022987318,43.014052471,43.017028563,43.012483622,43.023327635,43.012304349,43.057773545,43.034752275,43.066077535,43.029774556,43.060506,43.067502422,43.053639424,43.089822235,43.002897286,43.061235101,43.148508023,43.028563133,43.067022508,43.064206912,43.049358368,43.062136878,43.060615022,43.038703155,43.041576016,43.048620698,43.03881159,43.027625426,43.038502861,43.067911693,43.142659612,43.048577825,43.073406506,43.085023076,43.108124451,43.089961441,42.988572713,43.123183686,43.034873185,43.052515416,43.068613763,43.075208028,43.118891267,43.088113926,43.012375692,43.021614304,43.003139724,43.023000068,43.012304433,43.022438041,43.009790375,43.002990433,43.015884601,43.022438041,43.003101019,43.022517007,43.079007306,43.070900488,43.071144969,43.085921102,43.075226173,43.042633171,43.052941634,43.052842019,43.037377683,43.034664552,43.042939665,43.07228507,43.04437509,43.037554093,43.037303668,43.045751606,43.066151013,43.067022743,43.04056885,43.03881159,43.045023825,43.038703155,43.049364148,43.056424056,43.042404798,43.038811445,43.040175479,43.045733355,43.064718874,43.10394616,43.070360109,43.089951199,43.09002282,43.102744954,43.104629964,43.08997439,43.110168681,43.104988268,43.071556696,43.095301779,43.07523471,43.17529928,43.96479948,44.10362177,43.867105599,42.670577496,44.341890771,42.785209987,43.005406811,42.506802023,null,43.633120235,43.860353733,43.860349436,44.021726504,44.771107837,45.180871705,45.820509187,44.928513699,43.93557629,43.880467165,null,43.152568604,43.04024534,43.041619638,43.036119364,43.043111147,43.040361693,43.038692407,46.812552279,43.038562851,43.021939821,43.062098798,43.048048697,null,43.138144942,43.076907325,null,43.055008673,43.015829408,43.067484961,null,43.067758343,43.07195579,43.063078539,43.060704337,null,43.092461781,43.047296912,null,43.050169645,43.051953124,43.075030808,43.04431755,43.068962756,43.085656068,43.040090442,null,null,43.092461781,43.11008031,43.062065597,null,43.053838634,43.050310997,43.041652631,43.063063944,43.031785737,43.123903211,43.073273823,43.123772202,43.078693324,43.08945738,43.077744673,43.066963809,43.041657652,43.034629436,43.072118391,43.073456883,43.088896948,43.100423539,43.129141041,43.067971319,43.074941482,43.075467255,43.055560182,43.140538891,43.073293594,43.064786565,43.073356606,null,43.026915882,43.071077965,43.103243819,43.095489272,43.073266765,43.07203134,43.073211664,43.078510399,43.125175362,43.126287519,43.135887452,43.12137194,43.083158727,43.050310997,43.073644891,43.117277728,43.073373687,43.081994879,43.02646303,43.067692707,43.064020776,43.098886866,43.103507213,43.124301885,43.062175987,43.114290977,43.062019427,43.067692707,43.073314976,null,null,43.041676238,null,43.073151808,43.071061934,43.072271181,43.076907372,43.07159633,43.064518703,43.070087324,43.081970574,43.072802321,43.049202179,43.015698466,43.074743671,43.039913675,43.122881264,43.091849449,43.079092564,43.067792103,43.072121629,43.070862079,43.072271181,43.054035905,43.118895258,43.103539448,43.087952759,43.07544769,43.073262571,43.044358507,43.039163441,43.05756743,43.094171333,43.035271294,43.073373942,43.073013058,43.049873897,43.128299495,43.123955297,43.051520431,43.098812934,43.130913542,43.098450556,null,43.032801402,null,43.078227932,43.074649509,43.060886694,43.070962994,43.070991879,43.04917022,43.051555816,43.056585723,43.030733359,43.070184501,43.06057492,43.044097986,43.121055704,43.084880182,43.089966355,43.133881748,43.116214588,43.13589731,43.11892453,43.091083199,43.054350734,43.076988159,43.046261691,null,null,43.074015681,43.130518351,null,null,43.100001505,43.135858038,43.133173417,43.091994525,43.030627407,43.120996577,43.063038502,43.048218868,43.067733665,43.103550833,43.117324253,43.0885683,null,43.080625021,43.11789368,43.068767333,43.088413239,43.074813252,43.085770562,43.073488898,43.077687265,43.076049313,43.072062155,43.076709755,43.071762773,null,43.074678923,43.073186751,43.128825851,43.076609993,43.07765176,43.073488898,43.075878585,43.069212993,43.087211823,43.076137033,43.079526425,43.073442817,43.072239062,43.106255301,43.177357292,43.010441027,43.059508596,42.914459229,43.122560148,43.151582512,43.208546083,43.174259803,43.004232962,43.051535451,43.177286826,43.174648746,43.187502535,43.198715014,43.160827114,43.176095263,null,44.51335316,44.51767933,44.504106937,44.50254675,44.518283218,44.523279695,44.493081513,44.500617588,44.514696456,44.495635631,44.516763674,44.515624576,44.513750076,44.503271501,44.510926437,44.514353701,44.510789805,44.513821829,44.512480463,44.534272469,44.524352012,44.491653251,44.534436641,44.502077794,44.481371106,44.513125153,44.521369476,44.509582263,44.509703137,44.516825637,44.516171083,44.493695565,44.512421187,44.521449304,44.51462284,44.513109433,44.512318417,44.50444249,44.494519648,44.513590739,44.519213168,44.503318292,44.508044255,44.516550342,44.521456208,44.523787501,44.521457069,44.530401734,44.52990523,44.519630762,44.488901351,44.499962151,45.455490479,43.752635661,43.787970451,43.796700328,43.788849767,43.783641796,43.786574903,43.784217834,43.776804829,43.782772214,43.786349873,43.786136842,43.785370906,43.78444383,43.774332381,43.783552088,43.761111562,43.765609458,43.783067089,43.77879677,43.765609458,43.774819095,null,null,43.778674023,null,43.791982659,43.782317885,43.784284762,43.78345765,43.783787093,43.778819241,43.783552787,43.791585003,43.775947571,43.780712075,43.784044149,43.77500113,43.77879677,43.776156,43.775179099,43.760824898,43.764164355,44.24356955,43.916164883,44.226785223,44.179516023,44.243315858,43.789671092,null,43.81615934,43.809957539,43.823144174,43.841389376,43.85770283,43.832984665,43.842759409,43.806968923,43.843074532,43.811647483,43.795206962,43.796047902,43.80974466,43.818619663,43.790652992,43.800340767,43.769597985,43.811686267,43.812833108,null,43.829167444,43.841335857,43.817187732,43.812729818,43.812754016,43.824484166,43.812330416,43.772024737,43.778893264,43.812828493,43.843074532,43.837261874,43.818385054,43.794304036,43.821261757,43.798499043,43.756460811,43.817350409,43.836971033,43.817137422,43.792051128,null,43.813217104,43.811673653,43.778733401,43.852804786,43.817292957,43.818448673,43.808838552,43.8057556,43.806695,43.851000095,43.809992011,43.815187129,43.812733723,null,43.809988715,43.788251473,43.811107555,43.833373038,43.783287841,43.797956239,45.099046569,42.611989,42.66421435,42.571454578,42.510210666,42.624833181,42.603242234,42.629857282,42.611887732,42.580703823,44.486233033,44.480284892,44.493597517,44.48454523,44.541866073,44.588602571,44.590582398,44.570110505,44.535124194,44.562132822,44.576385012,44.59163082,44.472706877,44.481502095,44.291989464,44.439968664,44.346908012,44.490302402,44.507322218,44.476011417,44.489527653,44.488086701,44.475872829,44.497894641,44.492922966,44.48721838,44.493773264,44.468856845,44.430635061,44.438897646,null,44.4554277,44.445559123,42.97328563,42.961782248,42.964764113,43.075793028,44.670936415,42.735727672,42.735729758,42.736125091,42.729684925,43.043964118,43.939184433,43.939435796,43.947830144,43.937453642,42.555282593,42.615719006,43.555341586,43.560298714,42.577263266,42.576680713,44.180355143,43.09684873,43.10423818,43.095216395,43.082747236,43.090133611,43.101168346,43.102748982,43.030731478,43.015343475,null,43.01547118,43.02941662,43.030748051,43.027266404,43.024348987,43.015255052,43.01042631,43.007057436,43.015421802,43.023651796,43.016915804,43.017993318,42.996310927,43.001201739,42.930041624,43.044074907,42.947895932,43.042352044,43.044064374,43.058466264,43.041183472,42.975502542,43.044364246,42.928906727,43.050984488,42.902698667,42.885179174,42.889252138,43.166986574,43.173839542,43.130060338,43.164110718,43.17922111,43.164616173,43.148436397,43.19226751,43.171535341,43.167042451,43.179581627,43.192580565,null,43.047905619,43.047426458,43.075893837,43.043958864,43.043987815,43.060567767,43.060512742,43.056554994,43.052412086,43.085704412,43.039579286,43.050683505,43.074634474,43.061104786,43.085702237,43.060512732,43.060744503,43.051261619,43.054041223,43.035251822,43.06615816,43.045945251,43.035157074,43.061996395,43.060553645,43.057627286,43.017722005,43.02376107,43.015058765,42.998020557,43.014243792,43.022366008,43.016655255,43.013120324,43.017039389,43.01180985,43.01553956,43.010946089,43.01594573,43.016602058,43.013478163,43.016602058,42.988276684,43.016706741,43.016411886,43.012321194,43.005818111,42.994368223,42.997739155,43.012756357,43.014026076,43.002747644,43.016585445,43.016580368,43.005538948,43.016527927,43.010268557,42.988297856,43.016503804,43.023939959,43.016342348,43.016707822,43.002708137,43.016339926,42.9884885,42.995368608,43.016753888,43.002877196,43.016206568,43.016706741,43.006054744,43.003111402,42.996789553,43.015923528,43.016602058,42.995210161,43.016862196,43.01658751,43.023908761,43.016593417,42.996087447,null,44.799208782,44.80642467,42.603509204,42.587801887,42.600573927,42.603143699,43.296866883,44.517694802,44.520288543,44.532123838,44.508600337,null,44.523426354,44.514580987,44.519483475,44.519656742,44.522528492,44.544536591,44.527957399,44.527112285,44.512327367,44.525239558,44.527089028,44.520288543,44.528753791,44.523513172,44.52264692,42.67209187,42.670293807,42.692409304,43.113742828,42.611800529,42.615410455,44.189138975,44.171024494,44.175166631,44.175801366,44.187180541,44.160513163,44.163674737,44.191634995,44.177191174,44.171002719,44.187828359,44.184869832,44.170953597,44.210704526,44.204703206,44.204417828,44.21022704,44.209458919,44.197579043,44.20195877,44.202942621,44.225983764,44.231258299,44.202020453,44.218231876,null,44.078806,43.923729896,44.094758662,44.26773563,44.254762405,44.262930624,44.242733942,44.243915728,44.270413477,null,44.261934432,44.27298492,44.267993434,44.25472534,44.261896773,null,44.29459262,44.243963221,44.240714063,null,44.260285167,null,null,null,null,44.256319784,44.265650659,44.261934432,44.260326543,44.288864336,44.27467322,44.244016179,44.284128725,44.287271584,44.272982977,null,44.265727145,null,null,null,44.299089534,43.501906302,43.527276213,43.226906989,43.236795347,43.30058324,43.399809115,43.372484448,null,44.850724995,44.812485343,44.799570937,44.79496727,44.816074109,44.833498456,44.80534898,44.776220456,44.802163477,44.790587678,44.820333837,44.828722537,44.80563901,44.809876808,44.804949702,44.771137065,44.800277092,44.81935479,44.806579924,44.794494358,44.804998727,44.775582553,44.776099975,44.802181808,44.815730541,44.799735512,44.794995636,44.820672701,44.801518527,44.775081635,44.844276076,44.800894767,44.789275059,44.643382014,44.786116175,44.61102297,45.787067222,null,45.788960798,44.802033535,44.313265828,44.314941638,null,null,44.786758592,44.790525723,null,null,44.781531188,44.781848153,44.771033787,45.092510063,45.092757714,45.099239801,45.07497366,45.099673426,45.085370123,45.099603009,45.075451049,45.093969532,45.085327939,45.097660488,44.188722542,44.351396591,44.355835942,44.606746814,44.373046068,44.394981836,44.379514426,44.383946029,44.380300044,43.616470813,43.625050539,43.625042959,43.626974652,43.618016135,43.856541875,43.837591411,43.849592,43.855646299,43.197241965,43.240935392,43.226657455,43.22195407,44.073307974,44.085579305,44.08292477,44.085843528,44.106881575,44.075296551,44.104574253,44.083882287,44.067623138,44.07464725,44.074058712,44.072928424,44.085655448,44.079377249,44.08711402,43.012589932,43.01255359,42.988728261,43.002900533,42.99709434,43.0249554,43.006886407,43.020794666,43.002953764,43.009711673,43.012650984,43.013470534,43.020097356,42.991939736,42.980220668,43.010104428,43.013073053,43.016384229,43.023935636,42.988220117,43.012559389,43.013226124,43.010077796,43.013932988,43.133516729,null,42.988460558,43.116105173,43.049879966,43.017371638,43.119717584,43.010678011,43.112924181,42.988237927,43.128545927,43.057188758,43.074707851,43.051740526,43.036366247,43.096076234,43.089553176,45.054422158,46.207980853,46.851489615,44.19496407,44.229455671,44.237085484,44.23471915,null,43.875118506,43.875120503,43.892226237,43.903305412,44.287315706,44.281132734,44.261048021,44.295170686,44.278721553,45.134463599,45.122500557,44.974842084,44.974775211,44.962745666,43.908999075,43.924392389,43.942290953,44.055120284,45.492762793,45.479985451,45.503653726,45.474206379,44.861663177,44.862604503,44.852778948,44.871473838,44.862609663,44.870103438,44.873796833,null,44.879162452,44.877865751,44.903280639,44.871083198,44.86561671,44.861044745,45.291365845,44.961102507,45.200264541,45.06516626,44.83273607,44.835166546,44.835140753,44.837720943,44.836524519,44.649461541,44.592992348,44.9695527,44.960362765,44.950097759,44.954362347,44.954077573,44.953822781,44.971903111,44.951919511,44.976009163,null,44.983746849,44.951343695,44.960239241,null,44.954718117,44.95703036,null,44.963482141,44.959487749,44.938981706,null,44.972803285,44.951339642,44.961354624,43.552231003,43.556019199,45.401567582,null,43.782871781,43.953015114,43.899047,43.147629925,43.06215211,null,44.33779345,44.449519385,44.407632003,43.076496608,43.076451922,43.070855877,43.077396064,43.076474505,43.076793566,43.074204538,43.072258771,44.244113315,44.272874837,44.274320275,44.243896689,44.258207967,44.016651306,43.97477866,43.986620339,43.976352278,43.972863456,44.252887571,44.261860179,44.287721503,44.269360358,44.289310314,44.30182119,44.258591707,44.271554045,44.261963268,44.272978446,43.178833239,43.16640737,43.16314217,43.177602344,43.184871041,43.186421558,43.177790816,null,43.033302089,null,43.038448991,43.036609673,43.038571061,43.043342911,43.035016094,null,45.637817664,45.63528967,45.633676977,45.638732002,45.633273632,45.639869482,44.28469414,44.281812273,44.25994663,44.291991029,44.277116716,44.271425445,null,44.019655983,43.981512351,44.042301477,44.034254674,44.010766574,null,44.008970091,44.029788587,44.0549291,44.001381773,44.020209884,44.039425725,44.011039678,null,44.016595414,44.040588389,44.000501432,44.012576767,44.037121464,44.022691209,44.010524369,44.018227559,null,null,44.003576284,44.01892134,44.022149044,44.017867602,44.032100186,43.996528293,44.01077987,44.032247591,44.042751497,44.010477583,44.010869717,44.032167594,44.017872396,44.032163436,44.039836098,44.01323727,43.076986309,43.073527187,43.077750112,43.075419911,43.075309979,43.077728185,43.07530632,44.735260286,44.851214699,null,null,43.120542674,null,43.105898298,43.118524589,43.115981795,46.600416878,46.59508574,44.97449394,null,44.626672187,44.622697211,null,43.807818024,43.696139728,43.755199275,43.599356825,43.308759503,43.30882605,43.32002732,43.320243669,null,44.298205371,44.298205371,44.322452963,44.28648921,42.57537815,42.588064022,42.581180161,42.584858925,42.566315405,42.591360381,42.577669473,42.595555021,42.579705186,42.565667008,null,42.568842275,42.580903011,42.58811981,42.58058786,null,42.588265057,42.572348706,null,42.581255154,null,null,42.619055299,42.613379125,42.565617996,42.626275828,42.603713989,42.58824129,42.598357535,42.590284868,null,null,null,42.585998231,42.573736874,42.602874412,null,42.583603881,null,null,42.595674716,42.564473813,42.581180161,42.550724358,null,42.588000649,null,null,null,42.606163235,null,null,42.588428357,42.588499634,42.566346522,42.588013051,42.551688187,null,42.585005401,42.579054237,null,42.585568761,42.580914749,null,42.569311506,42.628228971,43.918745537,44.930479098,44.920230865,44.988144391,null,43.295520301,43.381619537,43.439116029,43.207126817,43.38482957,44.459798046,44.450302758,44.464746863,42.676815396,42.712391427,42.691641675,42.833078044,42.738811787,42.741333518,42.680083968,42.586777406,42.58562851,42.631707426,42.786062096,42.602633694,null,42.807599927,43.638742285,43.475064302,43.47501529,43.637323298,45.407306671,46.713716716,46.720680276,46.719314952,46.726595671,46.71405342,46.693822268,46.720809851,46.719884306,46.695536169,46.702597451,46.718805872,46.709326389,42.536305509,null,44.15366187,null,null,null,42.706284672,43.100953927,43.100558484,44.813954893,44.358785368,44.307077788,44.663629085,44.666137372,null,44.669770277,44.669943491,44.667297109,44.668220709,44.686710286,null,null,44.672450731,null,null,43.087560034,43.083421039,44.318938108,43.296635597,43.296662672,43.290906873,43.01875396,43.025746785,43.025721849,46.450335,42.959175095,null,42.952142484,42.961077067,42.959094873,42.956697362,42.96637391,42.959134541,42.930386897,null,42.964328778,42.959271247,42.958038219,42.967631193,null,42.953285089,42.950431217,42.944889712,42.959333114,42.987179157,42.959407639,42.958807685,42.963857227,42.96149313,42.952024832,42.552476882,42.507461067,42.567006765,42.522309978,42.507626946,null,42.533998588,42.559785029,42.566639768,44.445066865,44.390262734,44.440561811,43.780140528,43.118706413,43.118666036,43.126216187,43.118891028,43.11864613,43.130146402,43.10074054,null,43.114088,43.118667845,43.100085264,43.115798154,null,null,null,null,null,null,null,null,null,null,null,42.944672288,42.951774074,42.931915793,42.948263153,42.93025518,43.963504188,43.968473611,43.963043746,43.63325218,43.63267324,43.042277934,44.946855108,45.180776002,45.18156473,43.450311315,43.093929471,null,43.090993897,null,43.089739681,43.091775058,43.098486311,43.089159018,43.089071819,43.084213784,null,43.089209683,null,43.089116474,43.481251059,43.468872472,43.474804724,43.472290848,43.467358912,43.470889318,43.470889318,45.887464562,42.628987068,42.901632422,43.013586418,43.021081997,43.016900916,43.018523166,null,43.011950131,42.736214862,42.736572336,42.745281949,42.708355525,42.737287231,42.733298756,42.719308346,42.721086911,42.662224488,null,44.388341976,null,44.252023145,44.241151604,44.939564821,43.67100715,43.381192569,43.383684233,null,44.706026177,44.880138284,45.30700801,45.30969506,43.532482147,43.532504481,43.575545006,43.609237806,43.573647125,43.613290674,43.614876105,43.585589245,43.5858193,43.589246133,43.588902848,43.603891954,43.601015604,43.613936358,43.595224713,43.009978975,43.010138222,42.939491753,42.989858366,42.951606037,43.014446129,42.986345788,42.976999228,43.068986074,43.048988104,43.048881996,42.960576668,42.959114467,42.977826643,null,44.925387273,null,null,44.897326087,null,44.92047516,44.899251833,44.905487987,null,42.917021281,42.917908351,42.959156886,42.95913361,42.943645178,42.949688341,42.957332748,43.192304488,43.1919532,43.221018592,43.194850549,43.216632058,44.023541617,43.427419868,43.454639319,43.199689062,43.496014182,43.414883057,43.344918329,43.447939665,43.441305286,42.990968839,42.978112738,42.99427663,43.001526216,42.989097298,43.182195265,43.184832182,43.312455546,45.971183215,42.72689185,42.747753143,42.736958869,42.704130244,42.726018481,42.73177984,42.742297665,42.725905397,42.704161116,42.705032386,42.736239565,null,42.739273753,42.696399689,42.733247373,42.718713863,42.712976791,42.718712666,42.745294972,42.734520115,42.719116851,42.720685457,42.719735543,42.707560116,42.724476022,42.707486746,42.718517303,42.747771976,null,42.769659072,42.702311067,42.748537161,42.72597653,42.712364966,42.700648882,42.710701314,42.752044563,42.748499961,42.724583095,42.696792866,42.712390625,42.721478448,42.710731976,42.710938837,42.707611448,42.747942067,42.750542881,42.708721814,42.731551773,42.712390625,42.731625204,42.718469723,42.724756643,42.745859921,42.703743083,42.725983607,42.73155832,42.736003228,42.715522934,42.696997646,42.712350213,42.71845858,42.747721104,42.737562656,42.725169925,42.742359398,42.773587616,42.709616208,42.734957781,42.742265498,42.768171901,null,42.722644806,42.731447108,42.749849912,42.703497128,42.747713234,42.712440519,42.682980387,42.652160153,42.724738524,42.722594387,42.685367003,42.678664121,42.677288054,42.676654187,42.685551476,42.704975267,42.679040295,42.658996315,42.661115308,42.68613184,42.69682695,42.720160027,42.694896476,42.672330393,42.715454723,42.700113996,42.700868469,42.696330813,42.69383175,42.656541965,42.686663224,42.681340553,42.681068025,42.711865642,42.729036882,42.599905267,42.604122328,null,42.582848566,42.591889783,42.592405626,42.605620983,42.590339537,42.592661105,42.603286622,null,42.592415912,42.591782035,42.591706771,null,43.968056867,null,43.432683795,42.496232773,42.514265988,42.507533284,42.49964809,42.526918897,42.511057093,42.50135494,42.520605467,42.496229592,42.521498528,42.506898005,42.525612471,42.524146906,42.511452502,42.511095031,42.525100832,42.532875061,42.500575811,42.507302338,42.498594994,42.837383214,42.833476078,42.835363984,42.832107157,42.840744901,null,null,42.918550907,42.863355443,42.874271872,42.871109175,43.009885536,43.005867032,44.497264495,43.329865267,43.327730643,43.339322479,43.325277893,43.338366102,42.531742454,42.534047806,42.886859932,42.916684386,42.918096854,42.890434181,42.756331927,42.790307364,42.8091572,null,null,42.761188143,42.7580845,43.232981102,42.678544716,42.685650074,42.680863598,43.013392566,43.048095871,43.060596466,43.108429307,44.180911333,43.194405658,43.196535373,43.192762889,43.161920856,43.18686663,43.188118413,43.187472605,43.18939916,43.194932548,43.196317916,43.189871749,43.19614788,43.190655777,43.194190911,43.196697528,43.686723626,43.694248328,null,42.632508213,42.632859069,45.913927459,45.923946935,43.077417113,43.074646212,43.074643198,43.078410609,43.495731886,43.396415703,43.40244485,43.427060952,43.422409989,43.412222417,43.411959521,43.393650555,43.398737164,43.426598852,43.412232671,43.419551834,43.397661441,43.437067097,43.426957221,43.410822931,43.426744787,43.426774488,43.426909793,43.426873461,43.439462189,43.073223114,42.834926088,42.826808223,42.948302219,42.934794198,42.944698376,43.76074949,43.779902062,43.773930821,43.766424883,43.768147998,43.760761496,43.753515024,43.757466303,43.757457481,43.753085979,43.764744737,43.746533863,43.770376247,43.756362416,43.765181887,43.764327309,43.759978295,43.728411598,43.7321126,43.727927391,43.712767649,43.745421368,43.76073323,43.77395797,43.758274838,43.734697164,43.773873484,43.752784916,43.760714082,43.704348825,43.741636992,43.656785669,43.884950426,45.156226538,45.156397088,43.458453742,43.456439513,43.472782707,43.45838141,43.466192176,43.069814458,43.032827226,43.090839567,43.016998943,43.053635419,43.01827189,43.038132675,43.033689072,43.018013392,43.036114144,43.061342462,43.087473988,43.066945608,42.931189165,42.929759722,42.941222566,42.928584783,42.913751654,42.936632185,42.927419147,42.497213868,43.003456381,43.740499692,43.078287889,45.139963948,43.745506619,43.748202205,43.746990204,43.387472958,43.389770895,43.405001185,43.376271081,43.562922505,43.540463977,43.570509447,43.545726278,43.549120351,43.562077243,43.731945839,43.722329499,43.729279746,43.728467376,45.470990388,null,42.585407267,42.619187021,45.397290771,44.42197961,44.181756608,44.944556104,44.989544874,44.951789996,42.714051009,45.358467822,45.09701525,45.166955409,45.078481491,45.902700628,46.139599787,46.098651371,44.892422587,44.884935565,44.869178772,null,43.104402061,43.134152,43.104991403,43.077369998,43.03875235,43.044362797,43.180653244,43.033612287,43.060679401,43.072303152,42.987226637,42.98839417,43.11933171,43.148632888,43.089885628,43.045898028,43.046080074,43.029569971,43.064273056,43.07174021,43.006681014,43.104496951,43.11101744,42.980976835,42.98105091,43.117036266,43.124905787,43.097161313,43.031413185,43.067904525,43.028659127,43.031440454,43.00298424,43.054667098,43.067813017,43.134044842,43.082033986,43.073218187,43.043233388,43.058316323,43.038575123,43.06014895,43.059146891,43.100825954,43.184217922,43.090025403,43.058848736,43.062316676,43.037744073,43.043522562,43.027330605,43.032619789,42.984636063,42.986437398,43.067813214,42.981254467,43.087970621,43.066116528,43.075165809,43.030003241,43.074164803,43.067971865,43.038699093,43.060616113,43.044695411,43.036936776,43.078097757,43.082070115,43.119426773,43.015718912,43.022691885,43.017080594,43.021704236,43.023196864,43.054617539,43.060127071,43.045741412,43.034145323,43.042861336,43.06006963,43.052990579,43.039812375,43.037149414,42.983367851,43.089815997,43.138960435,43.014182794,43.087828987,43.071563236,43.067961243,43.061042953,43.105752104,43.089677595,43.052551778,43.089592121,43.089948673,43.119282148,43.089848592,43.021909108,42.992037364,42.997844162,43.074218172,43.089657631,43.136584369,43.061971514,43.024473435,43.067911012,43.093495677,43.089508334,43.096746388,43.085776004,42.984935214,43.14814712,43.062394178,43.000176295,43.049713936,43.00291829,43.042192259,43.111992887,42.997259338,43.023222111,43.067936092,43.043887146,43.041264424,43.01704923,43.119334816,43.002350875,43.052490139,43.110617388,43.074513788,43.148545273,43.12253899,43.149115913,42.959273203,43.083715893,43.041481889,43.070988212,43.148239087,43.098633618,43.070116548,43.032529472,43.075200234,43.044339021,43.063073727,43.031438479,43.09071051,43.106083552,43.045731103,43.053978211,43.035030831,43.036023112,43.060127071,43.060232762,43.067305942,43.067554123,43.073739698,43.03881159,43.071038558,43.041536745,43.047990375,43.053256414,43.056725053,43.071015876,43.07430562,43.072353577,43.049358368,43.089414973,43.040272001,43.075211698,43.022955445,43.044272764,43.07616705,43.082671469,43.060364019,43.040256,43.038703155,43.104649606,43.067845518,43.09447459,43.006472878,43.012391429,43.01884733,43.104629964,43.089779297,42.988571902,42.989506144,43.089816352,43.089819449,42.99121123,43.075217907,43.034953498,43.003014003,43.069630608,43.002938226,43.008296262,43.060616113,43.008480459,43.10462295,42.995112555,42.995565737,43.076798824,43.07995951,43.075801754,43.069281064,43.012304433,43.014160049,43.090001065,43.002854596,43.112425844,43.049987391,43.015083408,43.025983258,43.021594686,43.05250829,43.038712521,43.040834226,43.012302707,43.048147023,43.060149957,43.060615185,43.026717019,43.089877173,42.951981626,43.02323439,43.010559595,43.07536501,43.045700879,43.045725373,43.041419113,43.033049433,42.99387913,42.973762173,43.003135817,43.001983803,43.069503776,43.074919618,43.067390344,43.03755282,43.034772652,43.056541583,43.060268943,43.082385708,43.077895982,43.053846939,43.052410036,43.089597021,43.073151775,43.071124872,43.060600394,43.042432918,43.022488328,43.023755704,43.022220024,43.094667704,43.06808852,43.023224829,43.021614304,43.033890558,43.041430565,43.074627322,43.106592006,43.10462631,43.071120875,43.086403913,43.119136801,43.164237873,43.112160228,43.133779864,43.09895653,43.127821561,42.995858917,43.119129084,43.086366068,43.017049028,42.951932432,43.02258979,43.089640578,43.097513703,43.067608129,42.997689388,43.002688814,43.104816906,43.069723574,43.078279385,43.017028685,43.007240892,43.002881967,43.016676675,43.021122057,43.002854596,43.004742921,43.097144059,43.016941745,43.012290835,43.003000897,43.022993498,43.014132048,43.074760718,43.06018974,43.08849967,43.064027353,43.074766588,43.047174913,43.067910974,43.067944847,43.039096229,43.104508239,43.082771561,43.090015755,42.988572713,42.965491519,42.98824088,43.004550856,43.067911206,43.081135442,42.981227479,42.956957675,43.003435598,42.984852231,42.986719544,42.997010068,42.986518097,42.98961946,43.001130765,42.984935214,42.929277831,43.096987983,43.099059501,43.050508534,43.104992996,43.112103008,43.067870486,43.037385042,43.060262998,43.06872471,43.073564885,43.069534179,43.06018974,43.039812375,43.031329917,43.085748195,43.043252462,43.040259219,43.085935067,43.081814448,43.078413904,43.141449998,43.147979014,43.089659288,43.014132048,43.067470227,43.119537845,43.127705842,43.162812434,43.054050656,43.010328797,43.037377683,43.02246109,43.020165864,43.053431215,43.028822274,43.043204001,43.024683914,43.067391041,43.04166839,43.036360364,43.041643443,43.054630996,43.040301125,43.090006724,43.053342395,42.98667355,43.112331551,43.074760718,43.037744073,43.03871018,43.069535566,43.097891918,43.078027122,43.111900953,43.022586006,43.0826696,43.091776726,43.090003174,43.103698057,42.988294615,43.017048848,43.06064711,43.043024491,43.060685438,43.065470246,43.119223096,43.090299868,43.111851843,43.071650984,43.068873226,43.108347867,43.097129563,43.075229677,43.110494647,43.104918647,43.111963697,43.104985973,43.140674745,43.039027471,43.058037548,43.067823336,43.030231587,43.067391041,43.049987391,43.048969546,43.041674411,43.040285257,43.038384313,43.060616113,42.937699301,43.02360384,42.982168702,42.981081908,43.06728746,42.959273203,43.079984405,43.089789942,43.080321957,43.071272381,43.067520121,43.070243126,43.080116194,42.991998845,43.089630552,43.074871068,43.074522635,43.078267275,43.068448159,43.091255077,43.082463387,42.994614018,43.04424598,43.089443871,43.07521656,43.016345359,43.081363115,43.068479434,43.089877835,43.069852631,43.072041711,43.064754708,43.005739171,43.030530408,43.003684439,43.102074657,43.097039706,43.097093398,43.104669631,43.056163688,43.032440841,null,43.019723091,43.026306475,43.104629964,43.09002666,43.080809094,43.089884384,43.066813012,43.057045356,43.051773307,43.071282981,43.090218698,43.074834183,43.082070082,43.098985237,43.067520121,43.089170226,43.088865645,43.038797611,43.124574834,42.98841095,42.988970991,42.988293546,42.974338701,42.93026634,42.999209539,null,42.981234101,42.979768371,42.98760964,42.993965766,42.973800557,43.139032349,43.11928185,43.115824703,43.117407419,43.13401691,43.184396547,43.163492849,43.119407471,43.022226175,43.017049042,43.008593116,43.06783039,43.043246466,43.060292696,43.04299614,43.067386,43.043232143,43.08760717,43.089526194,43.00822778,43.111513699,43.096203893,43.177828077,43.043254,43.050005447,43.067908435,43.024240546,43.067913385,43.03869352,43.066273612,43.031413185,43.03886464,43.060615579,43.1119296,43.071589469,43.042692933,43.000867412,43.017027079,43.017500445,43.016007516,43.002745206,43.012401386,43.00733531,43.006259305,43.089361861,43.040218816,43.029416547,43.044280151,43.04018716,43.079460907,43.060115774,43.045834915,43.049667722,43.031520844,43.036037021,43.059579846,43.079089203,43.075350291,43.104990583,43.104990583,43.083648079,43.081675302,43.090044526,43.110663419,43.068042807,43.090746167,43.090030514,43.089857861,43.075543933,43.067944987,43.175351354,43.569477073,42.813977258,42.720254283,43.2526578,43.459003885,44.858313166,44.884188906,42.585209899,45.750246357,44.227115802,44.628963068,43.769879123,43.791834066,null,null,null,43.024665438,null,43.812953324,43.038671404,43.036109869,43.038101727,43.040246365,43.037014492,null,43.038816752,43.038663299,46.880167017,43.141373787,43.055789289,43.046911442,43.06018974,43.002957381,43.034611953,43.037681686,43.120501069,43.014150976,43.103697236,43.053494469,43.014249613,43.017445828,43.022479793,43.014234765,43.044545583,43.036516694,43.089733976,43.0390093,42.988572713,43.119327996,43.067978806,43.176794767,43.119123278,43.12776445,43.132307481,43.022438041,43.074727557,43.108498415,43.071981659,43.070916969,43.078604952,43.060613896,43.111499588,43.147836016,43.136420097,43.132878833,43.106390686,43.059856563,43.072140452,43.070089315,43.073186751,43.076083628,43.084501328,43.067690493,43.073345003,43.080048439,43.082594869,43.081021202,43.086300249,43.078274577,43.073317945,43.080035719,43.073245035,43.076561003,43.084761109,43.067748185,43.05091273,43.074314117,43.053586468,43.089655182,null,43.07662685,43.067791253,43.067767222,43.071746767,43.072010659,43.094760149,43.079354865,null,43.066487161,43.074681732,43.071859941,43.098154642,43.077750878,43.084761109,43.150406852,null,43.08399111,43.045091592,43.046219021,43.047094036,43.03883478,43.044547197,43.041715724,43.09169554,43.067631086,43.056905501,43.064709527,43.075783209,43.073411431,43.097421956,43.121027088,43.073265035,43.031813395,43.092731657,43.09186533,43.076232513,43.070916969,43.089705158,43.050053276,43.05288946,43.129073673,43.121615913,43.133406854,43.129950544,43.132935186,43.130040149,43.014331253,43.050026466,43.044385056,43.040942844,43.110206421,43.031832995,43.065328974,43.072271181,43.064752717,43.072003961,43.04574895,43.121027732,43.039844992,43.102384539,43.122534692,43.131755183,null,43.043483602,43.033117724,null,43.070916969,43.073241182,43.077382569,43.079495042,43.078424921,43.056612533,43.041335159,43.039181389,43.050948159,43.068695101,43.045712867,43.093824822,43.103377041,43.108619864,43.09418446,43.073186751,43.072116082,43.073192998,43.073122803,43.031787853,43.070835568,43.067769277,43.04162881,43.087972877,43.07874743,43.047235976,43.071522908,43.064389618,43.15496372,43.041770196,43.045031804,43.071029923,43.073370661,43.064039717,43.073169131,43.067742164,43.072111853,43.067802379,43.073530616,43.066320606,43.059469011,43.067112982,43.066968875,43.055940046,43.092368063,43.110965488,43.091192896,43.115755422,43.079521769,43.06950797,43.078863353,43.067633586,43.071945081,43.064241389,43.060998075,43.106948056,43.126342245,43.073302038,43.072286005,43.067806943,43.071932369,43.068831907,43.12911904,43.087571174,43.073265035,43.083702429,43.072015579,43.077382569,43.110992268,43.058354085,43.079736879,43.060805243,43.066409996,43.060643585,43.041763008,43.035264336,43.148345388,43.121275488,43.001442095,43.031907874,43.104388861,43.054046377,43.096161875,43.125175362,43.087073488,43.076693365,43.078443314,43.07893496,43.087545866,42.929252994,43.142397715,43.137465894,43.149676708,43.009668854,43.187304029,43.199174309,43.181572925,43.196703076,43.18134095,43.18469833,43.174648374,43.188722804,43.17636066,43.177644437,43.187675143,43.166647727,44.492343299,44.524249484,44.519333287,44.516818867,44.513249955,44.512091621,44.52390365,44.519045247,44.502484126,44.509531902,44.508393086,44.513662684,44.508270385,44.511317041,44.500671931,44.530555242,44.516370208,44.516487939,44.525323347,44.523825815,44.510271164,44.517433745,44.518163709,44.524756948,44.543691916,44.509203603,44.519920614,44.509626627,44.504859595,44.502554687,44.526627042,44.523051785,44.514272439,44.526190735,44.514342786,44.525039246,44.519315215,44.512997709,44.484578839,44.520465468,44.512299116,44.498046101,44.509492843,44.516100227,44.513744697,44.507824569,44.525027036,44.521334023,44.511140399,44.535963344,44.511770573,44.499978184,44.512686052,44.501655781,44.492491599,44.495776675,44.487545435,43.084441233,43.0443585,43.07465363,43.038821519,43.012888166,43.163601753,43.776136656,43.769424361,43.783725539,43.784380459,43.791837253,43.784118754,43.765614933,43.794203344,43.791548716,43.772980637,43.783998518,43.78363275,43.75245266,43.769282853,43.783579706,43.783565599,43.773260489,43.777174144,43.784208017,43.77880275,43.754128512,43.791707564,43.780873117,43.787942517,43.766814887,43.781118873,43.783830731,43.794767954,43.778863178,43.764527482,43.773967617,null,44.083868731,43.766145854,43.855468349,43.808758206,43.831649707,43.794305955,43.804640008,43.810054651,43.808727858,43.824419898,43.81165119,43.803717966,43.815014117,43.859560118,43.83710247,43.841390172,43.79693222,43.77488289,43.821912848,43.830138015,43.81615902,43.836975811,43.841389547,null,43.804786322,43.811039686,43.788536343,43.76515793,43.770362816,43.812823838,43.801500143,43.808670045,43.81420317,43.804633495,43.843972281,43.785252052,43.766430259,43.82983109,43.801488196,43.835843342,43.808727858,43.808168079,43.810046735,43.804593728,43.808135085,null,43.859273567,43.806530385,43.770130929,43.804643688,43.812758992,43.814987158,43.766146177,43.811649,43.813824344,43.868783394,43.817317784,42.515795328,42.629083244,42.667880145,null,42.583034272,42.581684105,42.640565051,42.606445263,42.579403086,44.453715447,44.4822686,44.469935066,44.479006829,44.485606617,44.558187631,44.554715326,44.466108577,44.468607694,44.478216112,44.467820104,44.467713425,44.458668422,44.424051248,44.357192238,44.49580555,44.499629108,44.49712518,44.499818306,44.484326753,44.487821368,44.442648882,44.408001661,44.452144301,44.448926055,44.447568871,44.45234222,44.443283426,44.438975158,44.44514982,45.105260655,42.550527908,43.076073177,43.075254612,42.735384677,42.734324999,42.733014291,42.735503174,43.028934691,43.044347393,43.049049661,null,43.027950236,null,43.942665891,43.939217386,43.939185275,43.9393458,43.949911175,42.559023538,42.615779193,43.557015609,44.210608856,43.104280662,43.089539005,43.099821328,43.096846803,43.105121521,43.085388612,43.090131876,43.096787309,43.030197418,43.015378049,43.022232056,43.027736375,43.019245634,43.019849606,43.031410752,43.029442507,42.999250563,43.017340261,43.029495518,43.009862883,43.031215841,43.04347686,43.042383949,43.022392741,43.100561112,43.03966396,43.145857278,43.0407656,42.915249386,43.042294365,42.923477581,42.920591128,42.92456744,42.902335324,42.915805521,42.881075231,42.916901898,42.923395673,42.872606457,42.916817979,42.922806979,43.142021654,43.179910268,43.187338964,43.166166499,43.164632971,43.172119983,43.163739008,43.158820086,43.170301382,43.069663277,43.064699087,43.050027997,43.066842752,43.066548745,43.047825407,43.056661631,43.047745453,43.047079784,43.047337954,43.060804324,43.060495576,43.074750174,43.049316525,43.036078165,43.090264743,43.049186282,43.050077201,43.068788712,43.083075993,43.056292959,43.038511968,43.063761704,43.060686082,43.085360404,43.059892988,43.023079831,43.017448622,43.021624061,43.00274335,43.016655123,43.004794093,43.002807887,43.003251976,43.002687162,43.002785787,43.002934614,43.002802124,43.002535632,43.003478578,43.022238442,43.016562525,43.016938069,43.024025998,43.021988615,42.995462862,43.016577102,42.989261513,43.00394696,42.995455069,43.002944116,43.00288383,42.988282435,43.012331652,43.002722229,43.0167072,43.01233671,43.012005033,43.004587149,43.012700712,42.985549514,43.017337453,43.01671725,43.011436983,43.016655123,43.023896929,42.994498674,43.023688141,43.017190058,43.011960324,43.002888487,43.016668377,43.006519015,42.988199525,43.016535912,43.010703139,43.00326599,43.002479284,43.013036582,42.606182709,42.602964123,42.603489189,42.599627857,42.60295492,43.271015327,43.27126412,43.273476512,44.519582562,44.522376108,44.497571448,44.523499288,44.541079983,44.534016571,44.523451505,42.664719821,42.673560376,42.613202061,42.609635306,42.611706597,44.176894888,44.178334228,44.177878093,44.154847531,44.182173328,44.164642209,44.192068339,44.16605551,44.170815797,44.163571933,44.178227831,44.1894888,44.190407866,44.200849397,44.196012585,44.210112482,44.204599655,44.042110948,43.987960427,43.957954413,44.018694924,43.97025461,43.948012415,44.155123526,44.171490732,null,44.288996197,44.269894839,44.261777967,44.287224292,44.273130743,44.261894898,44.258045594,44.240840468,44.258052786,44.230352197,null,44.267265755,44.268086205,44.287449212,44.248312358,44.264022898,44.265748363,44.269289472,44.258071023,44.243212688,44.272928515,44.263074464,44.272912144,44.243995963,44.262645629,44.287250801,44.287410617,44.249927804,44.280465672,44.255356067,null,44.258854725,44.261820914,44.243763633,44.270524262,44.262299591,44.251078157,44.266380171,44.288270755,44.265861393,44.269660447,44.28726835,44.240420814,44.258436208,44.254087593,43.261456252,43.368506236,43.251323408,null,43.310014479,43.251249346,43.281090761,null,44.803596318,44.812487726,44.816099581,44.833825378,44.820793919,44.821460148,44.769546125,44.80211195,44.772922366,44.841799347,44.781975665,44.793338581,44.80539685,44.798782955,44.814712652,44.815536116,44.846631044,44.814271597,44.798736865,44.806966204,44.793982944,44.776785957,44.776294615,44.818838154,44.811014888,44.802164541,44.8214011,44.801145506,44.7843436,45.881570406,44.786841712,44.78210847,44.774197086,44.775319049,44.781720269,44.774847185,45.095981454,45.092986873,44.458291033,44.356466796,44.357736297,44.357529453,44.606748702,44.612318799,44.395228499,44.380421025,44.388133987,44.388744683,44.390477968,44.385375824,44.38509102,44.385874497,44.380382692,43.625913947,43.627959173,43.625950012,43.686175733,43.207082126,43.206904797,43.230163679,43.251039723,43.221507026,43.231212673,44.07455633,44.090677101,44.089023152,44.118740304,44.116055209,44.092994949,44.073700028,44.083640621,44.077036502,44.084520118,44.076512178,44.090588296,44.072964155,44.125846701,44.088964038,44.083831058,44.080952372,44.095403739,44.127564591,42.988260547,43.012885704,42.999675882,43.020418315,43.021236083,43.044079264,43.009675177,43.03417707,43.00529007,43.022085349,43.009707318,43.036258645,42.980220668,42.988307597,43.045317192,43.029938769,43.014991688,42.988033768,43.006594258,43.008247449,42.988430497,42.999184636,43.027532063,43.012536386,42.988272507,42.993450743,43.009711557,43.012488318,42.985398754,42.997416684,43.032233148,43.013252553,43.004530551,42.979846651,42.988241644,43.075435664,43.094604061,42.878950901,42.966559812,42.891500887,42.9883252,43.113014,43.142377177,43.133702893,42.975119688,43.013447577,42.975850322,42.988355004,43.193060943,43.013968485,43.058101012,43.123139936,43.072165749,43.102231262,43.102438185,43.102609098,43.105657153,45.054418612,44.336746479,44.063590311,43.927842788,44.157286418,44.008193456,46.840323622,44.22695447,44.218464363,44.216324192,44.240738692,46.599036033,43.870449341,43.869400291,null,43.879758237,43.875691881,43.896276333,44.27127294,44.288294019,44.268574357,44.290297804,44.260921202,44.286702386,44.295827174,45.303402453,45.122630398,44.963517784,45.009310976,44.884079661,45.139031321,44.963142589,44.955111397,44.976047837,45.667053561,45.51335049,43.844772367,43.921508841,44.02506289,45.518429572,44.869917654,44.844998242,44.854196081,44.850044136,44.844288658,44.849639464,44.876404535,44.875566044,44.875463925,44.875527479,44.911166802,44.873834751,44.912524089,44.876502407,44.900923457,45.188584352,44.893039781,44.572319043,44.840006519,44.96095635,44.955048511,44.961474142,44.97362121,44.961322604,44.952419988,44.962788671,44.960904897,null,44.971066505,44.961211602,44.959161243,44.963893432,null,44.95524867,44.954460705,44.957012312,44.972755058,null,44.955605472,44.961375301,44.95746035,43.388335671,45.792229794,null,45.404131333,43.96258214,43.963102956,43.948087127,43.961132888,43.899142366,43.136302741,44.289721389,44.337489235,44.436869614,44.329157967,44.442430715,43.078658399,43.077281493,43.07510146,44.342887219,44.35774363,44.381647549,44.265847598,44.248271164,44.316917551,null,44.320967044,44.000975196,43.986528398,44.019881057,43.984027435,43.984494035,44.000974477,44.258549588,44.272972155,44.301841418,44.246756049,44.259568033,44.270944199,44.263621253,44.25868516,44.283276884,44.273151302,44.273148758,44.292581253,44.287255602,44.261079374,44.267536969,44.269132023,43.178693763,43.178512449,43.17847018,43.17814183,43.192477107,43.167092141,43.042003969,43.099455774,43.033256121,45.645285475,45.667420118,45.639343996,45.63564754,44.277466104,44.283264503,44.258032123,44.028357009,44.027829681,44.008749994,44.02508022,44.010909281,44.015977248,44.022579677,null,44.026020849,44.032128576,44.014515599,44.015955594,44.020331441,44.032111003,44.015004185,44.039462847,44.014438672,44.010587033,44.022191577,null,44.039388517,44.022893287,null,43.988337856,44.009431946,44.004491441,44.02907568,44.034193402,43.994789994,44.018159108,null,44.002915796,44.012236898,44.010909281,44.019071717,44.012691652,44.016071556,44.017944761,43.994044728,44.022437836,44.019506962,44.022138178,43.970718436,44.022112323,44.03503676,43.075255077,43.075311971,43.076330122,44.628377845,44.698886567,44.924741584,43.107624433,43.111288408,44.958998262,44.91088,46.588918563,44.609696784,44.604694431,43.914064661,43.816511385,43.777265576,43.324003104,43.335297729,43.31852219,43.319969636,43.308255351,44.358854197,44.260205836,42.569218272,42.582642847,42.588115626,42.544031164,42.587937261,42.589613192,42.587984375,42.591982632,42.577782575,42.581603149,42.565653261,42.547062076,42.588644906,42.597848167,42.565509201,42.590839313,42.554631546,42.580732115,42.569995552,42.602959212,42.578677599,42.602971019,42.580664229,42.588078494,42.568699998,42.572148969,42.574000444,42.577045693,42.596169109,42.5777007,42.564259098,42.566097829,42.558904401,42.565277898,42.581779624,42.588302752,42.582589558,42.577616097,42.559256654,42.565512504,42.563585027,42.635012066,42.602900676,42.588498504,42.580863181,42.587959268,42.59717478,42.551447458,42.572340636,42.551685485,42.566061276,42.597155709,42.564364471,42.595584153,42.601345974,42.577228738,42.581369309,42.588031323,42.579052519,42.587728645,42.588098214,42.5806669,42.577781661,42.568612392,44.918476629,44.921689906,43.81364459,null,43.322532457,44.497027024,44.454317066,44.455175767,44.450178069,44.46952227,42.83014679,42.754379272,42.807665501,42.63321334,42.63496723,45.45732454,43.533882913,43.577093811,45.399256932,45.412070065,46.721456104,46.66696167,46.723627031,46.706880397,46.720646599,46.721970784,46.719934684,46.720663254,46.706321143,46.719308207,46.73191906,46.724348736,46.713413861,42.500558664,42.538321292,42.537640831,44.148593516,44.154780985,44.153108189,44.156079696,44.164938842,44.152734676,44.152593032,42.812664933,42.834749856,43.126097251,43.111769698,43.121044316,43.111057224,43.059732613,43.105118728,43.101463537,43.07648386,43.102335563,44.610065106,44.670991216,44.655505883,null,null,44.679093791,44.667159572,44.666552138,44.666700011,44.686385434,null,44.66235058,44.673418527,43.078288836,43.27928979,43.014404319,43.013440023,43.022021576,42.959257757,42.958716132,42.971342431,42.959404851,42.954357605,42.966502475,42.952051129,42.966594701,42.954020091,42.952693852,42.965112657,42.961872268,42.967474323,42.966996931,42.987876642,42.959402381,42.963016982,42.959130051,42.962574769,42.963878301,42.95119967,42.961944662,42.95940417,42.568280965,42.565335946,42.565139319,42.504275354,42.56197256,42.510888202,42.567220426,42.52206708,44.549619768,44.670730618,44.671246654,44.657190666,44.319482369,43.118419858,43.111391538,43.113872032,43.115638312,43.129953807,43.135229004,null,43.122595953,43.120260927,43.124758555,43.143706846,45.123570467,null,42.91433215,42.879120702,42.894562538,42.915375639,42.886795415,42.88679774,42.863246362,42.881874855,42.928682154,42.901114367,42.928578193,42.845023992,42.866711646,42.93664029,42.947781904,42.949814084,42.945364822,43.968050536,43.968248463,43.968446852,43.036069692,43.0392658,44.558780332,44.552750029,45.181886474,45.180418669,45.181739084,45.184974145,43.451632755,43.089159018,43.093527404,43.089165,43.089209145,43.095683353,43.085089906,43.089070712,43.469089288,43.45558617,43.467261148,43.463475174,43.463723419,null,45.881201094,42.910690386,42.92355385,42.909528695,42.910881381,42.900710668,42.895742538,42.902693144,42.897948208,43.018928287,43.020542852,43.013421012,43.016885898,43.006058042,43.016735978,43.013094011,42.678484193,42.722908774,42.691702514,42.696916969,42.719055194,42.718326485,42.720127663,42.682929134,42.736608724,42.697528839,42.718692023,42.717187167,42.719100123,42.719230232,43.884200816,44.026265773,43.796150056,43.795512279,43.796846761,43.802026049,43.796548293,44.390797055,44.388335955,44.244460967,44.937059006,44.914894559,44.925905853,44.936964541,44.937460172,43.778812452,43.884976284,43.881355371,42.91052062,44.867722749,44.891268101,43.531740755,43.533353433,43.532515194,43.532015792,45.148986835,44.759585884,43.598534763,43.603061349,43.582692676,43.613784453,43.587751597,43.596850308,43.582844265,43.589239664,43.59950157,43.588858279,42.856483132,44.962478941,42.96426521,42.973634364,42.954961014,43.059922771,42.535176392,42.574683814,42.57989014,42.973611271,42.959136304,42.971177083,42.959097635,42.60439368,42.984421493,42.847032654,44.90464119,44.912708798,44.921116817,44.912856335,44.923501303,44.895312553,44.908670564,44.94521598,44.909971553,null,45.30679016,45.358706618,45.317840849,42.918622203,42.921540331,42.918736516,42.914682078,42.927001987,42.919553739,42.951912459,42.937361025,42.954849053,null,null,42.945049478,42.95913361,42.943656869,42.949202737,42.957347241,42.944556433,null,42.964022712,43.235543517,43.208996031,43.228768352,43.216340839,42.990887827,42.999197372,43.184831361,43.189382981,43.187131317,43.184831361,43.333359797,43.329421062,43.334655274,43.334560738,45.970177862,42.693234538,42.718512764,42.730497859,42.752458923,42.696148689,42.71949372,42.742311106,42.718306309,42.718469077,42.72592865,42.718529076,42.704879279,null,42.718713875,42.704303068,42.712474135,42.707547472,42.753838903,42.712230127,42.714513728,42.725965628,42.723225216,42.724890979,42.747092899,42.726124263,42.71640197,42.718469387,42.738105113,42.734346387,42.755474109,42.737769974,42.734225786,42.704249393,42.726758533,42.702518004,42.718775112,42.710721559,42.717013236,42.731802399,42.727850901,42.704869679,42.712435073,42.741886281,42.735135934,42.749869309,42.707769087,42.71963479,42.700309802,42.73683044,42.721347835,42.727192517,42.762715469,42.727414427,null,42.704811301,null,null,42.697957894,42.64977233,42.672380579,42.683222119,42.719038945,42.693591382,42.730161376,42.680187539,42.716493644,42.685611752,42.68066957,42.704368972,42.710269928,42.679110302,42.698673143,42.69229084,42.686460638,42.650066126,42.676391602,42.67642997,42.67249393,42.71354432,42.675984586,42.674122548,42.701884887,42.710677432,42.686243796,42.591755798,42.592977518,42.596365244,42.60507641,42.592571103,43.922906836,43.803393134,43.52261578,43.513919311,43.522620478,43.79199309,43.500623248,42.525641036,42.526070665,42.522079016,42.501742426,42.520119647,42.540930172,42.522011903,42.506611345,42.515958912,42.541395021,42.516135407,42.499848447,42.523754181,42.917595777,42.918925567,42.85212368,43.009863033,43.010226502,44.265675456,44.492520835,44.52307792,43.336066105,43.34138517,42.531111668,42.902983842,42.904358504,42.906887664,42.903230128,42.915260222,42.926606808,42.910632094,43.234459354,42.692201948,42.679053922,42.685709734,45.828988658,42.892863854,43.009456307,43.060790136,43.024217869,43.120680342,44.077126885,43.185552803,43.193572264,43.190315179,43.193018037,43.194668465,43.189958364,43.199024896,43.177947019,43.16268586,42.636811289,43.077885229,43.076245674,43.314637332,43.338735175,45.449241873,43.495660898,45.165625293,43.430219147,43.414707519,43.430464698,43.427625157,43.424544359,43.442520366,43.396367882,43.428260971,43.397621099,43.426715785,43.428174561,43.397920705,43.412223668,43.398810137,43.398822438,43.426785736,43.427228126,43.435044636,43.438904786,43.441326042,42.839943819,42.834219603,42.834844736,42.827468272,42.834298028,42.83673538,42.839693044,42.924393913,42.936053851,42.93996648,42.948292089,42.94500864,42.934606009,43.750645245,43.728723347,43.702170828,43.754406838,43.775303644,43.760743687,43.736439041,43.751521231,43.730251913,43.760730186,43.756107807,43.754026899,43.747885187,43.764786435,43.773955791,43.749071181,43.799282146,43.75348217,43.713920711,45.16023623,45.140583129,45.132168044,45.132068109,45.140521699,43.465938541,43.445581356,43.489991655,43.457759148,43.449014402,43.459508471,43.448632143,43.016605595,43.090345996,43.057547081,43.089978755,43.017717359,42.926848765,42.925844701,43.003219746,43.004402588,42.998688278,43.00447874,43.076764471,45.133811645,45.15361055,45.13997039,45.138536922,45.134718658,42.86144367,43.749907698,43.751855366,43.746982573,43.389436865,43.533885387,43.564210473,43.570061874,43.539688654,43.540744441,null,42.609553788,42.763499323,45.092298804,44.973685911,43.038506673,42.628843662,42.533042568,45.672306061,45.912764289,46.141670348,46.115958519,46.198998412,44.57531784,43.433023332,44.882824735,44.878776982,43.071572,43.113992676,43.071761908,43.067748632,43.177749136,43.063727315,43.041483057,43.075883546,43.038269457,43.04438511,43.055632447,43.060151828,43.135337576,43.119327996,43.04345587,43.079275227,43.026048675,43.083584971,43.051498343,43.060547041,43.044545583,43.032780901,43.043205033,43.045733465,43.104730327,43.104547058,43.104559255,43.085959023,43.060612617,43.017033352,43.048809721,43.09304409,43.060285996,43.067554123,43.077899568,43.086118717,43.0646875,43.082017435,43.048653207,43.053832635,43.029605306,43.048920567,43.068015655,43.066001702,43.033913144,43.062448851,43.059277713,43.012689056,43.038796526,43.089312717,43.071167,43.086222654,43.067688591,43.094133906,42.980116211,42.982448269,43.014249613,43.010265505,43.119539257,43.040292578,43.044362598,43.040386926,43.126693028,43.086937025,43.061103819,43.084576918,43.060600394,43.068204119,43.181392185,43.121668954,43.045867207,43.053417977,43.116673883,43.090658969,42.988275323,42.982963928,42.988190035,42.987852231,42.998762058,43.09858316,43.021614304,43.009216173,43.02182696,43.010377153,43.010857302,43.067520841,43.010181848,42.988543548,43.088961322,43.012293201,43.018321788,43.017044387,43.012290542,42.995846472,43.011942245,43.060231014,43.074640817,43.126621996,43.07980327,43.081138793,43.096752123,43.060290976,43.081156712,43.084053313,43.071055834,43.038359761,43.048138934,42.978784875,43.041218582,42.971228431,43.100452193,43.104960994,43.055684945,43.054473342,43.027255579,43.135969231,43.060622594,43.071140099,43.06833298,42.99434473,43.081193964,43.089405025,43.067364187,43.06787444,43.067390344,43.045762487,43.104416709,43.059641147,43.032489777,43.059360731,43.089720402,43.022993498,43.071572023,43.111925451,43.052891044,43.104664153,43.067994933,43.01910428,43.002856704,43.022275549,43.02230478,42.999206948,43.036311055,43.016942082,43.026658274,43.071072219,43.089636859,43.104956841,43.014160094,43.012307454,43.014841429,43.071109235,43.071102832,43.089625096,43.107884144,43.040734191,43.089855144,43.11195731,43.089626162,43.079126288,43.011030786,43.022275549,43.002931698,43.022993,43.002848776,43.012293201,43.008295385,42.981938435,42.989237965,43.017021883,43.052618597,43.04849196,43.039791961,43.0638544,43.046339896,43.038691213,42.949079998,43.036047265,43.055631827,43.028352671,43.060146787,43.040210313,43.10480472,43.082218899,43.075200134,43.069502128,43.119443175,43.154711132,43.177547038,43.133957414,43.017030949,43.105944401,43.108658381,43.098926473,43.090017001,43.107366417,43.089437877,43.071890491,43.075083285,43.089162269,43.055190524,43.025278466,43.017044376,43.012290542,43.002963988,42.973613752,42.990175181,42.975788,43.057276262,43.046764004,43.060480347,43.053600894,43.093207654,43.072838929,43.054461249,43.084575746,43.070509017,43.085361886,42.98189429,42.944865126,42.930309937,42.973956976,42.986507804,42.988463711,42.959393246,42.981021701,42.988243751,43.077605594,42.959050567,42.984478189,43.005201418,43.084610333,43.022004329,43.017046828,43.010253867,43.022891998,43.082320909,43.067851302,42.98870176,43.066075394,43.041341784,43.072838929,43.03997691,43.063935452,43.082512223,43.092114561,43.060301669,43.177642719,42.986654795,43.012290542,43.045658251,43.126323784,43.114203295,43.119691434,43.020165864,43.011207329,43.054003261,42.999933405,43.040248618,43.025744401,43.060600394,43.0629459,43.064256029,43.066770742,43.035393666,43.044620069,43.089557612,43.120508106,43.112686019,42.988281363,43.071144969,43.112207451,43.026484622,43.055836393,43.048147023,43.052957445,43.060258403,43.050928852,43.057932746,43.00566533,43.023216673,43.02574388,43.00448829,43.000612733,43.038703155,43.022153289,43.060573377,42.948692322,43.122085653,43.067653464,43.089786853,43.060231014,43.068727811,43.069725905,43.067473151,43.089345451,43.074720542,42.985841048,43.021614304,42.99589707,43.017021424,43.021976731,43.005516489,43.045699531,43.089115464,43.071160892,43.012006212,43.016945228,43.08274818,43.088153957,43.097272899,43.017012062,43.001266619,43.078942218,43.010783725,43.003052082,43.002459594,43.021124504,43.012519895,43.014064039,43.002543033,43.022993498,43.083206817,43.104335335,43.010310562,43.017047252,43.052939965,43.060365,43.052669534,43.061128036,43.056480442,43.104498731,43.081138793,43.091232928,43.077902859,43.067524543,43.082775415,43.060171692,43.023052216,42.992258842,42.988267816,43.120546474,43.11381268,43.068735565,43.104874871,43.134106801,43.101322859,43.016587858,43.00478556,43.013471131,43.049980884,43.003705743,43.063122928,43.035442644,43.06783039,43.056049357,43.054717946,43.041768267,43.062443271,43.029569971,43.021614304,43.023569484,43.010196291,43.00859357,43.014994906,42.997808009,43.017179298,43.002842328,43.07401367,43.040527605,43.067554123,43.03466575,43.040175479,43.075662396,43.058899042,43.044361713,43.069730217,43.074895823,43.097236281,43.10758319,43.111929687,43.106810168,43.073608044,43.02219643,43.003649351,43.017038099,43.003693017,43.177494424,43.089032174,43.02904892,43.026742545,43.060577358,43.060606897,43.045632642,43.044368319,43.063524798,43.053395595,43.03651763,43.051361965,43.067902964,43.051422371,43.052933052,43.050005447,43.040295739,42.99744931,43.040301125,42.984325917,42.986768058,42.939848168,42.995833292,43.02280279,43.148050535,43.104497446,43.089995094,42.992465825,42.956516948,43.057403973,43.037378976,43.097843466,43.104689327,43.022656986,43.030954046,43.053535732,43.064289442,43.039706665,43.02172521,43.014955238,42.988292606,43.089858604,43.072839273,43.07465363,43.060071475,43.064916099,43.052857643,42.940860864,43.003411645,43.059893639,43.096256292,43.104496951,43.057058015,43.08260388,42.973762173,43.095162625,43.072950599,43.047959461,43.060167812,43.015641391,42.981252658,43.022116698,43.006760856,43.017116816,43.039812375,42.995831728,43.118462598,43.053067966,43.051977285,43.042427482,43.111863699,43.060508043,43.089703305,43.617904989,43.166019652,44.680796585,43.877469687,46.562434509,42.625321109,43.75084369,44.221131516,42.910057368,42.715538434,44.025968744,44.596470858,44.294608156,43.040349227,43.038671404,43.038674314,43.040246365,43.040154748,43.040246365,43.038564153,43.074412991,43.130152688,43.105517883,43.089768064,43.089608088,43.081626157,43.089644476,43.002587205,43.064674425,43.119146962,43.060280403,43.023225386,43.030763208,42.988292606,42.988301655,42.985675812,42.987108484,42.986503029,42.989277955,43.05490407,43.070643849,43.012443205,43.119416113,43.115629919,43.133765389,43.11189787,43.090001065,43.067952224,43.079125383,43.090001065,43.038715741,43.040977026,43.060127071,43.095301325,43.089763381,43.104990822,43.105290501,43.022361688,43.121165879,43.119416113,43.134137198,43.111982335,43.120369794,43.126521576,43.098581133,43.078055418,43.133937981,42.980333753,43.112062275,43.069718079,43.073419097,43.068063873,43.067914451,43.08894497,43.071109235,43.104404062,43.017047588,43.089879489,43.052960811,42.997207494,43.066640276,43.060597877,43.067070255,43.062741199,43.067554123,43.072301717,43.082875376,43.019190577,43.067078266,43.067795464,43.066009401,43.086069983,43.102927677,43.104986331,43.039044906,43.052946246,43.016845569,43.119194212,43.068015269,43.067727919,43.021463909,43.017238248,43.035920444,43.07139031,43.062448851,43.067345087,43.041589313,43.02219643,42.995667545,42.992383679,42.978095948,42.974183411,42.993572539,43.071614743,43.063926,43.060233,43.076022841,43.069392145,43.082364461,43.048815306,43.031448275,43.060422276,43.08967362,43.093468941,43.089504891,43.123647501,43.05257435,43.119511809,43.060121412,43.052992757,43.174619029,43.090348984,43.045223601,43.082393989,43.082393989,43.095436667,43.017023835,44.854243156,44.85260786,43.11255674,43.087376235,43.075769547,43.072011867,43.06696882,43.058088953,43.073314976,43.063124396,43.122048871,43.133743884,43.125008698,43.130568529,43.072956486,43.074519296,43.080966913,43.082678936,43.134423733,43.070963758,43.076145023,43.081886556,43.079985244,43.083182523,43.064988112,43.098362704,43.102793275,43.075219741,43.055262844,43.051915857,43.039056217,43.072307245,43.072129192,43.073313147,43.057539006,43.031891224,43.120496185,43.102326748,43.072131036,43.084179707,43.138936082,null,43.099133544,43.07485339,43.091342983,43.067163198,43.039120571,43.075237951,43.057593731,43.060496399,43.060575622,43.100290526,43.093054721,43.049216618,43.056154014,43.091929304,43.102256645,43.129159673,43.067633828,43.09317354,43.084124445,43.098313839,43.046256636,43.06766525,43.075597287,43.084271585,43.107144945,43.133019302,43.073278443,43.07712019,43.073565948,43.098307584,43.098188745,43.075338388,43.128662464,43.120121912,43.073680606,43.083270953,43.05899463,43.099847375,43.099186801,43.072040587,43.073323757,43.084852107,43.070075643,43.068381686,43.07728171,43.076063244,43.035105494,43.062240707,43.067830827,43.073488898,43.066981869,43.075621757,43.073200469,43.071685039,43.062646956,43.030093087,43.078920476,43.064310186,43.187226078,43.109147375,43.074873306,43.217266669,43.185691841,43.104511971,43.21560501,42.848595136,43.060234783,43.07837122,42.996165511,43.172035544,43.098361048,43.051233227,43.137712418,43.22047127,43.177596892,43.176281588,43.177644437,43.180667616,43.177942047,43.180710036,43.180787068,43.180853953,43.1958394,44.517591179,44.519422969,44.513481678,44.521141557,44.500428413,44.511924016,44.522787629,44.519597583,44.523762874,44.520582907,44.504098257,44.516341653,44.495397933,44.532475056,44.523659128,44.51952255,44.516280923,44.512771865,44.510516444,44.493549189,44.521936895,44.504171533,44.495564234,44.516981459,44.483341536,44.532662779,44.482524162,44.516752958,44.493667308,44.507180229,44.509038304,44.526702062,44.510946621,44.512421734,44.490932781,44.524053384,44.51231121,44.514377425,44.525140563,44.521137511,44.502515559,44.522410399,45.461340559,43.00285107,43.022282573,43.040409869,43.085006269,43.100038829,43.012341682,43.001265312,43.012291282,43.007948376,43.006156942,43.054089892,43.066016896,43.047277437,43.063102468,43.046436791,43.060615069,43.059255084,43.063381951,43.095377302,43.119264957,43.078847751,42.994483247,42.959209588,43.112033143,43.089846336,43.119514242,43.778490759,43.778599138,43.79869291,43.791418312,43.791237617,43.75467726,43.791564467,43.77897491,43.778863302,43.797235993,43.786223978,43.783191044,43.769408001,43.753022527,43.785434835,43.786577954,43.778836027,43.784258725,43.774467653,43.783692409,43.77669826,43.777081023,43.791964472,43.784269969,43.784744587,43.778881103,43.787567921,43.791589062,44.227014388,44.186118598,44.212140538,43.844744329,43.84072828,43.817146343,43.812732651,43.815676018,43.83357673,43.833064484,43.846939735,null,43.811458354,43.849224459,43.785076401,43.808835509,43.860017214,43.767364557,43.817219142,43.841394272,43.801561174,43.834024201,43.817251871,43.81919833,43.808759541,43.808763863,43.793827058,43.836495394,43.799447715,43.843001195,43.796992549,43.76694313,43.795106935,43.762484775,43.825059229,null,42.628292842,42.643160447,null,null,42.496660935,null,44.451505803,44.485191735,44.463267945,44.565472212,44.572953688,44.457838563,44.466129999,44.456233594,44.483713738,44.646455657,44.543437188,null,44.428053121,44.27229659,44.553135617,44.53651708,44.387366029,44.49475246,44.493473611,44.497658317,44.488303346,44.49724058,44.492246149,null,null,44.497531713,44.448853887,44.441027928,44.445130252,null,44.449574153,44.448703613,44.444335683,44.292036561,45.10804631,45.107993944,43.134913658,42.545486595,null,43.041889276,43.036122665,43.939185439,43.939129964,42.608546243,43.557163191,43.564228413,42.578035951,43.100555994,43.104028217,43.09364959,43.103948169,43.095488128,43.109000209,42.961253349,43.01554006,42.998249825,43.005442272,43.024693963,43.02570903,42.957035835,43.029413904,43.022643919,43.018745215,43.005500851,43.01969173,43.045621041,42.997604075,43.05110429,43.111140548,43.060069275,43.057924422,43.045493539,43.176869768,43.057094736,42.924868364,42.996328329,43.068905669,42.930286172,42.923620487,42.917247496,42.925066838,42.923312893,42.928381194,42.901496595,42.89435574,42.91586705,42.858609458,42.861110998,43.119256578,43.166791041,43.175449828,43.191457081,43.178852502,43.18440908,43.190742074,43.079867288,43.044103659,43.050180139,43.046362398,43.043781314,43.066085304,43.040710408,43.048296933,43.038700945,43.053725809,43.064423485,43.064365775,43.040729722,43.060688186,43.060631127,43.050001049,43.060404484,43.064307227,43.074574689,43.052759724,43.036016996,43.050546978,43.069240457,43.074696376,43.059853845,43.062759053,43.058832935,43.050357661,43.053412776,43.050571949,43.05686546,43.01403105,43.023825711,43.002886391,43.018637384,42.988088043,43.00651345,43.006521239,43.013033153,42.989207119,43.002540253,43.002581016,43.008785412,43.008312811,43.016707803,43.014993304,43.022938886,43.014031761,43.016524698,43.002771308,43.011310959,43.002813408,43.010588275,43.002808011,43.010445057,43.005285318,43.01731559,43.002868482,43.01829385,43.006493836,43.017471773,43.016547555,43.002937123,42.988086937,43.011524277,43.020065958,42.99557133,42.988027926,43.001050532,43.016577124,42.996703228,43.024662196,42.992249883,42.995427359,43.010958573,44.806989808,null,42.604181537,42.602725727,44.523130722,44.51212666,42.673587182,42.670528192,42.671967915,42.692189562,42.673540716,44.174325396,44.171121223,44.160783828,44.183590002,44.17648862,44.170970489,44.192110228,44.174184852,44.176917089,44.190250231,44.192180671,44.163669245,44.176004986,44.203910016,44.215457702,44.212663693,44.218712764,44.211141814,44.234817397,44.203834329,44.211007876,44.223738184,44.207288911,43.036251584,43.038673003,44.197803497,44.155345278,43.997518605,44.065246994,44.127023203,44.032557708,44.100617592,44.018396882,44.287298602,44.267238085,44.266080088,44.261846579,44.265664078,44.273865389,44.284136877,44.273055357,44.265735626,44.288462588,44.258685102,44.316081149,44.265674683,44.241330079,null,44.286795112,44.258565898,44.271418319,44.271137622,44.248584519,44.273047169,44.291056738,44.261933923,44.24409871,44.272781662,44.279481259,44.244084344,43.214751564,43.514388357,43.345908364,44.802193716,44.815555766,44.790508519,44.7883146,44.820451822,44.795841407,44.785679905,44.776065086,44.77531545,44.829324897,44.831542538,44.822822935,44.771158711,44.77491993,44.799364399,44.809128355,44.826118177,44.832741969,44.815538326,44.82241927,44.840914639,44.797794736,44.802163618,44.799862376,44.821133743,44.813545716,44.820553293,44.821434286,44.802286106,44.843601046,44.789214131,44.784924404,44.653228084,44.315700103,44.901716626,44.891336745,45.232513139,44.793496434,44.78696206,44.782022744,44.775307333,44.781055301,44.781902314,44.767025033,44.780281644,45.099209492,45.099629313,45.104683653,45.079528578,45.07375872,45.097988723,45.099464275,45.098398234,45.073586834,44.45523229,44.453098091,44.358009045,44.357499434,44.377631483,44.395541938,44.383909827,44.388021375,44.391082246,44.383788867,44.354796912,44.403890676,44.376435153,43.62774256,43.627558929,43.627582313,43.663973233,43.627689164,43.250441409,43.211788326,43.192477316,43.221335897,43.207015922,44.081912883,44.091199159,44.083933142,44.089033263,44.124401847,44.1156307,44.074945574,44.095964866,44.125023071,44.089022013,44.083701701,44.075753501,44.094574188,44.085959731,44.095306219,42.988290105,43.003102438,43.022950348,43.015609119,43.011819006,43.031436601,43.042784547,43.043476114,42.978971085,43.005169677,42.988315368,43.012459358,42.988593529,43.007597843,43.0082013,42.997435513,43.010141827,43.07871424,43.045685754,43.124723965,43.160732948,42.922711173,43.103161352,43.131830734,43.004694177,43.020164701,43.155815756,43.031161021,43.169119649,43.107956413,43.15650779,43.138505473,43.111559798,43.027942335,43.102717871,43.110192014,43.096075949,43.082941745,43.110157312,44.144870545,44.240571739,44.313651723,44.211997676,44.215511105,44.218425751,44.23743239,null,43.87924417,43.884132311,43.877191887,43.898091141,43.880722945,44.265598784,44.286654646,45.627868614,45.423887672,45.498007524,45.293020979,45.28195945,45.637250241,44.967731412,44.985165992,45.187698026,null,44.976931142,44.948766227,44.953930376,44.96099373,44.962473285,44.975926976,43.756140811,43.946813268,44.0284982,45.470040153,45.502540498,45.495269302,45.482683649,45.494637995,45.474509316,45.494583621,45.484883473,44.851036308,44.876619069,44.876340927,44.863805213,44.876326969,44.871083054,44.876363763,44.87648508,44.884442965,44.872027386,44.861177187,44.845291863,44.95930186,44.977633501,44.955226052,44.951166596,44.960926548,null,null,44.980885107,44.962739404,44.960035837,44.959157847,44.967291112,44.968461794,44.969732912,44.973524095,44.955298203,43.533744252,43.400367737,43.449383765,43.317302271,45.787405655,45.401450026,45.401364489,43.069334968,43.006740523,43.093659467,44.297511104,43.075533277,43.075445042,44.257073603,44.257025669,44.257037937,44.386444346,44.56511986,44.258399414,44.267523032,43.998566628,43.979178301,43.99102663,44.290930202,44.267735341,44.295511638,44.301446708,44.26861641,44.270587195,43.163094033,43.192473405,43.17845347,43.046766131,45.633131076,44.283487208,44.274544057,44.277466104,44.285975772,44.283412751,null,44.01957933,44.018006103,44.014650714,44.032382116,43.996496377,44.001321136,44.039459682,44.018332288,44.03260831,44.043036561,44.039533431,44.023818078,44.019659228,44.010710858,44.03900603,44.068305511,44.016067993,null,44.018367442,44.030117354,44.034194195,44.005738109,44.010766795,null,44.010017784,44.013594359,43.999461528,43.075310596,43.07524449,43.075457937,45.000963253,44.87776702,43.10167573,43.109524074,43.12410728,43.10774785,44.733407639,44.979631057,46.588917352,44.963578589,43.184150327,43.176713852,43.185319245,44.608707673,44.620198646,44.611119339,null,43.807733331,43.734928606,43.81497717,43.894639962,43.328733354,43.330432231,43.325696254,43.323115513,43.310615038,44.377995867,43.034174359,44.345781144,44.53400105,44.212550316,42.555560448,42.606225671,42.581776901,42.603625231,42.590719471,42.584462695,42.581252217,42.586960055,42.590732798,42.60061767,42.582418251,42.580395511,42.558835163,42.578874029,42.573923131,42.56816471,42.62298406,42.582260185,42.566285243,42.62608097,42.563379279,42.578284447,42.587892966,42.568615869,42.580344676,42.569367274,42.580925608,42.58626836,42.558842104,42.570404734,42.598902903,42.580633622,42.575897904,42.551440166,42.577869783,42.602642482,42.580786455,42.577784529,42.581470266,42.580698595,42.602955284,42.607851332,42.583976755,42.588145145,44.901523309,45.003324815,44.836188271,44.913523513,43.528467641,43.38692989,43.351367837,43.36265694,44.46097011,44.458082274,42.722610492,42.69148942,42.688153072,42.717415737,42.70138984,42.724438363,42.755792193,42.685994376,42.829353773,42.836835787,42.526717877,42.545860545,42.587869755,42.497704161,45.530300049,43.474107934,46.013671264,45.770111515,46.702613839,46.720663342,46.720655013,46.718666185,46.720737655,46.722951671,46.70319058,46.727823853,46.719433347,46.719452618,42.520926782,42.538409669,44.150520998,44.156599029,44.148576801,44.155609953,44.148200296,44.163199153,44.148348382,44.145247041,44.152983362,43.115800452,43.101730101,43.118598851,43.1091059,44.938727828,44.423972594,44.669558683,44.343748787,44.668257238,44.669864527,44.449868482,null,43.07569058,43.297759404,43.296663599,43.300946481,43.28494834,43.025823476,43.014228215,43.01617682,43.018821894,42.959321748,42.979427338,42.973219272,42.951967974,42.95936145,42.962759943,42.965171726,42.953444186,42.961016736,42.951128111,42.96227791,42.98488172,42.961230755,42.966433497,42.951166518,42.966069663,42.957187328,42.981893464,42.537018951,42.53544811,42.513595063,42.551140529,42.539420566,42.536637241,42.566218628,42.519132532,44.494098521,43.141146667,43.147726564,43.122523317,43.133791393,43.1271304,45.122643301,null,46.453084748,42.860136309,42.873167279,42.867125749,42.872647821,42.886372895,42.886420574,42.939252918,43.968027648,43.970316278,43.971089837,43.625931886,43.63276963,43.035894207,43.053168663,43.038104936,45.178664293,45.176782568,45.185174291,43.090527559,43.089187422,43.088532024,43.089066369,43.091931422,43.090872647,43.089080105,43.467261397,43.475043822,43.460035048,43.461989285,43.464261693,43.475089583,43.477560942,45.88580656,42.929897069,42.90861724,42.898827903,43.018759741,43.018854396,43.017553402,43.021429591,43.010131629,42.736160036,42.682387356,42.698805495,42.752225311,42.682287245,42.712151344,44.393441493,45.315797743,44.247113181,44.939681856,44.9224072,44.936677246,44.93785625,44.939567535,43.646146031,42.912123488,43.385082417,44.774969391,44.775026977,44.882855197,43.5397775,43.532605548,43.532777249,43.601606578,43.605319317,43.612990658,43.582713672,43.582838267,43.587988661,42.985960352,43.005771792,42.973194182,42.945990063,43.949177615,42.847547006,44.896579877,44.902196947,null,44.904834771,44.926194588,44.921007293,null,44.932195075,45.395864063,45.481486935,43.238152711,42.959602173,42.952793208,42.951540968,43.225623657,43.213548132,43.222399852,43.195286101,43.221873338,44.025304826,43.400833962,43.364433667,43.445335186,43.458006782,42.995083201,42.992256367,43.187793306,43.193920858,43.335410673,43.340925272,42.726711647,42.734220784,42.719637957,42.721450149,42.711408749,42.724642032,42.696374079,42.71859732,42.704178666,42.730131604,42.699624029,42.74234898,42.715341564,42.704076617,42.717902573,42.714953191,42.768174701,42.719646474,42.731893062,42.709556994,42.737801291,42.751366091,42.704076184,42.712427967,42.713135975,42.730056931,42.732536106,42.751447748,42.707732816,42.726107146,42.731567514,42.744126484,42.715150046,42.712433578,42.710829237,42.705714222,42.725987375,42.71948829,42.766403609,42.707542343,42.747645273,42.714139455,42.75072232,42.736832354,42.697028545,42.735493269,42.703415232,42.746280864,42.7144725,42.712469407,42.712409239,42.698590041,42.730374527,42.718382974,42.699623786,null,42.686459004,42.702903752,42.693836012,42.697199326,42.672284955,42.679499791,42.704382903,42.676408597,42.698253442,42.656538,42.683857937,42.666361631,42.674007777,42.693410083,42.657091646,42.678161814,42.679473176,42.69271877,null,42.5913627,42.591857359,44.074358215,43.511341802,43.520810815,42.512754846,42.533273449,42.507465244,42.510118582,42.523007209,42.507017887,42.497055417,42.516861979,42.501797436,42.501739836,42.504225371,42.516663867,42.504989239,42.534516153,42.521492295,42.52297577,42.517106888,42.518132945,42.774431896,42.841133258,42.926442929,42.937825635,42.918558625,42.922413233,42.925344972,42.927033553,42.865928612,42.871083276,42.872223258,43.008546174,43.009601191,43.007253807,44.436316979,44.482021767,43.339606619,42.524342747,42.536108472,42.918725579,42.903432422,42.916017847,42.908621651,42.892345383,42.899287968,42.786870205,42.82963205,42.81341005,43.230154679,42.675315234,42.687419568,43.116418167,44.034426141,43.176881017,44.187947005,43.194783696,43.197546177,43.196898028,43.329479534,42.634229205,42.623840635,42.624792119,42.630761504,42.634329849,42.630502234,45.927345896,43.307755381,43.317773089,43.316801496,43.323161253,43.317163332,43.323139734,43.317709545,45.042261379,45.167440245,43.446004531,43.4267479,43.430727516,43.412223679,43.430789169,43.417970152,43.440211444,43.40748163,43.427524774,43.42744249,43.412223264,43.434096285,43.427376223,43.423691996,42.785217302,42.834925738,42.938912833,42.934805996,42.928556441,42.934904814,42.935037133,43.773930584,43.749712899,43.725375086,43.756352092,43.765851357,43.720826351,43.744305787,43.731975445,43.756471903,43.728481409,43.748181873,43.739926877,43.762277903,43.758154226,43.76411323,43.760674978,43.732171737,43.727391415,43.729910155,43.773854904,43.756355853,43.723053257,43.762157475,43.756299861,43.743214825,43.723189714,43.758544459,43.781411692,43.848807239,43.750722994,43.831848375,43.750597482,43.753637566,45.162092547,45.126584893,45.137704776,null,43.473378729,43.461285404,43.466226697,43.478949224,43.459880691,43.456244035,43.061352547,43.090423546,43.053644401,43.089909274,43.08276296,43.061436135,43.058237,42.907917402,42.932320465,42.923797684,42.932843043,42.929890034,43.162099637,42.994279065,42.991934373,43.734676368,43.748313183,43.744359883,43.747765132,43.387008549,43.568084984,43.571798831,43.558113935,43.560581696,43.545365653,43.540910042,43.543624738,43.538516745,43.729320216,43.728244242,43.731776462,45.460824384,42.65080979,42.58398068,42.839631509,42.816057716,42.775782587,45.409604381,45.23521951,45.121034027,45.233528891,45.047634398,45.139356287,45.962868379,45.915980844,45.807300904,44.886070367,43.106814329,43.110001714,45.128246307,45.125855134,43.063747067,43.104640612,43.119423597,43.053690187,43.045732072,43.038688905,43.082539215,43.085687337,43.031230976,43.052373958,43.012290953,43.089549711,43.071802356,43.101975107,42.966656361,42.988527622,42.982421815,43.061060406,43.051579438,43.044291007,42.997679167,42.975555528,43.004918724,43.016002536,43.010334375,43.065577986,43.088923454,43.029626771,43.077045441,43.090082597,43.097223496,43.098010986,43.071613709,43.078817301,43.069676369,43.067910249,43.12144665,43.138058394,43.133988999,43.010160515,43.006167249,43.081629426,43.085694691,43.058514814,43.089661326,43.089524432,43.075004466,42.952169859,43.148644301,43.141447083,43.134131211,43.042627979,43.003137618,43.015819942,43.073053082,43.089729975,43.088966862,43.051798614,43.079905281,43.02219643,43.089400167,43.082364954,43.02219643,43.0232274,43.109758921,43.001980053,43.008252597,43.012297675,42.973905153,42.970046997,42.996517814,42.988160839,42.984929614,42.981044883,42.959621553,43.111855135,43.184094119,43.012443205,43.023204325,43.00665454,43.016982612,43.022204237,42.984751106,43.104011562,43.08270499,42.988466137,43.003402256,42.988369755,43.075209785,43.006440179,43.036014487,43.064657743,43.026839231,43.06059125,43.064557579,43.03873794,43.104332982,42.991934622,43.111093383,43.002842332,43.081127683,43.020990491,43.003117397,43.02185725,43.009645283,43.014925561,43.095400403,43.071856819,43.084321884,43.089945638,43.089626914,43.069541284,43.082033986,43.083905868,42.983793802,42.994761526,43.126998863,43.113888304,43.017025808,43.014136504,43.017008278,43.066525134,43.071137599,43.029623752,43.054711839,43.067849456,43.060614529,43.053566103,43.021160763,43.083910585,43.077454212,43.056505099,43.041370511,43.104965142,43.100381559,43.017285713,42.988486222,43.137803261,42.990453615,43.121117724,43.067462304,43.047256289,43.089879378,43.060835863,43.084766375,43.027449155,43.052246431,43.059260332,43.04994667,43.089795642,43.142524798,43.076899436,43.060687399,42.993679701,42.981152747,43.04859088,43.067880346,43.081215951,43.089730872,43.071218066,43.14322917,43.135207226,43.040289879,43.14837265,43.016864845,43.021576992,43.002885032,43.023008896,43.052992611,43.014141635,43.122527136,43.00078223,43.081974701,43.062366622,43.041636001,43.119512672,43.006429693,42.929416839,43.089255815,43.082365182,43.083867429,43.080158522,43.043152495,43.072640047,43.075245802,42.97702475,43.073479545,43.080018989,43.006469825,43.071268521,43.084589468,43.060554101,43.053413533,43.072838929,43.060099615,43.081722697,42.937679644,42.975895342,42.995314062,43.074647014,43.089739423,43.072968931,43.038807489,43.10133265,43.107225858,43.082748095,43.00304768,43.006460435,43.021587474,43.024207948,43.012344944,43.074870896,43.096745577,42.984931108,42.988530976,43.014144805,43.012272895,43.023782407,43.012314858,43.075205573,43.090001403,43.054570644,43.039470888,43.038704331,43.003988608,43.089735536,43.119333756,43.119514698,43.148698979,43.089640168,43.119951753,42.985912763,43.060616119,43.065658928,43.09254575,43.089864846,43.090566145,43.022175912,43.021985713,43.016954903,43.064298106,43.067898082,43.089960603,43.093307544,43.044556257,43.089142492,43.141235239,42.991129335,43.08494358,43.016701373,43.045721053,43.043177633,43.043871127,43.091673955,43.111995307,43.04256806,43.038732552,43.041684313,43.063939212,43.043284991,43.026035649,43.104641307,43.089992161,43.045832636,43.037470573,43.089879353,43.067574238,43.089841467,43.111950188,43.075097336,43.163217896,43.163229493,43.148690632,43.022039145,43.002847602,43.017022301,42.995980394,43.021444742,43.005665613,43.073787831,43.083078626,43.089152263,43.085764389,43.049282237,43.056473887,42.98742154,43.106434405,43.070319149,43.089159456,43.067556338,43.181210465,43.104750463,43.060394489,43.067861186,43.011171926,43.0103354,43.006440726,43.061321434,43.045799336,43.133978565,43.11323207,43.140018991,43.045081058,43.071200938,43.10493359,43.062409223,43.104327168,43.075161599,43.038917878,43.065553846,43.01703777,43.126829602,43.05145542,43.111954713,43.067875679,43.057804166,43.075773896,43.090388986,43.104404971,43.101148408,43.075344685,42.988542577,43.052523015,43.104799287,43.175211149,43.164095493,43.390623939,42.838191415,42.778106054,43.310907323,45.04820806,46.713389829,46.535411624,45.772010771,43.910968146,43.496751286,43.859154243,43.028999963,43.985799544,43.344058416,42.965554221,43.648407218,42.696898547,42.604012607,42.590166261,42.555524749,42.784035054,43.023950176,43.040246365,43.038674578,43.040246463,43.040246456,43.038681542,43.040763735,43.037013905,43.0389977,43.040304932,43.089656458,43.075224898,43.082882051,43.071259092,43.08622165,43.089344752,43.075233534,43.139859602,43.126315714,43.108304635,43.043927584,43.183373307,43.072611516,43.109845582,43.079121015,43.078399536,42.994497488,43.084026414,43.134005236,42.968838986,42.995982091,42.959246834,43.067999133,43.067999133,43.067897265,43.052862356,43.054898154,43.065041566,43.062017386,43.037626747,43.064147366,43.104670213,43.078722609,43.08927252,43.05921817,43.077654944,43.074861023,43.177923673,43.125476622,43.043334478,43.034752275,43.06396747,43.060435605,42.988209589,43.06052468,43.141903834,43.11893359,43.096937886,43.089902913,42.995096092,42.995458959,42.988260414,43.077502067,43.060296239,43.08509993,43.113256838,43.042924074,43.053047807,43.088146862,43.064259057,43.014081248,43.034879178,43.056673993,43.060124891,43.044413326,43.062032776,43.05519199,43.052551113,43.074895846,43.07230989,43.066976942,43.080082771,43.097294667,43.072572323,43.074898629,43.083672191,43.106817502,43.092757424,43.080704376,43.081101172,43.068257387,43.07421366,43.07330235,43.070928692,43.076964511,43.015783636,43.060530577,43.103518168,43.083996921,43.078757228,43.10111003,43.084281131,43.089484492,43.073249136,43.070962435,43.075205987,43.036306825,43.106551706,43.06753478,43.073362831,43.056589282,43.103705863,43.095616875,null,43.075867572,43.067701742,43.071029432,null,43.067061982,43.072045059,43.074936934,43.084664601,43.030584868,43.07309804,43.04514149,43.031765284,43.121182491,43.141678957,43.104039856,43.132983797,43.047289306,43.064199652,43.092269447,43.128375272,43.082257194,43.055720891,43.074289223,43.102287549,43.067670232,43.103353228,43.031783486,43.131113703,43.105795561,43.139305683,43.133210201,43.125891181,43.046817354,43.035649127,43.04697227,43.053759733,43.095471682,43.092373535,43.082310471,43.099919704,43.141951557,43.065503158,43.05658129,43.131158377,43.105149156,43.130334964,43.054039084,43.097842781,43.106864425,43.097556122,43.134199997,43.014820935,43.067713871,43.064149679,43.071068981,43.06769607,43.122271606,43.098289778,43.09831622,43.069933537,43.075339863,43.091633945,43.077311839,43.075447243,43.075235902,43.050533615,43.120999838,43.081032731,43.067761803,43.074619994,43.073252218,43.060851853,43.075291616,43.063091003,43.076144927,43.067907022,43.03377899,43.083894197,43.112510448,43.134042143,43.094192297,43.100682916,43.073218861,43.095616059,43.082643157,43.073264312,43.112566002,43.111570454,43.05668495,43.069297804,43.081959758,43.068119582,43.073127653,43.086852732,43.073302406,43.032538823,43.03278557,43.075203105,43.045852314,43.077645448,43.014543011,43.077574371,43.0645228,43.075244039,43.090255292,43.078312575,43.075990305,43.0938326,43.075891586,43.076239174,43.06697937,43.084361342,43.118825878,null,43.106630304,43.093208435,43.142385312,43.083894128,43.075933215,43.06015412,43.073900676,43.06085977,43.068225665,42.932902488,42.919366991,42.958590396,43.28216952,null,43.18003368,43.185011072,43.174655666,43.175789477,43.16263283,43.196736522,43.175772047,43.193640427,44.529422046,44.519311006,44.508721884,44.502506146,44.516952851,44.517900775,44.502044993,44.505707976,44.484397123,44.504611332,44.513662684,44.533608749,44.504141082,44.53145408,44.513340397,44.5236334,44.508642411,44.512708099,44.498866624,44.500925713,44.517217119,44.492824222,44.513640171,44.513715262,44.510706292,44.519302955,44.507858976,44.512172541,44.489297388,44.52037917,44.502417212,44.50864809,44.511892926,44.516021918,44.526098945,44.502051862,44.524562044,44.510783968,44.511972452,44.50415534,45.464142398,45.46339244,42.999149509,42.9994567,43.010135632,43.003065132,43.041454228,43.029362636,43.067934574,43.103487521,43.040419625,43.071060878,43.012780859,43.042240657,43.052965273,43.045762051,43.040433428,43.017038015,43.012297968,43.024778841,43.023557088,43.056337681,43.065977152,43.089911064,43.033188198,43.068009118,43.060497762,43.044587871,43.123584897,43.119489578,43.062262532,43.11281394,43.177702972,43.155202678,43.17664526,43.181105972,43.090047722,43.07481362,43.073277027,43.073838666,43.069332634,43.060290575,43.091302264,43.088669095,43.08113416,43.071192244,43.086907401,43.067921001,42.941886352,42.930308604,43.015137448,42.958393095,42.988227288,42.97874124,42.987937587,42.988264008,42.953233571,43.067910946,43.107755822,43.086663626,43.054568756,43.060181602,43.067978076,43.028483341,43.784116588,43.773277337,43.788065111,43.77775163,43.783552,43.753181825,43.791514004,43.794541552,43.780626679,43.786654144,43.775259871,43.774306609,43.778816062,43.784423763,43.784320749,43.744908651,43.767628637,43.783638248,43.783729237,43.790887322,43.7736663,43.773450643,43.783492041,43.787726854,43.765695841,43.786274418,43.768904046,43.766572996,43.777722367,43.788162249,43.791772584,43.791432739,43.782847818,43.783066304,43.785319839,44.231906521,43.88512161,43.850020869,43.801705948,43.804631036,43.804737882,43.817358923,null,43.841395494,43.816952633,43.844746265,43.841251435,43.814643146,43.814644281,43.807634453,43.800896821,43.805609679,43.792397126,43.769461524,43.837942472,43.801419201,43.809958727,43.828090658,43.812811698,43.841921463,43.837357404,43.813895658,43.808626528,43.810015675,43.808748217,43.836834217,43.801511714,43.839142616,43.814987175,43.81408979,43.819315855,43.811050175,43.842046583,43.795184265,43.794102043,43.812758766,43.829449211,43.756867757,43.817291893,45.083586638,45.228962146,45.079042361,45.237978547,45.238504024,null,42.57214168,42.562055847,42.657907352,42.668091782,42.496307625,42.631173491,42.587077351,42.590081047,42.60534467,44.491348118,44.457570417,44.585175042,44.576255941,44.572817609,44.577531789,44.559562368,44.59790299,44.439787068,44.31445009,44.313542914,44.41619308,44.485657599,44.498228207,44.500599776,44.481965601,44.475619018,44.49694221,44.497433072,44.491443785,44.471551774,44.48659073,null,null,44.449294488,null,44.450065998,44.441966968,44.449941491,44.45174422,null,42.735902469,42.734541082,42.741037063,42.740279155,42.733108323,43.051923322,44.508961897,null,43.938278297,43.945456288,43.943436809,43.949851378,42.525456746,42.532256136,42.610452032,43.556664138,43.570305291,43.183844572,43.096060833,43.096241765,43.104472945,43.097025332,43.094853787,43.09012634,43.095500123,43.107850318,43.094960103,43.095978648,43.101288707,43.104608532,43.015362493,43.015936282,43.015223572,43.01559199,43.026595333,42.996258559,43.015464414,42.957066672,43.021558023,43.020419841,43.022624981,43.010813867,43.051006876,43.057277255,42.901692046,42.885507455,42.924515578,42.881474656,42.915935837,42.916384257,42.914250591,42.916287337,43.124713185,43.187318987,43.185023966,43.179167295,43.163745129,43.17026474,43.179180456,43.042431182,43.04355512,43.049893026,43.058705926,43.085637101,43.085707874,43.074836936,43.046855496,43.101066671,43.060738147,43.048118289,43.051202997,43.055055666,43.060402261,43.074750011,43.040439907,43.085704211,43.045505049,43.035958374,43.04013737,43.082830679,43.05975086,43.060038076,43.067398468,43.062513101,43.102002634,43.060095302,43.056874828,43.044819629,43.059176834,43.042151436,43.07595376,43.063980438,43.059600143,43.012063985,43.012526788,43.016612904,42.988196923,42.992706956,43.016663623,43.016289675,43.016443809,42.995294926,43.016511841,42.999240777,43.002802144,43.012652236,43.002943686,42.995441946,43.002112194,43.012325629,43.006557139,43.016378683,42.992625642,42.98912966,43.017047695,42.988087763,43.02100372,43.012321268,43.016618508,43.016468132,43.020127385,43.00631718,43.013872329,43.016572767,43.012127692,43.016513535,42.988277053,43.955949439,43.966215739,43.954564439,43.958794894,44.818184598,44.803621894,44.817787633,44.79880077,44.795776374,42.600216561,42.60198572,42.602826673,43.292909489,43.273503879,44.539355545,44.54153792,44.533930661,44.512126184,44.523483841,44.519297542,42.665751048,42.678792291,42.671905778,42.670236136,43.11872382,42.573882282,42.733968529,44.193216228,44.173069638,44.171094827,44.166028785,44.187209245,44.1726918,44.170933145,44.17493874,44.181667679,44.186305843,44.176345734,44.209973324,44.205247541,44.229761469,44.204668685,44.214739717,44.229827765,44.204735782,44.212907299,44.233195532,43.038542147,43.036694632,43.036251492,44.042155376,44.120005602,43.899052674,44.028421692,44.111695686,44.133101211,43.981475515,44.282052152,44.311661017,44.264143456,44.273026238,44.232587916,44.247686163,44.250019003,44.243750575,null,44.253665887,44.275237548,44.243152676,44.244018744,44.286517452,44.288209591,44.244084371,44.246366707,44.243668432,44.234820088,44.244073936,44.261933666,44.275754596,44.31698093,44.294521751,44.261844289,null,44.275974896,44.247771931,44.114778258,43.371159959,43.402325566,43.223438714,43.521249872,43.427495381,43.322826695,44.788721589,44.839814763,44.799802936,44.800944689,44.804365663,44.842331644,44.81143283,44.843459003,44.795170897,44.797813607,44.815883663,44.791516015,44.814882424,44.790171383,44.793037961,44.785652531,44.801298596,44.853219724,44.801567236,44.815581883,44.799386612,44.798713506,44.795097639,44.820429109,44.815943313,44.676185879,44.814135101,44.864903488,44.901590548,44.774856029,44.771138334,44.775131173,44.78185057,null,null,44.686072539,45.089233426,45.09240908,45.095492369,45.088854931,45.100471019,45.094341639,45.093313578,44.380163879,44.36902023,44.354701303,44.397479154,44.379280535,44.379310748,44.37486671,44.395535966,44.370830865,44.386232534,43.627025454,43.625883746,43.624611572,43.627619134,43.627706926,43.61918213,43.837448081,43.840670393,43.250680414,43.265081781,43.254389424,43.206699098,43.20789,43.218042498,43.201809225,43.224443194,43.221656421,44.072336176,44.110714599,44.075858492,44.075605068,44.074930165,44.118683996,44.088942851,44.119179249,44.087098211,44.073309706,44.085917879,44.086811773,44.091217165,44.108385569,44.103460404,44.085555095,44.109328138,44.078528514,44.087284418,42.986236162,43.005447192,43.012253311,43.007132587,42.990508305,43.009374106,42.987333527,43.012801203,43.007468094,43.022131226,43.013366866,43.009606404,43.037280498,43.003589189,43.009329464,43.009722205,43.022826157,43.012550539,43.002954427,43.011379429,43.016886089,43.010482089,43.033244296,43.009686548,43.155499651,43.117922274,43.052769613,43.137107168,42.860660539,43.108093684,43.100229574,43.164515577,43.158062807,43.137539166,43.14391459,42.99193547,null,44.013601772,44.24316722,44.228713115,44.242551426,44.22869443,null,43.912004215,44.279339224,44.26426165,44.275215089,44.279943025,45.326158692,45.822496114,45.028300173,45.056170534,45.137402588,null,44.962199891,44.958492728,44.960757229,null,43.897207821,45.476413805,45.49464003,45.473613446,45.49904139,45.481529297,44.852330266,44.859202209,44.85751913,44.868995082,44.855434993,44.858674962,44.862716307,44.843790505,44.871471826,44.881834626,null,44.869367585,44.880157992,44.87425475,44.915463192,45.178271275,45.188533651,44.844773688,44.886645014,44.833943118,44.969727999,44.95875837,44.966151483,44.971057574,44.950325012,44.969990366,44.973864057,44.969501294,44.964796534,null,44.95933522,44.963156311,44.969782018,44.969501912,44.959307594,44.978807748,44.962788773,44.953716381,44.953532792,44.937756357,43.548376684,43.970143366,43.960971875,43.899200828,43.899647275,43.841450471,43.100423945,43.175134401,43.087320345,43.013545944,44.42823293,44.528917435,43.075960625,43.072270808,43.076221686,43.077563587,44.345258814,44.258169778,44.302738409,44.369875974,44.371531847,43.978633932,44.019820749,null,44.292082995,44.294606531,44.270689102,44.273158627,44.262327388,44.303528372,43.162756869,43.178076745,43.168526762,43.184345051,43.039615629,43.043198053,45.633278287,45.632986638,44.277762418,44.264578745,44.284514539,44.021515777,44.03214661,43.995932112,44.043710935,44.010738367,44.010716067,44.010474178,44.017759829,44.013432277,43.989872352,43.996032685,44.028536371,44.020386244,44.011056208,44.017861556,44.018047185,44.018171052,44.018007252,43.995107328,44.031840468,44.021550352,44.032589417,44.015961137,44.003171999,44.030429118,43.981786643,44.039433209,44.015442261,44.020331538,44.007490658,44.016064049,43.996024748,44.026082688,44.010747908,44.067113695,43.074584539,43.077733537,43.075730228,43.073529475,43.075244257,44.847511397,44.826508076,44.823666398,45.321477254,45.31593383,null,43.124027474,43.107549406,43.101168458,43.120540869,43.104095013,43.125842149,43.109461241,44.945238903,45.002972565,44.74186866,44.69615425,43.177129105,44.620090769,null,42.779376693,42.780338144,43.785636928,43.308743636,43.30930631,43.309566634,43.317209173,43.31997181,43.320355303,44.394727305,46.016771891,42.881568028,43.182842385,42.580789363,42.572662506,42.559156108,42.58066293,42.623583441,42.613436476,42.586905253,42.570575395,42.588276223,42.568135791,42.558961945,42.553294353,42.551555912,42.56674533,42.598911946,42.583417201,42.565680875,42.572364764,42.568228014,42.59704635,42.606195836,42.567568838,42.602693686,42.564250918,42.575280181,42.598987948,42.565786787,42.581019525,42.580717326,42.603270581,42.59081829,42.558976505,42.566098602,42.575926167,42.580198953,42.580918357,42.551460824,42.580849172,42.596814529,42.598830999,42.579284298,42.58349495,42.59075259,42.566193806,42.581019987,42.583984223,42.580753553,42.563112254,42.571263172,42.572151116,44.988003138,44.919526076,44.944974224,44.925009718,44.919759266,43.817040847,43.401698025,44.48632542,44.478151382,42.807943838,42.66974036,42.725067436,42.802045962,42.815553017,42.504351582,42.585467596,42.670631911,42.830651689,45.446762924,45.55232334,43.580764136,43.197123823,43.535429168,45.848678892,46.03600725,45.993820098,46.72800526,46.706071934,46.720626747,46.720664507,46.706283516,46.713454252,46.713270967,46.732521984,46.719961928,46.728022295,44.960341421,42.53208067,44.151519168,44.147671232,44.152161651,44.167720628,44.148054387,44.153670061,42.799331482,43.085644899,43.109505003,43.081549492,43.076429851,43.087120983,43.098285977,43.108812252,43.129571556,45.044129921,44.664154719,null,null,44.657547138,44.679001871,44.69147918,44.655627428,44.686266885,43.087167344,43.28661657,43.296700918,43.301041367,43.301877635,43.279324509,43.013176743,46.655441115,42.952143269,42.967515504,42.967301809,42.962857309,42.959407773,42.966503879,42.982239814,null,42.959103522,42.959568024,42.959405773,42.960052224,42.96043778,42.961252615,42.952068158,42.975724136,null,42.536942069,42.566290659,42.565750329,42.517852724,42.533998751,44.666015587,43.323706721,43.729487717,43.807638386,43.118862406,43.144065149,43.11623427,43.14090835,43.133780072,43.135006622,45.111635837,45.12373173,45.11025635,42.917904671,42.887686369,42.929189992,42.886689999,42.879005564,42.857049462,42.930371803,42.951875874,43.968298352,43.968329733,43.968347504,43.633099955,43.632066953,43.628867319,43.629995866,43.633472206,43.633723827,43.036898859,43.045735898,43.036519018,45.183618996,45.179622128,43.448091212,43.089062867,43.08907096,43.089066816,43.098275827,43.081962421,43.08920699,43.474804988,43.474704845,43.460035022,45.87061289,42.894063208,42.928688294,42.90882331,42.897570205,42.915416491,42.916856303,42.907735095,42.914756737,42.899869042,42.910940288,43.009658606,43.006463906,43.019933172,43.016838927,43.012321404,43.00937049,43.016475496,43.020093988,42.727678959,42.699122975,42.697251326,42.730975856,42.695604109,42.720700218,42.69688267,42.723485681,42.703603194,42.688469478,42.73316377,43.920468558,43.663998718,43.797157666,43.795612115,44.380952743,null,44.940622893,44.935840761,44.937812192,44.933396388,44.936062172,null,44.88606059,44.887845513,44.884655334,null,45.312589384,45.177782953,45.311294335,44.749881554,43.603638615,43.600900044,43.587937617,43.597971561,43.60632345,43.613863165,43.611348285,43.587316398,43.607407637,42.859539294,43.005859142,42.944361238,43.008485794,42.954616874,43.059904883,43.056620601,43.07041936,44.069959978,44.168333087,42.542767352,42.967866231,42.977370213,42.971744036,42.849876445,42.793443795,42.738180702,42.694264516,43.115516784,45.056817145,44.904825683,44.915937411,44.904715393,44.915366408,44.906977989,44.916393989,44.908167061,45.277688522,45.409495993,42.627787115,43.095910591,43.086834073,43.252764783,42.940099115,42.915818226,42.918265032,42.924353399,42.959137243,42.930019398,42.930019801,42.954246797,42.951881524,42.946879054,42.958034113,42.954604666,42.950983038,43.192180516,43.220817744,43.226326072,43.236073056,43.491236768,43.488266402,43.633025279,43.48460558,43.001638909,42.987921123,42.993222539,43.003224934,42.995496874,42.990113569,43.184805208,43.172712549,43.17749618,43.191897134,43.187717132,43.336364805,45.972647671,42.712094127,42.729192163,42.750511157,42.712441483,42.727286217,42.721625953,42.731155829,42.718616465,42.731564254,42.730763799,42.773596575,42.770823474,42.734476668,null,42.738874283,42.714628348,42.712391215,42.712455697,42.712468879,42.722517777,42.736768785,42.70735411,42.77056711,null,42.69484748,null,42.718646574,42.754620213,42.715393244,42.720333403,42.769859906,42.719318944,42.742360341,42.725987105,42.71246633,42.735569877,42.730616896,42.715066687,42.731714213,42.698920991,42.740554987,42.737801025,42.710740126,42.715503487,42.740489837,42.725979409,42.747721272,42.722969977,42.712356259,42.715203151,42.722539337,42.729822337,42.72446281,42.696832233,42.698277906,42.716705323,42.699674138,42.663988294,42.686743588,42.695199812,42.699349941,42.679722822,42.672132562,42.681882228,42.692212555,42.719852729,42.686831476,42.656350048,42.686729153,42.686315423,42.680576222,42.697749216,42.695300797,42.696844864,42.649845501,42.672722861,42.6796229,42.671706446,42.681292892,42.697289283,42.677179073,42.679432072,42.679419442,42.675997805,42.594487923,42.592933848,43.973879712,null,42.499601483,42.501705091,42.525543089,42.522675054,42.519196005,42.510866733,42.496464207,42.524935785,42.51722322,42.521136773,42.546668783,42.505639924,42.500779672,42.521711857,42.498637539,42.54159587,42.511119967,42.514651142,42.500682654,42.502689482,42.508328106,42.533544953,42.511655828,42.499612392,42.522634062,42.833531515,42.838992887,42.769874207,42.87346743,42.876015821,44.616436353,44.535676335,44.446632669,44.497334121,44.430856574,42.531600781,42.531154191,42.922179231,42.886874751,42.92608469,42.906001934,42.788429159,42.757838059,42.659625585,42.692715534,42.690757224,42.702077896,42.680398468,45.825958957,43.010582915,43.010574782,43.141338247,null,44.076457271,44.170236966,43.194212717,43.192926559,43.191723624,43.196742391,43.196927045,43.206658047,43.188428314,43.206694991,43.654063203,42.632930868,42.627497415,42.633058261,42.628197969,44.367095211,null,43.085143796,null,43.318227438,43.312023281,43.493905074,44.882727468,44.882314795,44.866855037,43.426334906,43.425958164,43.397821332,43.426744868,43.400620913,43.433981063,43.427090486,43.412222435,43.409174491,43.427004988,43.388753463,42.78418693,42.785312664,42.834961329,42.832578916,42.835061632,42.92959724,42.936866887,42.924967052,42.935320419,42.935846866,43.760718291,43.768597633,43.761607536,43.754024061,43.756941166,43.764656101,43.741589687,43.719470339,43.74332068,43.760695985,43.752682472,43.768423949,43.773873402,43.745390255,43.776021976,43.777220975,43.756387738,43.753625926,43.758381381,43.773783354,43.766443448,43.760491402,43.773927115,43.77695173,43.746565382,43.717615753,43.801103228,43.789980069,43.724617101,43.793383753,45.137743247,45.141939122,45.141430815,43.456235157,43.46622934,43.466178918,43.46402719,43.097032221,43.09251924,43.035443257,43.075248807,43.036416593,43.090433913,43.05937891,43.089046055,43.090287939,42.942058674,42.925844831,42.932701131,42.917167405,42.929799957,42.929874224,43.165201579,43.005666519,42.995416855,45.14052311,45.140553446,45.154286332,43.739648076,43.75142226,43.745749643,43.387557388,43.536070457,43.539934691,43.554591578,43.572248794,43.572247394,43.173298551,43.725468437,43.747022012,42.604054925,42.827824928,42.763217821,42.807796447,45.043243923,45.224985,43.292262655,45.923253397,42.657131391,45.045600362,45.899112347,45.899406823,45.843274157,44.899912288,42.645544923,43.003105157,42.988569267,43.044552748,43.060524272,43.068209557,43.071375398,43.083354145,43.13950229,43.002887779,42.958649604,43.008465241,43.021796593,43.001260575,42.995433568,43.014768881,43.077021563,43.158004466,43.119522672,43.089841698,43.10197578,42.974092938,43.010381103,43.019099579,43.022315991,43.046988077,43.067386125,43.079469518,43.043447309,43.056030291,43.084363469,43.089936374,43.067622967,43.081281568,43.089544172,43.000454558,43.11201922,43.172795076,43.025056816,43.022661422,43.012258724,43.002846627,43.002747788,43.016933106,42.995660136,42.988421467,42.988423415,43.008541476,43.044394749,43.048551999,43.054030441,43.041643396,43.053987474,43.052595973,43.067995561,43.060627453,43.064327457,43.065479269,43.048623657,43.069816487,43.079170962,43.07510058,43.110306004,43.104852218,43.014867786,43.104878388,43.096332073,43.083365923,43.067569125,42.959393677,43.123057453,43.119407456,43.020132102,43.038712619,43.028488929,43.010796084,43.019106759,43.007680056,43.006657352,43.06846608,43.066908825,43.074447876,43.10534584,43.059243815,43.042845699,42.981098262,42.982846305,43.001316,42.992257948,43.161583872,43.063973576,43.056422656,43.075653047,43.077075394,43.015396116,43.089529676,43.089398564,42.994143941,42.994755679,43.003051746,42.98240564,43.014151719,43.012356203,43.060679781,43.01223819,43.052943834,43.075230743,43.052890445,43.079742809,43.0386497,43.067911576,43.01700522,43.008305071,43.071795016,43.083504451,43.038783886,43.000483233,43.11956092,43.054658678,43.044555431,43.0437624,43.021905876,43.008190327,43.119561246,43.135425738,43.119513097,43.071046189,42.959216442,42.995896245,42.988569479,42.973699219,43.085363891,43.072058645,43.06929526,43.073006745,43.038758706,43.09691556,43.089741125,43.060106586,43.104497525,43.10981049,43.07516926,43.086921472,43.075275105,43.093481868,43.071563653,42.994916367,43.104408803,43.100560904,43.056274437,42.959373696,42.983104494,42.979087626,42.988263816,43.053141423,43.179990508,43.097171652,43.076156825,43.071345844,43.045738057,43.039536894,43.097284791,43.104497171,43.090007386,42.984180387,42.977840333,42.951995661,42.988560271,43.089902358,43.045721292,43.002012973,43.060379493,43.041381653,43.068056015,43.089280917,43.042410669,43.036793988,43.055625793,43.047008704,43.071377683,43.042160468,43.074653641,43.038740517,42.973961767,42.973706957,43.060558233,43.099817419,43.044411468,43.088479587,43.070492658,43.089942588,43.105678733,43.137803306,43.017044389,43.067638414,43.074636328,43.033823952,43.040419686,43.04698906,43.045763694,43.060127031,43.108044421,43.067845024,43.089763163,43.075203119,43.071054109,43.045719483,43.048139177,43.052961137,43.03509265,43.052918205,43.05306092,43.034967546,43.046989122,43.052344224,43.052146816,43.036759723,43.053792089,43.163918378,43.12651378,42.988239321,43.089861943,43.006467073,43.02307823,43.093601437,43.05630616,43.065359509,43.039011054,43.06422303,43.057587345,43.075338868,43.006442617,43.089932978,43.089724659,43.119417127,43.119330863,43.11941238,43.07049651,43.126869959,43.066199868,43.082542565,43.091288117,43.058223049,42.988280968,43.017048952,43.095551327,43.044182232,43.029550196,43.012468102,43.084269321,43.052811849,43.120753433,43.112083514,43.104816921,43.038703109,43.051512492,43.052931098,43.045725919,43.034618134,43.075242331,43.108828095,43.069945733,43.062401855,43.074720636,43.089727907,43.071910764,43.091927041,43.069840704,42.987783937,42.983579168,43.010482085,43.015522236,43.075117015,43.01910075,43.069296778,43.003169201,43.010231205,43.017041264,43.008563707,43.13189521,43.121640348,43.089217241,43.078067543,43.017048344,43.006091219,43.015304292,43.119510071,43.133945622,43.125241556,43.13964327,43.020134411,43.044735591,43.119328654,43.012495444,43.060311435,43.08762565,43.061589553,43.038706301,43.035738618,43.117951963,43.105059447,43.080649725,43.064381019,43.060416634,43.064890746,43.065268755,43.048783348,43.044729161,43.086149007,43.071115108,43.074843628,43.061414506,43.08442626,43.073718152,43.034782212,43.021090508,43.012476532,43.059902178,42.986595266,42.966709694,42.991278167,43.148716525,43.118746278,43.060108057,43.056805465,43.05033134,42.995654821,43.119561643,43.04573274,43.100843668,43.074984056,43.104690884,43.012178628,43.075598396,43.09538748,43.075237177,43.089237363,43.048629381,43.075078212,43.083417929,43.089551723,43.07505347,43.068096879,43.058316166,43.089180297,43.067769843,43.111900788,43.104448428,43.103915189,43.106230879,43.10374314,43.068089053,43.073373037,43.089585013,43.06800702,43.023448567,43.023639148,43.022790721,43.02818101,43.0167886,43.022661419,43.012298645,43.022160069,43.005435464,42.988100556,42.992735934,43.083867363,43.093464955,43.097417016,43.084399193,43.104623517,43.046991314,43.089921957,43.089865441,43.068843032,43.071656677,43.104627141,43.104591365,43.089795649,43.066071798,43.067631928,43.067719525,43.002853402,43.039974399,43.00733833,43.009005328,43.024209966,43.01704105,43.006433415,43.067559991,43.066962767,43.049967893,43.402689182,44.203032392,42.987087857,43.145723462,45.539524097,42.804099788,44.286568603,42.730722976,43.100637873,43.704607255,43.606577781,42.622666299,43.960537072,43.58930456,45.826664557,44.213251211,43.611894448,43.811755792,44.670150163,43.318331853,42.877845968,43.026099961,43.148358387,43.038686819,43.040290186,43.038707647,43.040334448,43.148632937,42.988268122,42.985772539,42.988240001,43.000552877,43.123234959,43.048668896,43.038738234,43.061920168,43.060788669,43.033694636,43.104580223,43.070497611,43.134027461,43.17995195,43.119410899,43.139937138,43.022689153,43.08992222,43.09066952,42.991847047,43.111299407,43.016942219,43.144175812,43.069982368,43.049358327,43.05612666,43.052967122,43.051106708,43.044370704,43.072841558,43.119506799,43.038770022,44.528804925,43.067704847,43.07295865,43.069230658,43.122258236,43.109164581,43.139951537,43.072156892,43.084640948,43.080730736,43.08189418,43.068211405,43.036682554,43.05522756,43.050631804,43.075771186,43.075818118,43.060567095,43.073143401,43.076459775,43.08455975,43.075982916,43.034176131,43.030721214,43.073169548,43.090459745,43.080984626,43.079625139,43.069228288,43.081430743,43.060477983,43.081087394,43.082251778,43.119021741,43.082589172,43.070881941,43.098318553,43.12102831,43.068736539,43.040965242,43.075349924,43.070884683,43.067968914,43.035692659,43.071777447,43.074851616,43.084151575,43.047637462,43.119945639,43.05053481,43.072130217,43.072945617,43.068582458,43.072286166,43.062356266,43.073265573,43.072030944,43.072009787,43.06080609,43.102896934,43.06364486,43.062361203,43.072159822,43.117279024,43.102270786,43.050236744,43.098971442,43.065297286,43.078840573,43.079840097,43.071021185,43.07229692,43.07068782,43.073332677,43.116410503,43.033466448,43.067753714,43.070972257,43.064380535,43.07595305,43.033357081,43.038564193,43.0662568,43.129952681,43.089367928,43.060487327,43.063113853,43.12005022,43.066970541,43.077247463,43.068391811,43.074103926,43.122492565,43.053356223,43.046293922,43.073220477,43.06771685,43.093950681,43.101821302,43.07587789,43.103303814,43.083285967,43.057633068,43.032194834,43.122671207,43.060219877,43.071547603,43.06400025,43.07485237,43.06206514,43.083802592,43.050117798,43.026950343,43.049145483,43.073311382,43.063202742,43.041509095,43.074966615,43.067012228,43.075023514,43.099803662,43.066825595,43.087394283,43.032817051,43.04999176,43.046358652,43.125292646,43.069221913,43.048394699,43.034959964,43.067094403,43.071975711,43.048516284,43.092414071,43.049606446,43.084189678,43.071000993,42.895015998,42.930044572,43.009722806,43.15536436,43.223656203,43.008127977,43.173941063,42.905995107,43.147163181,43.187503986,43.17413721,null,43.194441706,43.199155276,43.176463782,43.17825455,43.174301078,43.180108646,44.529470752,44.500115773,44.523726826,44.511571317,44.526360651,44.533530876,44.518302474,44.521312653,44.512827403,44.523562499,44.513791903,44.510255517,44.515933658,44.526283059,44.52282717,44.52990718,44.483958803,44.517235083,44.499600051,44.506487545,44.491135674,44.537055902,44.512069449,44.52471481,44.512038811,44.520131951,44.512387528,44.508123121,44.512170006,44.531006752,44.523757578,44.519812768,44.518692776,44.520338174,44.525894592,44.497530654,44.512885359,44.511108743,44.519432897,44.516763593,44.513249955,44.536308377,44.509583085,44.524461306,44.510617861,44.509613468,45.453861281,45.464274016,43.088178871,43.045833122,43.06076517,43.054651522,43.099006542,43.021130103,43.017094423,43.003372809,43.037440466,43.038794602,43.045878303,43.035065788,43.038812182,43.060042301,43.049194605,43.044388218,43.008208302,43.003038002,43.014249596,43.023933825,43.008410733,43.019094123,43.040252727,43.067773544,43.060591492,42.990298623,43.067648914,43.036155537,43.067915307,43.042144708,43.112246471,43.143256649,43.114313857,43.120546058,43.177707765,43.083081428,43.059352767,43.069723313,43.089305246,43.077657409,43.076889515,42.98827125,42.973822533,42.93038095,42.934949036,43.002851122,42.960073328,42.959069447,42.973914493,43.11024546,43.075228863,43.075232182,43.104526726,43.120349784,43.104639879,43.05397037,43.133982282,42.959299166,42.960405803,43.097677938,42.977119911,43.037644269,43.018973226,43.791620843,43.776138489,43.791471174,43.791711262,43.772755554,43.787990397,43.779921024,43.784913999,43.768927341,43.770325337,43.757791065,43.781023491,43.776856629,43.742893732,43.778789642,43.789180618,43.781865438,43.755105012,43.778872973,43.780436329,43.787773802,43.776353438,43.784255489,43.772856185,43.754605504,43.782659972,44.207263694,44.228526674,43.81267207,43.792326662,43.80151041,43.804641497,43.801571759,43.808726978,43.810054936,43.806716453,43.841425455,43.792401553,43.797789375,43.788933975,43.801401422,43.812828974,43.78700763,43.822884074,43.808901348,43.808757731,null,43.854110813,43.809989516,43.809233639,43.804648592,43.796829627,43.844461594,43.81281199,43.84191842,43.856944872,43.792214282,43.816158989,43.847672092,43.81727885,43.81813784,43.806707271,43.817348914,43.827184607,43.808949444,43.85141912,43.81200641,43.857624065,45.504487813,45.412019305,45.368793713,42.514779588,42.558704964,42.556973863,42.640190783,42.498185842,42.619231735,null,null,42.660568731,42.571186008,42.501484287,44.548907663,44.589794245,44.590849191,44.454985181,44.554689306,44.624853936,44.466911232,44.422380733,44.304828699,44.46941554,44.484076766,44.401087461,44.489248604,44.481214264,44.482606851,44.48520672,44.484570446,44.442273388,44.445129938,44.441993795,44.450392205,null,44.444248051,44.449564974,42.564201355,42.555469787,42.558480664,42.966282932,42.956997359,42.96628361,42.733873355,42.726522677,42.732181936,42.732740117,43.06191668,44.50059968,43.939289027,43.949761569,43.939235483,43.9332939,43.926459906,43.943299139,42.532405869,42.553043558,42.576130001,42.610759208,43.547787159,43.557123972,43.574773246,43.183825536,43.092506407,43.097021912,43.090875202,43.091761875,43.09563812,43.0899734,43.103212353,43.096584016,43.104491327,43.096870826,43.030941087,43.019862655,43.004965282,42.95921715,43.035618754,42.973538865,43.041745255,43.058281047,42.998458425,43.07004727,42.98972874,42.998417886,43.060267649,43.056344891,43.035735929,43.059076989,43.059036735,42.925339516,42.915432554,42.923995137,42.923878672,42.92368582,42.893606961,42.912293823,42.895979513,42.923888882,42.900285934,43.170450448,43.16457232,43.166971505,43.159235302,43.160271277,43.139671661,43.170330458,43.106874561,43.190951102,43.062175977,43.069298684,43.049290224,43.037941485,43.050778996,43.047055032,43.04969785,43.052810784,43.073293248,43.036818317,43.055139928,43.060524446,43.0367391,43.074633984,43.044061155,43.056571283,43.05263802,43.094601362,43.075794666,43.060727705,43.060405222,43.067457483,43.089011777,43.065350523,43.047209354,43.051390247,43.067936091,43.077450811,42.988413211,43.016457044,43.01664802,43.015499148,43.008677018,42.999016905,43.01779153,43.01745476,43.023697759,43.002849797,43.013802692,43.013555932,42.98708253,43.01744412,43.006263372,42.98534017,43.009063201,42.998095965,43.016668449,43.016668504,43.016529463,42.992725706,43.006502799,43.017140759,43.001290741,43.003443199,43.012878465,43.016709692,43.010152392,43.012026315,42.990058449,43.010503002,43.007302083,42.999670022,43.011036202,43.016530662,42.980832771,43.016452285,43.016538333,43.000642422,43.002469172,43.961523201,44.795714672,42.596738414,42.602954261,42.602967417,42.603543818,42.602194108,43.274746196,43.271371184,43.27667383,43.300030843,43.292990145,43.285564732,44.515171383,44.52705508,44.522220042,44.525979052,44.498161751,44.528849832,44.528777138,44.531499929,44.521581784,44.523494909,42.673845208,42.670012292,42.687838301,42.61443506,44.182923168,44.18439603,44.1511554,44.156343393,44.181645314,44.158194256,44.177900656,44.187121201,44.189478542,44.189229686,44.170740404,44.208927872,44.204744986,44.202076479,44.199401929,44.201079831,44.204853374,44.228927814,44.202726353,44.203799611,44.197907055,44.215525252,43.033503761,44.032308152,43.976496753,44.154694074,44.126678467,44.011379029,44.214223257,43.946987174,44.23020945,44.102583456,44.290542356,44.291012364,44.241435649,44.261581702,44.29898943,44.265572172,44.263889708,44.265708694,44.280296832,44.269274636,44.287374015,44.261347441,44.26567352,44.253648243,44.295630762,44.2729958,44.281658482,44.28047122,44.26188878,44.272993123,44.243742035,44.277466346,44.265768215,44.272833853,44.249900494,null,44.289870477,44.243926926,44.264173381,44.24493502,44.296648239,44.284906237,44.25809021,44.241208998,null,44.239775916,44.287368698,44.258084738,44.264088044,44.263598777,44.278486099,43.510250322,43.351995398,44.775469722,44.805676962,44.818965911,44.794747025,44.764484228,44.774768942,44.774163616,44.798673869,44.799305522,44.802269499,44.775186716,44.801174908,44.826700469,44.798743272,44.843481157,44.785612558,44.85104501,44.802162061,44.794203309,44.826661464,44.838881141,44.807728433,44.792192817,44.795026935,44.817280839,44.601848299,45.124324514,45.793291951,44.85820263,44.853716691,44.865973084,44.886109835,44.786482589,44.783274582,44.780155687,44.782072925,45.099369279,45.092316892,45.073653576,45.10001945,45.099891627,45.100147914,45.099267313,45.098015653,45.086349333,43.807826808,44.17463392,44.35391295,44.346195112,44.330550445,44.357907395,44.374138727,44.374789315,44.369014796,44.38391133,44.354148966,43.627734025,43.62808078,43.629149326,43.627598317,43.627507729,43.847364221,43.850939717,43.20708267,43.221547615,43.243158712,43.206657837,43.221575987,43.207080917,44.09532959,44.087568161,44.093214592,44.089203127,44.097081294,44.084977059,44.072910999,44.085538182,44.104920624,44.091479632,44.087278155,44.072130154,43.016691666,43.04305989,42.99342895,43.00489941,43.020778229,42.982761582,43.005421616,42.993273034,43.037041258,43.019568016,43.032788235,43.003023449,42.982892297,43.022773981,42.988420062,43.011166177,43.01317045,43.021884927,43.008580597,43.01371511,43.011840053,42.954271282,42.95782865,42.869232703,43.009924495,42.885306558,43.11723286,43.082989235,43.061860798,42.991950489,42.900146259,43.123543347,43.082768343,43.066615595,42.98823689,43.068512429,43.110189672,43.0892373,43.083205401,null,43.105287218,45.658630425,45.687772132,45.688734565,44.145092159,44.28090666,43.949765108,46.19280136,44.220574039,44.222693304,46.150184634,46.537553081,43.874465822,43.879842385,43.90818229,43.890294674,43.869478696,43.905539966,43.883437795,43.882681971,43.88445669,44.26099637,44.279948796,44.261008612,44.264181328,44.293364705,44.296046594,44.270787602,44.273990054,44.272136919,45.543414123,44.994126612,44.892436365,45.001180218,45.093587046,44.960930682,44.962649926,44.954234728,44.973006265,44.979671615,43.904041759,43.973432797,44.065060795,44.074498686,43.964952546,45.479982884,45.483835063,45.499492993,44.860668937,44.840837117,44.838647573,44.856371074,44.865753326,44.859826553,44.874581765,44.876425732,44.900748979,44.876365457,44.876502388,44.870096553,44.905846174,44.870987905,44.88619144,44.863919464,44.886389097,44.876450996,44.900956126,45.264756208,45.183763945,44.791149068,45.187391969,44.860428364,44.844776532,44.83781722,44.843638689,44.829115622,44.820487011,44.822017183,44.72729,44.958002741,44.952555199,44.94813604,44.958061366,44.96959178,44.957223445,44.983662929,44.969569333,44.970060063,44.981109724,44.956866291,44.960015508,44.959260962,44.986515595,44.96426905,44.968665928,44.960375462,44.957874478,43.555956197,43.364426996,43.955839157,43.955761204,42.875204322,43.088604379,42.851996666,44.325426,44.504216733,44.332080636,44.352142887,43.070867425,43.074423617,43.076097318,43.080269963,44.262326537,44.383194591,44.258332254,44.302427962,44.282250705,44.260087173,44.01990749,44.020080283,44.274711765,44.27313096,44.269600855,44.301298237,44.287020322,44.290236925,44.268835095,44.273142579,43.162547881,43.170056324,43.178005045,43.035765523,43.04681863,43.042547901,null,45.896598174,45.895105917,45.635075523,44.26124719,44.283981231,44.277235242,44.2600321,44.274629862,44.021740455,44.015934777,44.034193136,44.025014886,44.027455792,44.003606307,44.024930541,44.004709946,44.01606664,null,44.030123488,44.018075658,44.028672037,44.029075693,44.031466539,44.032124784,44.016579861,44.048012066,44.04491381,44.019668959,44.005067294,44.017719377,44.039686789,44.023559134,43.078964617,43.076921655,43.075664975,43.073534812,43.075365678,43.073732516,45.005481173,44.824826717,44.728028376,44.738640469,43.119559674,43.107617146,43.118481318,43.111329668,43.105709571,43.118336969,43.122690699,43.118478712,43.129461358,44.987564683,46.585817701,43.176886995,44.611290799,null,null,null,42.780408581,42.782170507,43.861389781,43.76183928,43.802331768,43.838982884,43.816184062,43.308746292,43.321312926,43.316841174,46.017465033,42.967634742,42.580663575,42.59890684,42.625363361,42.570606498,42.586462454,42.588091759,42.587749481,42.583568504,42.597113468,42.587862257,42.577857744,42.588694374,42.582700882,42.577204064,42.595388936,42.588027791,42.585960822,42.576088467,42.573721686,42.582673194,42.580750449,42.572094433,42.587982413,42.57431453,42.601367683,42.580771634,42.580771634,42.572284402,42.587976933,42.630736447,42.577662705,42.590574783,42.580870674,42.566369425,42.588543329,42.587566815,42.555517976,42.588387377,42.632303327,42.588255068,42.573768124,42.583393453,42.583393453,42.582376041,42.570057657,42.606122108,42.566373494,42.580678334,42.580871317,42.632209349,42.56949057,42.570230299,42.575314159,42.603251157,43.920636847,44.919353485,44.945316286,44.945381697,44.990976978,43.802123631,43.296010551,43.470149952,44.447373648,44.492537797,44.490107606,44.449985504,42.814699475,42.72644107,42.714395616,42.531993902,42.665961903,42.698618574,45.473419854,43.169533298,43.249251592,43.474810496,43.532414479,43.474598551,43.372682568,43.472597272,43.59239224,43.540357587,43.348767254,45.682582446,46.062820304,44.444511824,45.39579979,45.409933803,46.720551674,46.706247907,46.707624041,46.720016435,46.694523132,46.719792954,46.706352112,46.698721237,46.72121145,46.726602846,46.706217111,44.130162652,44.153648423,44.171590365,42.651837878,43.085146914,43.102294269,43.116282133,43.110089877,43.081445553,43.09583261,43.116276808,43.107104929,43.110466475,43.110711162,43.082232931,45.001231636,44.406414161,44.664092453,null,44.655583674,44.678810628,44.667336431,44.675120658,44.655587661,44.655624208,44.681626181,43.082599652,43.083521514,43.300833179,46.352853968,46.357182747,46.675289776,46.48624153,42.959520575,42.965206524,42.978855935,42.967255474,42.967932766,42.964759879,42.932045466,42.9665809,42.961170447,42.959351072,42.959805908,42.953600667,42.932706622,42.959634367,42.98098518,42.967670272,42.566106487,42.56578124,42.565870981,42.517594282,42.518208188,44.397715282,44.377758496,43.323846939,43.122894423,43.120247347,45.101433457,45.120480354,46.449852818,42.893805896,42.869788794,42.898393452,42.89036564,42.857263745,42.921383783,42.872623352,42.925152995,42.882520652,42.927749612,42.929537085,42.90179792,42.886574672,42.889982609,42.944716393,42.942014835,42.937253447,43.969237379,43.625850764,43.626834267,43.633192261,43.641406531,43.036171538,43.054988469,43.091215214,43.089328056,43.095586353,43.089211713,43.095569546,43.470965412,43.459961201,43.465069404,43.473728468,43.470033537,43.47185942,44.80303033,45.88966044,45.861469143,45.888224633,45.887775381,42.91806587,42.906582593,42.924157421,42.910877213,42.912087741,42.915338989,42.923783159,42.928607823,42.930052883,42.917908589,42.900711216,42.90473073,42.930019552,43.004974889,43.016877332,43.020157143,43.019498928,42.697044329,42.718005088,42.717918246,42.717613982,42.719158061,42.69746563,42.737368364,42.712235385,42.721474993,42.738156764,42.723525917,42.718856365,42.722953735,42.676463939,43.741772038,43.795862263,43.795543361,43.789102834,44.377677403,44.94441063,44.957289519,44.914657746,43.781761178,43.847052308,null,null,44.891565787,45.302925411,43.539682875,43.532445518,43.547984051,43.547032971,44.739462567,44.759535718,43.605944075,43.572477845,43.591639519,43.609007262,43.555635389,43.605585971,46.325572603,42.97714299,43.008044442,42.980813033,42.974874712,42.995495813,43.06087276,43.054225113,42.545343756,42.542759412,42.973714099,42.960252126,42.959124789,44.25560317,42.848132223,42.845997272,44.904313939,44.909400935,44.900797747,44.903344941,44.914905355,44.905718566,44.908276283,44.906534758,44.906720111,44.913822885,45.347186746,43.090370697,43.250303795,42.920186056,42.916704684,42.916914554,42.929323231,42.916806082,42.966373551,42.936421508,42.935568558,42.959184736,42.933679355,42.951747175,42.944564026,42.959090809,42.947545892,42.958139935,43.220664395,43.192671096,43.193290774,43.214888798,44.024945205,44.023484619,44.022556556,44.028391717,43.591474782,43.331913508,43.405575585,42.990528377,42.965943877,42.994267156,42.984055465,43.001761392,43.181506928,43.193908829,43.177427426,43.179959718,43.332501719,42.725981453,42.752604842,42.745271629,42.719989425,42.712380577,42.726075905,42.718715158,42.694100324,42.739405971,42.707550166,42.707102328,42.710652204,42.7476484,42.712434514,42.714256625,42.735516079,42.732783611,42.712544804,42.737541037,42.751358556,42.704076654,42.703946344,42.70947231,42.722528062,42.741554057,42.710179817,42.730673202,42.743927901,42.72687604,42.707659343,42.733801645,42.742305356,42.742554579,42.742308883,42.739336573,42.720482202,42.709490845,42.714301408,42.726712969,42.726537764,42.721465101,42.727204837,42.73165654,42.715139975,42.7218351,42.698910296,null,42.697895686,42.685861439,42.683700444,42.67973622,42.666500172,42.638463112,42.682409585,42.681995221,42.706943724,42.69366221,42.685717266,42.679489016,42.700147265,42.716261182,42.678754599,42.689261231,42.680521739,42.71190432,42.694283709,42.678744386,42.679643694,42.706574811,42.693857975,42.677864084,42.679377356,42.693615611,42.680508231,42.674230558,42.679639774,42.688358191,42.597773228,42.603689787,42.574649184,42.598771334,42.573090578,42.595374897,42.589584531,44.168262724,43.32427751,42.51092129,42.513052392,42.518284596,42.53215523,42.510837724,42.521545872,42.503059798,42.510821783,42.513679138,42.500585111,42.522772153,42.507300681,42.522194725,42.522565794,42.557852224,42.501113004,42.510074659,42.49952781,42.534541213,42.527746454,42.523433592,42.510908022,42.524896396,42.532171565,42.524948634,42.509148366,42.838549547,42.840943468,42.780440839,42.780672113,42.91728591,42.926997681,42.854456,42.862663218,43.007582404,43.008674642,43.004915197,43.00640552,44.35255739,44.552494097,43.338941433,42.901834664,42.8855258,42.924627581,42.890939019,42.784640616,42.785701795,42.784571236,43.236603134,42.689614963,42.680792499,42.682102033,null,43.102100445,44.022669152,44.036925445,45.82833327,43.08335362,43.010693382,43.112045202,43.164147198,43.112002728,43.122009204,44.070226111,44.239379181,43.189731307,43.159835247,43.193976278,43.226415559,43.190035359,43.19482884,43.197781942,43.189907829,43.160966888,43.190444423,43.20094952,43.196493771,43.335486754,43.66171783,42.631036591,43.077645859,43.074647329,43.074756165,43.074780702,43.31783587,43.317895344,43.317708844,43.31746712,43.31872024,43.317768082,45.532323309,44.568321062,43.402233827,43.439718204,43.408869939,43.404951014,43.412232375,43.418946381,43.42531213,43.427278651,43.434066527,43.429505618,43.419447486,43.447070303,43.394611254,43.407632567,43.426771675,43.397976314,43.411585244,43.412165954,42.83980077,42.834931381,42.834992068,null,42.841535969,42.927649278,42.947933764,43.772947533,43.758485238,43.732089984,43.751984907,43.751999312,43.729668212,43.742983922,43.768441995,43.759852725,43.78118,43.75647436,43.771536426,43.722036168,43.76854404,43.758538064,43.728402335,43.762223373,43.758630003,43.774071599,43.773870847,43.749884954,43.729859103,43.7497936,43.760790111,43.755253599,43.77909354,43.755257291,43.768149915,43.759618516,43.76473523,43.732273367,43.747142544,43.574430632,43.782405108,43.782941723,43.6130227,45.140696912,45.141939067,45.140525446,45.16284793,45.14059785,43.460881745,43.472325025,43.443933009,43.445038069,43.490426817,43.469096085,43.054499099,43.078426437,43.090329599,43.053635155,43.086531494,43.057643525,43.084094856,43.061446057,43.060473428,43.088393154,43.036374609,43.090457916,43.088069964,43.089880703,42.919912524,42.929877658,42.934428099,42.941583663,43.175798138,43.154836295,43.175439004,42.998772091,43.013459356,43.00474541,43.087760689,43.747322975,43.747613047,43.752056052,43.386927877,null,43.391995643,43.387049782,43.405348201,43.562696581,43.561838641,43.559142436,43.540636345,43.173199971,43.746990665,43.744384235,42.608707933,45.047352995,43.026468868,43.028728699,42.577281136,45.644197388,45.922912402,43.381817682,44.884168372,44.883534428,null,45.939528181,43.104715694,45.16021,43.060131171,43.052528592,43.043912958,43.044451535,43.071114728,43.069334199,43.071490563,43.085577401,42.988413806,43.0602994,43.07150906,43.098844334,43.097233274,43.092902532,43.045717193,43.006401563,43.01649213,43.056542718,43.023017719,42.990168715,43.004739096,43.011033304,43.023383723,43.004920858,43.023022621,43.046973398,42.988798061,43.148172829,43.010264884,43.080653959,43.037349771,43.078747478,43.007869419,43.046999871,42.986607792,43.060351656,43.104033812,43.012470099,42.937602484,43.121179592,43.00293226,43.075224993,43.089938439,43.060209928,43.056924745,43.111962735,43.119434957,43.11004415,43.001968312,43.031293114,43.03071517,43.07140561,43.089983289,43.092740571,43.096956003,43.085266142,43.060191103,43.002287615,42.993169144,43.052491053,43.040274437,43.022735036,43.111851967,43.126628694,43.110103514,43.089878275,43.089730781,43.067912222,43.060022657,43.052952464,43.001638127,43.071114099,43.062584268,43.055517112,43.060291174,43.0826295,43.024134053,43.021605228,43.060002896,43.056641216,43.036679174,43.059579087,43.060107101,43.047716769,43.117569477,43.100432558,43.073718403,43.069615897,43.068407827,43.052558587,42.988220382,43.041399577,43.067802981,43.075170073,43.109427425,43.082157115,43.055101504,42.98658752,43.116666152,43.011606693,43.075068426,43.059101639,43.089568722,43.089617539,43.112916391,43.085003531,43.010000696,43.104650933,43.069722224,43.090028992,43.104199322,43.138983585,43.14871509,43.002293424,43.016520943,43.041482834,43.045636437,43.088036569,43.089953287,43.097279154,43.052905465,43.016895204,43.002847456,43.00275343,43.089893389,43.025771587,43.016777714,43.00325339,43.017043443,43.023228743,43.075198266,43.060615562,43.068031367,43.046792352,43.087846346,43.089693065,43.014327768,43.012510188,43.020136114,42.988505779,42.973956406,42.999529136,43.011149309,43.042945038,43.052559665,43.048205686,43.043831744,43.032803751,43.043834801,43.063540249,42.981073657,42.973774551,42.981298165,43.094543856,43.012301678,43.112291232,43.017046654,43.002879044,43.100249944,43.046695055,43.089547988,43.104640495,43.061478932,43.067988882,43.148631221,43.006478869,43.012513861,43.002869983,43.052897373,43.015846494,43.021583909,43.082331383,43.001628818,43.002851767,42.981018626,42.988334173,43.067592508,43.070882786,43.00285863,43.044581639,43.04340578,43.030478248,42.988273078,42.937494021,43.09003723,43.071414131,43.075181766,43.025693042,43.057816918,43.054591451,43.05871843,43.059726702,42.990903244,42.98837673,43.090873453,43.07510647,43.084895899,43.089490438,43.038701451,43.069258201,43.072994207,43.085964472,43.072332487,43.048610488,43.015225341,43.017014632,43.139678793,43.095524334,43.023201037,43.015827653,43.023021297,43.089998008,43.05179422,43.060612627,42.988870007,42.959215586,42.986223203,42.988258664,43.071550524,43.053450413,43.03890407,43.012291127,43.003168609,43.119278586,43.119680649,43.123888256,43.090207954,43.075225934,42.98806993,43.074937768,43.089853118,43.04418484,42.981589029,42.965717867,42.98163205,43.049358157,43.052152541,43.071031727,43.051216125,43.038724344,43.052875567,43.053860146,43.06065278,43.040255719,42.961644046,43.093771636,43.106150075,43.035466987,43.027630557,43.067433037,43.060331044,43.036736988,43.104861256,43.108048784,43.089893413,43.07821709,43.033863848,42.988463548,42.973790485,42.987153478,42.978584456,43.01906135,43.052697602,43.034824124,43.069811445,43.089164947,43.062709227,43.06775424,43.126826334,43.133835105,43.112634042,43.042717649,43.040327443,43.023222293,43.006730602,43.014174975,43.01105286,43.005434081,43.011233517,43.009079572,43.001513568,43.021559086,43.014157223,43.013804029,43.022315854,43.023212169,43.083036694,43.089592699,43.116790629,43.119877508,43.090894171,43.019034111,43.160814793,42.988273546,43.05404318,43.053909733,43.067910524,43.010135601,43.01704071,42.997595852,43.094961307,43.092623649,43.133924584,43.069731865,43.06048286,43.052424299,43.017044377,43.119417423,43.178475534,43.183383041,43.040165888,43.040201463,43.055641069,43.039794536,43.041857173,43.04319421,43.089735872,43.092533112,43.069848441,43.089701757,43.105143064,43.089918288,42.98610245,42.988354465,43.014259531,43.021619407,43.02721523,43.08709997,43.071136013,43.096936377,43.080349558,43.075154463,43.067572065,43.111091742,43.038759604,43.067971657,43.030522941,43.059670404,43.08548426,43.01379555,43.045828637,43.053467252,43.104791564,43.064056926,43.038703093,43.058624437,43.038700114,43.067911492,43.018688761,43.017046584,42.976435599,43.003360071,43.021720712,43.01408789,43.002758883,43.014126902,43.003050952,43.074763929,43.012285467,43.004849251,43.036110134,43.019078062,42.996891583,42.98808464,42.959273391,42.981061818,43.060454509,43.031418381,43.032080154,43.121545073,43.119486187,43.180171967,43.110124553,43.048698619,43.089889771,43.109943766,43.07475954,44.233775294,43.187420859,46.729093437,44.496830435,42.628589376,45.898483901,44.244031074,44.962804238,44.243581786,44.35735974,44.218561465,42.571592372,42.595721267,43.04902728,42.656071186,43.389081073,43.070132431,43.090599592,46.634796954,46.167861378,44.931359484,43.019134323,43.042409982,43.036226384,43.041605138,43.038163896,43.040243543,43.038674822,43.03867167,43.039464096,43.075617421,43.091622856,43.104985655,43.084831306,43.104366006,43.068259799,43.112847111,43.141271731,43.036671161,43.096584432,43.004834895,43.027407542,43.039403748,43.031553236,43.133966532,43.089865131,46.666416937,44.530917534,43.066863883,43.077991344,43.068214909,43.06504346,43.046089042,43.051788847,43.05587174,43.074656173,43.063833539,43.060577909,43.075965401,43.067669791,43.074950942,43.069620333,43.114229833,43.07058967,43.075028631,43.047450722,43.064538582,43.046351288,43.084456498,43.031862237,43.113751232,43.139411699,43.118750951,43.113807978,43.079676029,43.043551648,43.072027397,43.068046335,43.083410074,43.073319962,43.046686543,43.06790598,43.136726923,43.045148508,43.074482563,43.073332659,43.050329466,43.073289431,43.091608056,43.038598597,43.049427252,43.038964775,43.067760931,43.057473776,43.031375523,43.070910634,43.115516881,43.067668286,43.133681013,43.067685273,43.133927686,43.084140289,43.066942894,43.048249627,43.069262148,43.067692771,43.073134002,43.099874993,43.083393115,43.134753222,43.11246011,43.07053589,43.077416746,43.036715778,43.039076912,43.106815294,43.076828218,43.072304891,43.074227159,43.095854648,43.08455236,43.079622673,43.114032118,43.098830664,43.092417508,43.084534508,43.072599249,43.07593648,43.076779721,43.092247101,43.098584618,43.096155367,43.122038895,43.109287153,43.068236493,43.083822045,43.114385402,43.087995822,43.050253891,43.074846121,43.084670886,43.073415231,43.078539751,43.050215935,43.084872208,43.050287519,43.060528057,43.079624454,43.031852019,43.042987408,43.066897853,43.060746592,43.064753051,43.07339981,43.110685929,43.051697833,43.125942912,43.054254129,43.032785596,43.061957573,43.058410561,43.051130218,43.067730511,43.046284088,43.102807968,43.128646463,43.075012728,43.069560953,43.026877885,43.05579248,43.093852231,43.135912007,43.12100526,43.1264688,43.120999633,43.073223145,43.038538271,43.083897968,43.120515276,43.12977893,43.127942002,43.104265522,43.069916139,43.067644431,43.07864044,43.038542438,43.04372957,43.096190337,43.130634535,43.083136755,43.120080974,42.995567729,43.00145864,42.935139306,43.079637957,42.96814127,43.094137637,43.267219433,43.167832649,43.195900129,43.195398353,43.18020761,43.18123686,43.184116606,43.187878275,43.187316744,43.17583667,43.175776464,43.189553668,43.182779111,44.515111204,44.51772113,44.523868837,44.514810727,44.528052862,44.520112537,44.518681235,44.51203433,44.491376869,44.514396683,44.517589492,44.516229633,44.488993731,44.50009573,44.514426996,44.528603139,44.487940204,44.510538431,44.49758306,44.532415827,44.520146501,44.474076209,44.488966995,44.513274938,44.517761177,44.515119413,44.509483164,44.492499418,44.524708981,44.504145329,44.514242159,44.494392621,44.512591153,44.500768826,44.530046364,44.522726498,44.50428326,44.492493321,44.516334014,44.520475242,44.534571253,44.502265487,44.514989905,44.506374127,44.504884733,44.527006531,44.512454112,44.489424564,44.52373856,44.516727224,44.512831151,44.487385151,44.501061971,44.47799319,44.52356243,44.514681984,44.533172642,44.514506501,44.511984837,44.514413793,45.464177566,43.067990797,43.052427658,43.052508996,43.052954505,43.040035803,43.049837157,43.021650226,43.002796179,43.012492822,43.053940758,43.057116171,43.058554281,43.067470646,43.064222611,43.029639101,43.067910747,43.114003107,43.012359126,43.162712216,43.112062643,43.047502816,43.112703575,43.154415534,43.154417001,43.081519722,43.067556149,43.087195421,43.089761297,43.095760701,43.063871113,43.085544294,42.981363187,43.082914203,43.075418494,43.09463215,43.069844072,43.100861247,43.107290305,43.07964118,43.093474948,43.078008649,43.17868101,43.119421238,43.149622047,43.119420036,43.006620557,43.090267208,43.04294762,43.05281573,43.052970954,43.04383255,43.075111248,43.778668842,43.778653235,43.778636732,43.752352212,43.763693252,43.789123645,43.776711888,43.777037533,43.794762656,43.76926189,null,43.780932531,43.79166089,43.79158476,43.780673558,43.786069005,43.791549704,43.778863545,43.784291843,43.745675158,43.778451769,43.77714818,43.776202163,43.784351201,43.784289323,43.776941457,43.783338123,43.784346738,43.754963102,43.784256341,43.783552449,43.773642428,43.766888918,44.221189407,44.139482141,44.139386301,44.228715692,null,44.193575557,43.80257551,43.783252754,43.812856233,43.816159301,43.816989662,43.781966085,43.837973722,43.835719731,null,43.783222051,43.81294705,43.795402387,43.787233919,43.812002674,43.802488271,43.806692988,43.801499495,43.797429911,43.809512742,43.820234727,43.807700954,43.769445726,43.859983945,43.804658974,43.84126499,43.861321645,43.771084793,43.850701455,43.816140552,43.841395864,43.815023636,43.810016236,43.848503943,43.811813111,43.811675174,43.815009181,43.856505354,43.775351978,43.810986977,43.812439273,43.771340726,43.804664591,43.795330791,45.371423809,42.615923242,42.604103346,42.568457389,42.643847148,42.524356087,42.638585097,42.582588908,42.58920733,44.485032303,44.471836673,44.471400806,44.477766941,44.561620359,44.561678048,44.561878931,44.473675872,44.620347644,44.444810911,44.470117803,44.593284106,44.573529104,44.491813092,44.46345318,44.489301142,44.473119924,44.485613486,44.48713398,44.497506002,44.495328793,44.488132239,44.450448126,44.446796126,44.445250706,44.439472271,44.445217388,44.451231633,44.442323154,44.448818309,44.448831354,44.442225838,null,44.444320875,45.101421668,43.1355117,43.081263312,42.734554425,42.735464885,42.745492062,43.046504956,43.04366039,null,43.049852399,null,44.520457681,43.946279303,43.942393032,43.939022039,43.9479285,43.949864762,43.939224939,43.9433565,42.662671282,42.62702981,43.574794848,43.183719076,43.096914958,43.111527336,43.106346817,43.096876537,43.097906668,43.11152738,43.105565109,43.092223508,43.096514905,43.093000959,42.950211177,43.025287072,43.014509646,43.026550212,43.015303811,43.024104247,43.019291725,43.005029306,43.00719663,43.023987106,43.023653474,42.971887807,43.015358371,43.021281705,43.016403513,43.009654638,43.086400796,43.057924422,43.061688404,42.931246248,43.053430175,42.914904159,42.927779771,42.915784054,42.926102633,42.921919254,42.901703554,42.924489016,43.184674097,43.179044414,43.162383251,43.163325694,43.185676243,43.167217983,43.177348238,43.19105914,43.050932996,43.061790889,43.062175978,43.047762071,43.050036903,43.07185358,43.062358238,43.071051973,43.062175976,43.060595065,43.062109674,43.065783043,43.050690927,43.067202215,43.045599736,43.044836446,43.05877773,43.052240151,43.061123879,43.056771711,43.060738182,43.056579619,43.06662444,43.074471278,43.074648666,43.046237799,43.077571014,43.060497396,43.072055452,43.088717264,43.044106553,43.05182142,43.045838753,43.04100346,43.017145029,43.002602138,43.00093386,43.014147979,42.995438666,43.016668568,43.013478123,43.017747385,43.01170323,43.006515147,43.006579954,42.987224064,42.995440093,43.016643965,43.016623464,43.016499144,43.014589097,43.010588286,43.018313165,43.012028234,43.016082498,43.01095752,43.016548911,42.99855705,42.993750243,43.010212678,42.999559684,42.995809049,43.020950133,43.006514538,43.001645058,43.00557917,43.012898585,42.995441229,43.002686823,43.002732657,43.019278275,43.002745371,43.002546611,43.016764451,42.988234851,43.003185645,43.003645285,43.016642381,43.013177039,43.01327966,43.01660633,43.014342743,42.989610402,43.016582096,43.016306213,42.991985372,43.016641439,43.955942726,43.955942526,44.818798747,44.816286043,44.803666521,44.817787633,42.603007389,42.606246469,42.592208719,43.28559664,43.295415378,44.523412515,44.523177895,44.522362523,44.524185977,44.532650952,44.526069447,44.527060643,44.5225273,44.528855734,44.52620205,42.691717764,44.185078434,44.162348268,44.18577118,44.171077484,44.170883136,44.18437743,44.184956658,44.182056944,44.156495812,44.17528248,44.183730173,44.156071719,44.186532517,44.165915181,44.176725262,44.177801053,44.182944681,44.176964778,44.178292865,44.207309994,44.210537822,44.206997212,44.229469647,44.229482388,44.208303776,44.204814737,44.215422724,44.204706207,44.231256078,44.208050281,44.210633886,44.54720708,43.032734,44.039292032,44.099449041,43.989300566,44.03295151,44.032749834,44.068157407,43.982157202,44.199355393,44.251468077,44.261903786,44.258599323,44.261999634,44.244024658,44.260623135,44.241611961,44.258084179,44.27257158,44.243900547,44.243766957,44.244083558,44.261814148,44.265868276,44.26175631,44.261810653,44.261304676,44.261586282,44.261757905,44.287129653,44.261934685,null,44.256722498,44.27381493,44.231141788,44.258487728,null,44.273022367,44.270512076,44.261970573,44.258701131,44.25860084,44.265855566,44.255652846,44.280248232,44.274651967,44.287825336,44.273044641,44.262084591,44.287407246,44.24550627,44.272974453,44.272888473,44.243106308,44.239731957,44.254474238,43.251411525,43.309975202,43.498601564,43.192769835,44.816326053,44.815465682,44.820409689,44.850854309,44.814264015,44.813756638,44.803129201,44.779718721,44.818846982,44.771072951,44.799700105,44.770140525,44.801916218,44.807571029,44.806217996,44.802174983,44.789290592,44.785518075,44.826832245,44.8433867,44.78920021,44.828958038,44.814894633,44.806018178,44.794627383,44.771172713,44.791797686,44.80481388,44.794550161,44.802229855,44.776719144,44.789209221,44.795198674,44.811085294,44.785861988,45.124296731,45.825813982,44.883742662,44.786887064,44.797515,45.099995271,45.099586807,45.092427148,45.100662645,45.099404284,45.086564249,45.099533956,45.085240996,45.099071591,45.092446803,45.099980382,44.027054729,44.174048694,44.359608737,44.357586168,44.365846877,44.429354691,44.398399011,44.373072056,44.378420937,44.391075701,44.36932933,44.395843572,44.384352776,44.396106459,44.380267645,44.38810835,44.379211773,44.395366049,44.354859346,44.379265759,43.626867713,43.627711767,43.845372109,43.854187333,43.236241423,43.255114152,43.211745335,43.22132957,43.228806619,44.093011494,44.092959898,44.088692413,44.08277317,44.102189485,44.090543467,44.083220132,44.088969586,44.078201583,44.085764908,44.082132019,44.073705754,44.085733849,44.08714225,44.071904587,44.088146615,44.07530055,44.077730773,43.004193966,42.988336733,43.013131418,43.008002436,43.021984806,43.012469303,43.022788713,43.013226316,43.009754683,42.996335813,42.980182825,43.006469374,42.981820175,43.037041322,43.001811725,42.983077758,43.012147624,43.020075293,43.003020797,43.004139852,43.015700039,42.996314396,43.13500735,42.935967845,42.878638654,43.008527937,42.966542794,43.013028482,43.112337925,43.104610252,43.11029261,44.176758743,44.163278527,44.186000682,44.215573626,44.213140758,44.218091237,44.228872248,46.845819728,43.877167307,43.873327594,43.87974569,43.891570059,43.878275679,43.891639922,43.895727612,43.884376026,44.260313714,44.280229156,44.286591549,44.261046826,44.963409921,44.99744961,45.046314411,45.093232238,44.977929986,44.972052873,44.965027614,44.952933816,44.959715578,45.662009819,45.667078597,45.632849764,45.519744687,45.78327407,43.909860721,43.975216884,43.793645979,45.4708018,45.507116108,45.496114134,44.840777991,44.860236867,44.897301101,44.901014528,44.871082991,44.871971456,44.896153046,44.86385599,44.871064873,44.871740993,44.911395524,44.87199251,45.188657709,44.835558617,44.732487871,44.961287413,44.95964348,44.948293852,44.980859167,44.934246601,44.951258809,44.958696571,44.960887746,44.960717368,44.960923935,44.958592883,44.957177062,44.951988622,44.963077037,44.961206585,44.959157651,44.951260321,44.940087742,44.974008058,44.95910061,44.949672529,44.960532926,44.946836272,44.951847582,44.950089128,44.979705937,43.534501845,43.535931878,43.467442581,43.492169154,45.401464699,43.970987052,43.92339475,43.906729633,43.899514922,43.898976632,43.899658576,43.89905207,44.287507513,43.070104439,43.069421497,43.076499758,43.07718688,43.07679449,43.076475123,44.258200264,44.338341067,44.45986094,44.249650106,43.886932945,44.001082561,43.998574288,44.258649073,44.271588307,44.273283748,44.258538047,44.25878418,44.272330136,44.273062512,44.268757447,44.273249462,44.261165102,43.1776023,43.178159601,43.1782604,43.179005099,45.89069066,45.890789291,45.643514599,45.633025147,45.633619579,45.632173513,45.635588723,45.633191528,44.282629128,44.283748718,44.257689894,44.260811619,44.284195906,44.277232257,44.020333256,44.071356915,43.997483177,44.017742162,44.018250772,44.024902595,44.034296202,44.012388377,44.026157537,44.051984077,44.024993503,44.050236977,44.019652132,44.029409861,44.024720576,44.032133075,44.017990747,44.017975088,44.014321734,44.016563815,44.042082415,44.024884484,44.020300402,44.018953769,44.024863744,44.030242855,44.017968668,44.010705998,43.994931669,44.018270423,44.041276419,44.019614642,44.032015176,44.038555216,44.074819377,44.022159984,43.076971909,43.075346206,44.718201409,44.808750653,43.111295931,43.122397126,43.107528143,43.113216101,43.101196441,43.111616629,43.118052233,43.110513097,44.915142333,44.734130677,44.741680424,44.594215441,44.818192572,44.997955067,44.95418711,44.724363588,46.587791662,46.593353311,44.965749929,44.941906144,42.780413835,43.739666362,43.547531469,43.308198939,43.320209722,43.311889751,46.01267033,42.587948268,42.580661015,42.570611364,42.578094009,42.558282006,42.565819076,42.585585286,42.590835309,42.558792192,42.580702561,42.595688226,42.576528581,42.610791787,42.632341791,42.575949813,42.565891256,42.624139513,42.557044706,42.606181059,42.566216561,42.578292767,42.588255361,42.568261142,42.577745076,42.595988608,42.581179872,42.624559901,42.58721411,42.566005264,42.5513099,42.570677403,42.575373431,42.567485857,42.554531312,42.579345703,42.586125395,42.572160683,42.58355808,42.573150667,42.624313341,42.60276266,42.578035928,42.587953639,42.607054658,42.615033388,42.625520394,42.580900264,42.578693801,42.587714403,42.55151299,42.558654243,42.581065044,42.611811015,43.923852153,44.707850096,45.11942264,44.98910743,43.798585229,43.307501436,43.384915735,44.453176137,44.449987959,42.698478035,42.683505236,42.688850053,42.688082779,42.690949124,42.701187114,42.83027217,42.741310839,42.844379285,42.570103833,42.759460678,45.449546677,43.474700291,43.533047,43.474726254,43.294375583,45.78906715,46.71474005,46.686280206,46.706200542,46.718227493,46.720011225,46.706276693,46.687343842,46.725416331,46.720582145,46.706078264,42.556617894,42.532179197,44.144226168,42.799617999,42.838853984,42.559997667,42.716159055,43.101342722,43.109414212,43.118441708,43.11012448,43.105099405,43.118137961,43.107524898,43.08157408,43.083124349,43.108455279,43.10988794,43.116450869,44.919098772,45.174609111,44.313844377,44.396377365,44.669716412,44.664137767,44.67165025,44.658236374,43.081613865,43.300883313,43.29648784,43.017561854,43.016225627,43.011503377,43.017251657,42.953650514,42.9593478,42.959391943,42.959737307,42.963441343,42.930473525,42.964879597,42.959251007,42.963947605,null,42.964087671,42.95430612,42.551749644,42.519141976,42.522325251,42.508081875,42.532164937,44.560917837,43.118681529,43.118641151,43.118641951,43.133397981,43.109997933,45.11708042,45.100917971,45.115684721,45.1215933,44.737517033,46.449383937,42.928305785,42.869190857,42.886790463,42.87177506,42.886403156,42.92424193,42.916292915,42.901789474,42.890205955,42.938347515,42.949105105,42.935640568,43.975339465,43.971875307,43.633188335,43.633261093,43.632791757,43.637662574,43.046878349,43.041872279,43.036078453,43.059358121,44.556641691,44.948759712,45.176871114,45.191314053,45.176436633,45.176293103,43.451418887,43.451596448,null,43.089221944,43.084185621,43.095536354,43.081935718,43.087407619,43.093331802,43.097349337,43.089070731,43.098339102,43.666321777,43.475677371,43.470782446,43.474786585,43.459340712,43.46995857,45.887516131,45.889741421,45.835757669,42.903861493,42.910687465,42.910763061,42.901878565,42.926954481,42.910700835,42.900747582,42.93010992,42.898012503,42.903922905,43.002993917,null,null,43.010149448,43.010165626,43.020171202,43.013495639,43.021077834,43.019103911,42.738704511,42.719241181,42.717685469,42.736264984,42.682196017,42.719376087,42.718912074,42.720543341,42.694859032,42.712123092,42.719301983,42.722256265,42.713451542,42.692310915,42.71947467,42.695639828,43.798441112,43.798690259,44.252740713,44.003993908,null,44.926257021,44.932961214,44.936933685,44.941018427,44.936068105,44.939892201,43.812561124,43.380255045,43.381481939,45.302609887,44.690073541,43.529932624,43.532445273,43.531811927,43.539881356,44.725936999,44.73228614,45.555125662,45.192320844,43.586558877,43.610679106,43.615223163,43.607304589,43.582721501,43.609741404,43.591367962,42.857823501,44.958979308,42.966144951,42.984662962,43.007175811,42.950077645,43.016145731,42.979735979,43.016507675,42.994587241,43.059982134,43.068824026,44.575721853,44.283618187,44.356445508,43.943558726,42.959084292,42.980254007,42.961279162,42.847978334,44.901748179,44.90175945,44.907908602,44.918303674,44.929678831,44.923427473,44.904547852,44.884682005,44.919973336,44.904744604,44.758271268,45.397606976,45.399968125,45.541324821,45.55250218,43.086648953,43.087127897,43.221936575,43.252683803,43.245530694,42.918201022,42.954641404,42.954854071,42.930019631,42.93980948,42.930266194,42.936976845,42.958996072,42.944560477,43.222432546,43.232084396,43.221015761,43.21372351,43.235537191,43.235688952,43.220875519,44.025636905,43.630961247,43.384860579,43.329319805,42.989055146,43.177355884,43.184250223,42.737786309,42.706011473,null,42.750299612,42.717667357,42.706014849,42.769401917,42.724995195,42.739239794,42.707551502,42.688395544,42.742332384,42.736607086,42.762740979,42.742320999,42.734078326,42.760551894,42.712114008,42.715038329,42.769995609,42.732045492,42.725965824,42.715074754,42.748789474,42.722720606,42.725975609,42.712253753,42.731920683,42.726604132,42.735530829,42.704130575,42.725632796,42.714237745,42.718699312,42.737801466,42.747740734,42.750052021,42.724476643,42.752041218,null,42.734220478,42.721486265,42.769440333,42.749119906,42.635246359,42.685453053,42.69048814,42.679205464,42.679798418,42.681608015,42.667045007,42.712682326,42.678748204,42.68624115,42.717526252,42.7008576,42.6788276,42.701722744,42.722281291,42.728094551,42.648515277,42.686461533,42.693855608,42.686222895,42.700862602,42.700761341,42.685686251,42.722535705,42.672265372,42.649770112,42.685713945,42.678897967,42.719907975,42.703851595,42.678939487,42.705919658,42.695603895,42.655239226,42.682241266,42.718269348,42.697936847,42.706928121,42.678503979,42.678886864,42.715337856,42.56644436,42.591790631,42.592980322,42.588046819,42.591839239,44.873299747,44.881029957,43.497414433,43.278530075,43.283259255,42.509268514,42.503415642,42.501517507,42.498672611,42.505401783,42.522718708,42.508366074,42.553973265,42.511072538,42.532781505,42.500814092,42.532254182,42.511049125,42.516354443,42.532319336,42.514579244,42.50935676,42.834623411,42.779218159,42.936227501,42.93779646,42.936200967,42.92030406,42.8734043,42.873610278,42.874221447,42.867155723,43.009812524,43.007521342,43.009582165,44.495335846,44.492552713,44.523039825,44.453896102,42.890127501,42.919704995,42.918914501,42.784477425,42.835822402,42.772972774,42.805742476,42.784625659,42.784634292,42.805203937,43.225824768,42.678462388,42.667823622,42.675986674,42.673516972,42.703430662,42.681217922,43.113926579,44.028911235,45.819357176,43.014270505,44.070981652,44.074825537,44.069900537,44.073849628,44.072905346,44.076043927,43.171831424,43.190493827,43.183130082,43.192912117,43.323740736,43.649259698,42.627457096,42.637738261,44.367169297,43.077607578,43.074239078,43.074727065,43.079880769,43.312937348,43.317311131,43.31597968,43.311412086,43.308250377,43.307760973,43.317710497,43.427368719,43.419530056,43.419404225,43.426028225,43.399925554,43.426908276,43.427847491,43.427034869,43.427008123,43.407369322,43.419461956,43.424919321,43.426905667,42.832311115,42.834932425,null,42.837543512,null,42.949112712,42.946659201,42.945402985,42.947364552,42.9291479,43.760736499,43.764323439,43.758567808,43.751999468,43.739220512,43.749793564,43.773844296,43.770410708,43.743456218,43.763422374,43.740431058,43.743260824,43.727917673,43.735778505,43.776290776,43.762619646,43.773761567,43.743299101,43.725957799,43.768331175,43.754671908,43.776527718,43.756453945,43.735781918,43.623030365,43.798254199,43.797216977,43.717543727,43.755747708,45.137695898,45.149165276,45.140734863,43.46182584,43.48936593,43.448928645,43.456320474,43.067279469,43.090019419,43.075690872,43.039016035,43.034063193,42.940729651,42.926848338,42.930210903,42.924662997,42.934627044,42.929861013,43.159038512,43.03062446,43.092279336,45.137677104,45.139470066,42.80463245,43.746919814,43.747554884,43.38711291,43.379865307,43.375977393,43.567930746,43.542163286,43.571784161,43.571255244,43.537405677,43.539582143,43.554761758,43.539528532,43.728240046,43.725999159,45.480711194,42.656891088,42.763563088,45.120294743,44.899944781,45.843736056,45.562469207,42.669554661,46.183889062,45.119202228,45.145627402,46.161540223,46.161636772,45.91252088,43.104429757,43.067884416,43.089319752,43.060161403,43.075264256,43.01238387,43.112064764,43.087421279,43.05342996,43.068728341,43.101330308,43.067903344,42.991539206,42.980224609,42.983057335,42.979448883,42.988163564,43.117645488,43.012303505,43.074082722,43.041219829,43.119331139,43.133938137,43.089623929,43.018796818,43.01248906,43.015707885,43.001622334,43.091847195,43.104802256,42.984596252,42.999098679,43.046743784,42.997163393,43.003015656,43.018073683,42.992251209,43.013375072,43.058844117,42.977515822,43.016840266,43.067519513,43.05957972,43.026046674,43.100490502,43.072956215,43.08624624,43.083256866,43.143199753,43.104975028,43.10328781,43.111972879,43.096588153,43.088433793,43.021640772,43.119483272,43.056175615,43.104368275,43.088932808,43.092781144,43.085604053,43.014159407,43.017684865,43.022162727,43.104982708,43.011034678,43.067568323,43.015849041,43.126870014,43.089337,43.051509974,43.023212241,43.060299161,43.046957083,43.077525298,43.036441219,43.040199343,43.029414388,43.037581392,43.021633661,43.031144985,43.048702609,43.099690691,43.081119691,43.075109922,43.060921699,42.966716468,42.988272776,42.981889579,43.052458715,43.036600058,43.067848821,43.089162951,43.081819713,43.012335246,43.019192259,42.990279115,42.99368404,42.96656844,42.991322939,43.124382792,43.059256085,43.069382709,43.025217528,43.072246028,43.060230901,43.006643026,43.101311647,43.007250175,43.014187865,43.02161303,43.089153297,43.003176631,43.006475225,43.014061095,43.017048272,43.023033101,43.101060372,43.052559143,43.019098543,43.017022006,42.959184789,43.002893811,43.01052127,43.043202122,43.060585425,43.012219324,43.023232591,43.060543548,43.044391366,43.06228703,43.067912452,43.028636329,43.030552302,43.040122008,43.053175181,43.053423673,43.03988741,43.058664633,43.108964288,43.075280228,43.073320155,42.982805254,42.97223106,42.988191801,43.069720319,43.041389943,43.0293464,43.041690191,43.060590742,43.035799389,43.060508176,43.090176266,43.037373045,43.02298218,43.02259023,43.003051732,43.016985434,43.157546154,43.118419746,43.126625802,43.096099379,42.968041825,43.067759544,43.041629774,43.052662432,43.072907745,43.039371431,43.03887932,43.046648883,43.041642336,43.060211182,43.055976156,43.044966188,43.052693046,43.060149838,43.03606656,43.100748176,42.995181033,42.983999036,43.067196331,43.050354052,43.052556922,43.075130678,43.096944206,43.068079187,43.059100133,43.05861123,43.042411922,43.07455222,43.060105951,43.036076835,43.030537411,43.086459223,43.104436826,43.089758015,43.072816393,43.090101251,43.104648758,43.041422946,43.182572039,43.014152521,42.972813433,42.980869774,43.119488795,43.119488795,43.119413764,43.089711815,43.06061378,43.067918476,43.034674641,43.038668474,43.048902813,43.056442139,43.11737081,43.023002346,43.019098752,43.01559037,43.010906557,43.019052879,43.010424069,43.018187074,43.017042519,43.018708061,42.963310487,43.081497042,43.067750135,43.075211067,43.089618494,43.040249966,42.988229922,43.040189591,42.995635842,43.021131059,43.06879707,43.095984352,43.078797436,43.035747076,42.988568892,43.113370635,43.045815525,43.110012922,43.11224425,43.04455431,43.036395638,43.060248327,43.012416891,42.993679589,43.044697516,42.973955151,42.98578019,43.125411498,43.04153052,43.063672714,43.039273387,43.048760436,43.011052378,43.017044383,43.052946048,43.045729668,43.089580206,43.031439717,43.046657889,43.038806437,43.036136543,42.993971447,43.004062635,43.010344348,43.012274305,43.004217604,43.068026185,43.036811282,43.03778431,43.045701817,43.045430337,43.041649197,43.016857766,43.038677715,43.037688549,43.01685129,43.003114648,43.006392978,43.104958086,43.07193118,43.077714456,43.089603337,43.075242529,43.11174728,43.115934009,43.143761417,43.036204434,43.067523226,43.104849037,43.104281031,43.048652905,43.04457817,43.040267788,43.026135126,43.0111289,43.000748492,43.006038175,43.021906947,43.010185313,43.003060615,43.008465361,43.075198365,43.050392778,43.156018196,43.11194767,43.119390928,43.126944384,43.119471143,43.002911228,43.104736548,43.117503508,43.119389397,43.055413004,43.044523732,43.054845973,43.067909484,43.05787133,43.066837018,43.0624651,43.039773528,43.057069352,43.064206367,43.060581268,43.04731308,43.089835404,43.072832923,43.067463468,43.075853049,43.082223295,43.02259896,43.082468599,43.111686367,43.071715331,43.02160756,43.097152013,43.07521168,43.089913013,43.048609485,43.076335717,43.042455264,43.089687809,43.074106092,43.048082337,43.08972992,43.017025131,43.062887267,43.080039778,43.095207017,43.060331375,43.0811774,43.0918377,43.037540788,43.04838188,43.045608016,43.043202906,43.067888612,43.182568668,43.062443324,43.092560007,43.104378166,43.089896438,43.071117599,43.083302651,43.060097836,43.052534642,43.067760516,43.154373732,43.153715139,43.023219216,43.016953737,42.999520306,43.002030245,43.060385677,43.028683208,43.109258084,43.075192539,43.089889795,43.074581752,43.104838553,43.10896546,43.071293124,43.089896829,43.104915554,43.074287109,43.080699549,43.056524663,43.067532373,42.988251096,42.998256732,43.038734448,42.97372331,43.067517819,43.04115199,43.071124699,43.00293442,43.032682214,43.110174952,43.08591851,43.076764877,43.088286507,43.120106467,43.0936012,43.089881942,43.050885547,43.060610043,43.060475693,43.053438101,43.041609749,43.066055714,43.066032058,43.043163006,43.051592933,43.089800567,43.163103469,43.086060925,43.060189075,43.075276765,43.144629752,43.010137315,42.942747402,43.023168799,43.003088682,43.004913975,43.012246954,43.014067139,43.022072368,43.003050862,43.106446825,43.08988228,43.085940648,43.06004783,43.083562577,43.06746457,43.084799115,43.0530164,43.078897983,43.081772563,43.005985032,43.000811583,46.015186188,45.578113754,44.079336076,44.199858235,43.324507054,44.191578982,44.29783311,43.003107572,43.796740517,44.265827303,44.214059189,45.321390972,44.307332312,43.65887241,43.390000968,43.788039113,43.491717294,44.259494823,44.295760957,43.159069698,43.027944171,45.744133054,44.294604351,42.839761601,43.038670425,43.038690363,43.04448016,43.041618846,43.111931282,43.031448151,43.042459018,43.123156245,43.03503923,43.121903349,44.528944182],[-89.3103004,-89.29144897,-89.40900827999999,-89.3992117,-89.40409565,-89.38211876,-89.40075314000001,null,-89.3323913,-89.40084520000001,-89.37980288999999,-89.40086798,-89.40900517999999,-89.39836309,-89.51979152,-89.47358920000001,-89.51689055,-89.39581389,-89.37798151,-89.45111794,-89.48140472,-89.45118596,-89.4971163,-89.38671588,-89.39585717,-89.40409366,-89.39721259,-89.30853571999999,-89.30691168,-89.28486703999999,-89.3070302,-89.28262957,-89.32448927,-89.39399038000001,-89.40931757,-89.40676558,-89.40394924,-89.41946566,null,-89.3078301,-89.38794482,-89.40053172,-89.40097469,-89.40068606,-89.39634497999999,-89.38894524,-89.40228996,-89.43812808,-89.40084638,-89.38590585999999,-89.38986903,-89.40405742,-89.39661245000001,-89.50077773,-89.39539895999999,-89.40075407,-89.4255769,-89.37014044999999,-89.3867989,-89.42865082,-89.4512319,-89.41491846,-89.40900425,null,-89.39399662,null,-89.42873025,-89.46101813999999,-89.54086402999999,-89.37436606,-89.31976838,-89.38775398,null,-89.39741124,-89.39493687,-89.36491578,-89.40905404999999,-89.39508324000001,-89.41892464,-89.36340189000001,-89.5269843,-89.39344624,null,-89.47500054,-89.32482616,-89.49600629,-89.38245338,-89.50260182,-89.48314043000001,-89.40900538,-89.42864050999999,-89.50263136,-89.36366346,-89.34533236999999,null,-89.35798387,-89.40899548,-89.39382221,-89.49692395,-89.34512488999999,-89.27033706,-89.34338542,-89.32792327999999,null,-89.45697411,-89.38438913,-89.39586319,-89.39178527,-89.37687096000001,-89.39743677,-89.39396965,-89.39000416,-89.41263343999999,-89.38624215,-89.31698273000001,-89.3941246,-89.41980187999999,-89.35104627,null,-89.36627548,-89.40369206,-89.38392746,-89.52592202,-89.50290142999999,-89.507486,-89.49078172999999,-89.26677961999999,-89.31550805000001,-89.40394703,-89.41753331,-89.43368071,-89.38100713999999,-89.54152633,-89.49636816,-89.38389587,-89.35904925,-89.39405247000001,-89.33067264,null,-89.50886219,-89.48755349,-89.2970529,-89.38401696,-89.35078412999999,-89.30991289000001,-89.36627548,null,-89.39328734999999,-89.39586246,-89.38882698,-89.50328612,null,-89.52524495,-89.3824333,-89.38261725,-89.38071739999999,-89.39407755000001,-89.34679447000001,-89.36126917999999,-89.39254575,-89.50322702,-89.47007659000001,-89.36198392,-89.37464131999999,-89.39746141000001,-89.40899528,-89.35104284000001,-89.40409335,-89.40900519,-89.38145358,-89.35103534,-89.36884790000001,-89.35798387,-89.37619352,-89.40417639,-89.37544355,-89.38245338,-89.35404991,-89.40853835999999,-89.38051848000001,-89.38513002000001,-89.47324972,null,-89.39695739,-89.40897239,-89.37541564,-89.40060717,-89.39175594,-89.38245338,-89.35606719,-89.38590547,null,-89.31451945000001,-89.36611624,-89.39749940999999,-89.35456142,-89.40079915,-89.35182476999999,-89.54579818000001,-89.74797055000001,-89.40303222,-89.35462006,-89.6516505,-89.65631076,-89.15053991000001,-89.21956053,-89.18837870999999,-89.22660021,-89.22626160999999,-89.24470629,-89.24308990999999,-89.28273978,-89.23403961,-89.24490733,-88.08624098,-87.97996503,-87.99384834,-88.04514261,-88.02132503999999,-87.99722633,-87.96177097,-88.09940536000001,-87.96669308,-88.04883771999999,-88.06940127,-88.04983958,-87.9907958,-87.99043114,-88.03842133000001,-88.03650245999999,-87.98828157,-88.04844184,-88.04270145,-87.98501767,-88.00088775,-88.07402942,-88.05266571,-88.04952899,-88.04853684,-87.99524945,-87.99654343,-88.00126693999999,-88.06463208,-88.03585217,-88.03590325,-87.99069066,-88.06940127,-88.06614178,-88.06331629,-87.99256566,-88.04720596999999,-88.10953244,-88.04810324,-88.04820558,-87.99535925000001,-87.96774089,-88.02065091999999,-88.05139029999999,-87.97212737,-87.94706417,-87.9851422,-88.00649269,-87.96311894,-88.07908654000001,-88.00083625000001,-87.99889338,-91.10644169,-91.1122283,-91.10069932,-91.10436273000001,-91.09136477,-88.47982241,-88.4036162,-88.43907213999999,-88.47264265,-88.45423157,null,-88.45247134,-88.44700367,null,null,-88.41340796,-88.46729759,-88.45886757,-88.43052562,-88.47407595,-88.44843777,-88.44823135999999,-88.46314652,-88.444789,-88.44686403,-88.44756537000001,null,null,-88.44300407999999,-88.45066316,-88.47085337999999,-88.44529047,-88.43900832999999,-88.441512,-88.44149573,-88.42182249,null,null,-88.43140188,null,-88.42164916,null,-88.47104315999999,-88.43887581,-88.4471855,-88.46729759,-88.44698099,-88.44777574,-88.4219714,-88.47619827,-88.4598713,-88.33954727,-91.21959268000001,-91.2072888,-91.25066819,-91.25014997,-91.23834969000001,-91.24091064,-91.23963463,-91.25168481999999,-91.25101205999999,-91.23893148000001,-91.24815301,-91.23979193,-91.24040847000001,null,-91.23965948,-91.24717723000001,-91.26596391,-91.24877436,-91.25342089,-91.23959993,null,-91.23263616,-91.25039674,-91.24101963,-91.21060805,-91.23708365,-91.24751247,-91.23757404,-91.25255524000001,-91.24947352,-91.25176268,-91.22136985,-91.25330636,-91.25347949,-91.24564918,-91.24895026999999,-91.21716578,-91.25319229,-91.24044523000001,-91.21910466,-91.23980781,-91.24676286,-91.24828126,-91.24498328999999,null,-91.23256265000001,-91.25319131000001,-91.21401188,-91.23904571999999,-91.23968879,-91.2448636,-91.2479301,-91.23550602,-91.23890629,-91.23835703,-91.24868425,-91.24940264999999,-91.23268323000001,-91.24384533999999,-91.21976458,null,null,-91.24678885,-91.21982795,-91.24602011,-91.21994549999999,-91.21062594999999,-91.23898988000001,-91.23965051,-91.24390956000001,-91.23259066999999,-87.99589095,null,-88.1567007,null,null,-87.930195,null,null,-88.08850877,-88.20214554,-88.02153865,-88.03153886,-88.0072071,-88.01771923,-88.01622704,-88.09131006,-88.08105621,-88.08433797000001,-87.99431785,-87.94300697,null,-88.09451441,-87.98258273,null,-88.03037576,-88.06507071999999,-88.10474614,-88.09746301,null,-88.05936785,null,-88.07620506000001,-88.09042467,-88.05233629,-88.07219695000001,null,-88.10795007999999,-88.08839684,-88.0926565,-88.10685963,-88.0322831,-88.07910788,null,-91.48789205,null,-90.13033346,-90.13181367,-88.77598306,-90.47825444999999,-90.4831993,-90.46974879,-90.48032404999999,-90.47671305,null,-91.14660685,-90.80093096,-90.81089919999999,-90.80275197,-90.81943043,-89.04338147,-89.03121151000001,-90.89183103000001,-90.89056638,-90.88934020000001,-88.98717382,-88.54146688,-89.85125840000001,-89.49826576,-89.49407161000001,-89.489445,-89.50959772,-89.52557514,-89.48282829999999,-89.50993714000001,-89.52464895,-89.48627685,-89.47165277000001,-89.41102923,-89.41894696999999,-89.47021531,-89.45530286,-89.47547784,-89.4148603,-87.98667956,-88.02628417,-87.94958395,-87.97650977000001,-87.87722844,-87.91518702,-87.92005673,null,-88.01252887,null,null,null,null,-87.95102849,null,null,null,null,-88.04829547,-88.08736743,-88.1002427,-88.13540431,-88.10384197,-88.10519293,-88.11363288,-88.08809554,-88.11606802999999,-88.13363601,-89.33052368,-89.32606145,-89.32473926,-89.32615405999999,-89.32721205999999,null,-88.04719288,-88.06052588,-88.05755761,-88.04870554,null,-88.03437309,-88.05179646000001,-88.02680614000001,-88.0161118,-87.99489884,-88.03221021,-88.04653448000001,-88.01017088,-87.98957230000001,-87.99986705000001,-88.04720392999999,-88.01618391,-87.99961471,-88.04153042,-88.05434226,-88.06611985000001,-88.01116897999999,-88.00746420999999,-88.00690749,-87.99768478999999,-88.02752318,-88.02627567,-88.007456,-88.02998194,-88.00764004,-87.98747643,-88.02461168000001,-88.03062718,-88.04094109,-88.01717077000001,-88.04486952000001,-88.0472382,-87.98731757,-88.00721444,-88.00249316999999,-88.02713851,-87.99009031999999,-88.00424623000001,-88.0005551,-88.04699687999999,-87.98876005,-88.04327687,-88.05578748000001,-88.01625998999999,-88.04692299,-88.01783329,-88.04692299,-88.00598952,-88.04708761000001,-88.00249316999999,-88.04712243,-88.04143658,-88.00721444,-88.06529863999999,-88.01716848,-88.04164124,-88.04710726,-87.98635633000001,-88.02715282,-88.04721184,-87.99015067000001,-87.98745463,-88.02729545,-88.00826216999999,-88.04683201,-88.03844590999999,-88.03528934000001,-88.04368171,-88.00138438,-87.99684599,-88.02669211,-88.04678669,-88.00478966999999,-87.99141453999999,-88.04700828999999,-88.04694055,-88.00251872,-88.00519180000001,-87.98998097,-88.01288099999999,-88.04128845,-88.04710726,-88.00129683999999,-88.00255455999999,-88.04674122999999,-87.99902202,-88.04712206000001,-88.04071878000001,-88.00255889,-88.04710726,-88.00862012,-88.04703668000001,-88.01714111,-88.04710726,-88.04093978,-89.8291701,-91.43318477,null,-91.45674083,null,-89.63505182,-89.63368233999999,-89.63797499,-89.65159303,-89.63495928,-89.72929965,-89.57489739,-89.56962669000001,-89.5697057,-89.57475934,-89.55272561,-89.58968776,-89.50722288999999,-89.56967333999999,-89.56615574,-89.56959839,-89.5815453,-89.54799928,-89.58022724999999,-89.57479644999999,-89.58228087000001,-89.585748,-89.57489885,-89.57490107,-89.5135563,-89.55573484,-89.57543574,-89.54255086000001,-89.55259228,-89.58513137,-89.56465921,-89.56701609,-88.54121545,null,-88.55105192000001,-88.52712777000001,-88.54121547,-88.54121545,-88.54090228,-88.5412426,-88.3358116,-88.29551367000001,-89.64988163,-89.37801530999999,-89.38169384,-88.45734431,-88.46679275,-88.49792108,-88.48505596,-88.47687087,-88.47337352,-88.48965459,-88.46668385,-88.45468193000001,-88.49504391000001,-88.46498982,-88.47336970000001,-88.49245263,-88.46493306000001,-88.48529333,-88.46004253,-88.45808882999999,-88.46782589,-88.48056688,-88.49512262,-88.46489080000001,-88.45255448,-88.44596541,null,-88.44000855,-88.44314522000001,-88.42724126,-88.42497838,-88.42419303,-88.42793285,-88.44684359999999,-88.73953716,-88.73790386,-88.7471197,-88.51094243999999,-88.84191456000001,-88.56439066999999,-88.66408488,-88.39708474,null,null,-88.41532742,-88.39562299000001,-88.40723912999999,null,-88.37239196,-88.35667137,-88.41570949,-88.40428546,-88.37500602,-88.4157769,null,-88.4154095,-88.38292113999999,null,-88.40074254,-88.42408808,-88.35669075,-88.41201307999999,-88.41532741,-88.39708474,-88.42074538999999,null,-88.41743759000001,null,null,-88.43088456,-88.40725168,-88.39498177999999,null,-88.41921773,-88.41587502,-88.413645,-88.41604608999999,-88.41744851999999,-88.3736498,-88.40409769999999,-88.38332095,-88.40174236999999,-88.43342495,null,null,-88.37158474,-88.41574481000001,-88.42580599,-88.39974253,-88.38003252,-88.4406194,-88.41559257999999,-88.36130686,-88.41574717,-88.42296601,-88.36311863,-88.40110851,-88.35197832,-88.26121465,-88.32412483,null,-88.20182686,-91.51611260999999,-91.49499955,-91.52487128999999,-91.47337425000001,-91.47576173,-91.49429315,-91.46823858,-91.50937693,-91.50939433000001,-91.54270151999999,-91.48507166,-91.49817615000001,-91.46832214,-91.50981405,-91.49499955,-91.50598008,-91.53257704000001,-91.5045087,-91.49516942,-91.48659571,-91.51547959,-91.50938779000001,-91.47826584000001,-91.49412757,null,-91.5460875,-91.49380624,-91.4850811,-91.42847612,-91.47800780999999,null,-91.46088564999999,-91.46805037,-91.47156606999999,-91.49502783,-91.47854971,-91.49516942,-91.0783145,-91.46133505,-91.45386449999999,-89.89409602000001,-89.88860142,null,null,null,-89.68435255999999,-88.60145553,-88.61185519,-88.59645784999999,-87.65844026000001,-87.65503394,-87.63072842,-87.63012521,-87.63603071,-87.6240241,-87.50447176999999,-89.06435998000001,-89.10042462,-89.11257867,-87.46445048,-87.4385711,-87.43142704,-89.81676451,-89.80651093,-89.80590857999999,-89.81828084999999,-89.80698728,-89.77521768,-89.79570934,-89.77069749,-89.77522184999999,-88.85036456,null,null,-87.92329983,-87.92054573,-87.95220178,-87.63899932,-87.65911575,-87.65783389000001,-87.66362101999999,-87.62835972000001,-87.68287571,-87.71004501,-87.68943735000001,-87.65925273000001,-87.68296031,-87.65919275,-87.68633821,null,-87.66598609,-87.67055714,-87.70072236999999,-87.6617591,-87.65992816000001,-87.67155225,-87.69890215,-87.66059416,-87.66282799,-87.67480342,-87.65924755,-88.26589219,-88.25154573,-88.23236229,-88.20145721999999,-88.22702317,-88.22716891,-88.26083437,-88.25892772,-88.23279706,-88.22174267,-88.18755803000001,-88.22717817,-88.23306151,-88.22389352,-88.26670462,-88.23438323000001,-88.23728865,-88.24719281,-88.23224070000001,-88.23729862,-88.1859269,-88.26271202,-88.23422669999999,-88.23715901,-88.23274493,-88.22271105999999,-88.23211489000001,-88.23348717,-88.22966277,-88.25014555,null,-88.2629615,-88.30555151999999,-88.41667504,-88.24382998,-88.38424784,-88.40423699999999,-88.40300157999999,-88.27774745000001,-88.52964274999999,-88.21718586,-88.2241714,-88.35098214999999,-88.33782105,-88.35608705,-88.34528597000001,-87.76096016,-90.39110325999999,-90.39756771,-87.53533637,-87.51497547,-90.95585148000001,-88.48443004000001,-88.48553078,-88.46575928,-91.21682404000001,-91.23418632000001,-91.18757389,-91.19891884,-88.35218705,-88.3203074,-88.29384819000001,-88.33680208,-88.31844571000001,-88.31997853,-88.32176129,-91.74586626999999,-92.59380363,-92.71463788,-92.68312075999999,-92.69400733000001,null,-92.74374141,-92.73423207,-92.75717955,-92.75700525000001,-92.74359722,-92.71910971,-91.20937232,-91.27064274,-91.26575136,-90.85071146999999,-91.73338939999999,-91.73323653999999,-91.74403055000001,-91.73390225,-91.76483766,null,-92.62941635,-92.62219919,-92.62867132,-92.62436979,-92.62614052000001,-92.62219919,null,null,-91.93483427,-91.9233553,-91.93321816,null,-91.91062420999999,null,-91.93183639999999,null,-87.13845254,-87.13097655,-87.12106269,-87.24222933,-87.1936331,-87.38113378,-87.37376623,-87.38398961999999,-87.35918282999999,-87.37554836,-87.37579146,-87.36422331999999,-87.37517799,-87.35147216,null,null,-89.63693434,-89.65097633000001,-89.6232047,-89.63930834999999,-89.62541702999999,-89.62598884000001,-89.62325696000001,-89.65551196,-89.64784209,-89.6175635,-89.63149423,-89.62262586999999,-89.61916668000001,-89.65552038,-89.63930713000001,-89.63938949999999,-89.62610005000001,-89.63918728,-89.63013218,-89.62802789,-89.63933951,-89.62372024,-89.62736049999999,-89.64761851,-89.62769624000001,-89.62326204,-89.62141531,-89.63710851,-89.63474918999999,-86.93056674,-89.24611179999999,-89.36230184999999,-89.40831557,-89.26662829,-91.26510620000001,-91.25451621000001,-88.76444222000001,-89.18282172000001,-89.40098034,-89.42534284,-89.40586858,-89.40775954,-89.42507385,-89.40622368,-89.41273009,-89.41268078,-88.55705775,-88.73327295999999,-88.57920582,-88.31277978,-88.32911412,-88.32408912,-88.69021023000001,-88.53677594,null,-90.51217930999999,-90.50514566,-90.50497549000001,-90.50911986,-90.50454682,-88.46113968,-88.44044339,-88.43921937,-88.45916295000001,null,-88.46119899999999,-88.46112839,-88.45594044000001,-88.41769216,-88.44129522,-88.44646005,-88.36904925,-88.43987122,-88.46912239,-88.4753066,-87.98455137000001,-87.96442705,-87.98813806,-89.37438502000001,null,-89.37523795,-89.38354597,-89.37777850000001,-89.41128781,null,-88.2657316,-88.27353682,-88.27386445,-88.26203722,-88.27375522,null,null,-88.53766519,-88.52639098,-88.55247355,null,-88.54506926000001,null,null,null,null,null,null,-88.53758458,null,null,-88.54280297,-88.54136128,-88.55248709999999,-88.53754290000001,null,-88.53753689,null,-88.58386154999999,-88.54748475,null,null,-88.54935362000001,-88.52745941000001,null,-88.54267086,-88.58361755,-88.56245708,-88.54555477,-88.54293561,null,-89.43432743,-89.44877193000001,-88.45153383,null,-89.20327708000001,null,null,null,null,null,-90.59834898,-90.88301065,-90.88030413,-87.91158772,-88.76291696,null,-89.30879142000001,-88.35846415,-88.42312024,-87.95743564,-87.95958379,-87.95620192,-87.92076489,-87.91707597,-87.92520297,-87.95297264,-87.96044763,-89.74365763,-91.48460068,-91.13685735999999,-91.01523355,-90.839546,-90.84206704,-87.8225778,-87.84766431,-87.89314223,-87.85725198,-87.88300832,-87.86710308000001,-87.82917544999999,null,-87.84678649999999,null,-87.82294167000001,-87.95158524,-87.9501648,-87.83805528000001,-87.82267806999999,null,-87.94709643,-87.83556261,-87.83715601999999,-87.83589666,-87.87630382,-87.83561198,-87.83222599,-87.85644268999999,-87.82714821,-87.82294765,-87.83254479,-87.85477840999999,null,null,-87.85421928,-87.82049148999999,null,null,-87.85469534000001,-87.82866591,-87.82676764,null,-87.85573687,null,-87.86861804999999,-87.83048549999999,null,null,null,-87.83086829,-87.81942662,-87.8852401,-87.83694889,null,null,-87.82042611999999,-87.84551546,-87.82316582,-87.83271075,-87.95614174000001,-87.82570647999999,-87.88195055,null,-87.87223027,-87.84566182,-87.85572817000001,-87.82345814999999,null,-87.82147884,null,-87.82538572999999,-87.85561165,null,-87.83805359,-87.91443341,-88.03700621999999,-89.83555312999999,-89.6490823,-89.64605939,-90.00447486,-89.71363268,-88.48230286,-87.90522184,-87.99045915000001,-87.92668955000001,-89.54429433,-89.54438424,-89.52870371,-89.53835973,-89.54967653,-88.22612169,-88.04248754,-88.22214196,-88.04873112,-89.01331983999999,-89.16913253,-89.24913859999999,-88.95607207,-89.03270721,-91.23716583,-91.03684694,-90.04481699,-89.80799636,-89.730699,-89.76893647,-89.83719256000001,-90.05206329000001,-89.78723728999999,-89.77922975,-91.48349426,-91.53135955,-92.11765388000001,-92.10391042000001,null,-92.09347766,-92.10390473,-92.01042765,-92.09793265,-92.09794599,-90.80054414,-88.24830842,null,null,-87.5651909,null,null,-88.74248295,-88.68555849000001,-88.69066681,-88.31230245,-88.55586843,-88.71439547999999,-88.63577685999999,-88.49683399,-88.47265213,-88.46109251999999,-88.47045588,-88.48064166,-88.49298174,-91.93265919,-92.07692471,-91.89095002000001,-91.89049855,-90.17999444,null,-90.18218107,-90.18178545000001,-90.19019641,null,-89.86797048,-88.26232267,-88.22715976000001,-88.22875587999999,-88.25243401,null,-88.92672738,-87.99914928,-87.98860901,-87.97956859,-87.98740266999999,-89.30290309999999,-89.28887795999999,-89.30150109,-91.73913588000001,null,-87.98849546,-87.98853717,-88.00769043,-87.96919246,-88.05744267999999,-88.02786578,-88.0051904,-88.04706115,-87.95834111000001,-88.00838623,-88.00815897,-88.0081591,-87.96622886999999,-87.87047054999999,-87.81830825,null,-87.82190991,-88.15003627,-88.16680947,-88.22292367999999,-89.02669597000001,-89.03955196,-87.93286025,-87.92928784,-87.92981139,-87.91692346000001,-87.9376068,null,null,-87.91698842,-87.91650856,-87.92853363,-92.54241358,null,-92.53770994,-92.53434823000001,null,null,null,null,null,null,null,null,null,null,null,-88.04825511,-88.04845972,-88.04849345,-88.04505854999999,-88.71742295999999,-88.73102099,-88.72480105,-88.74020326,-88.07790697999999,-88.10610945000001,-88.10676934,-90.31563143,-89.68173164,-89.70897299000001,-88.64929278,-87.88888939,null,-89.75432148,-89.75454099,-89.73896907,null,-89.70918712,-89.70358276,-89.70369407,null,-87.86488076000001,-87.88120834,-87.87628087,null,-87.86070482,-87.86554663,null,-87.86067276,-87.86047474999999,null,-87.96491331,null,-87.97506713999999,-87.96481436000001,-87.96473924999999,-87.96545166,-87.97817597,-87.96906555,null,null,-87.8645975,-87.87043337999999,-87.86383873,-87.85533083,-87.85021055,-87.84312085000001,-87.83919611,-87.85604933,-87.80258929,-87.79246619,-87.87652865,-87.86296937,-87.84610866,null,null,null,-90.18274907,-90.06187541,-90.07097288,-90.07322412000001,-91.49515531,-91.39640353,-91.39822564000001,-91.39195592999999,-91.3945563,-91.38455548,-91.40675632,-91.3938899,-89.32587433,-87.93480081,-87.86968570000001,-87.88202692,-92.36200739,-92.36357284,-92.36212580999999,-90.01676625,-89.99640968999999,-89.99466212999999,-89.99648885000001,-90.01012566,-89.71868591,-92.7970491,-92.78685199,-92.23828655,-89.81383112,-89.81384233999999,-89.78946275,-89.78700757,-89.79351989,-89.79037022,-89.81302683,-89.77627384,-89.78733411,-89.79362965,-89.7958029,-89.79391638,-89.77947732,-89.80636149999999,-89.78688296,-89.79171002,-89.78690041999999,-89.79813776,-89.7936258,-89.79763868000001,-89.78831202000001,-89.79621817,-89.79366512999999,null,-88.11675259,-88.08820736,-88.09727808,-88.10744036,-88.0875853,-88.40419468,-88.40938939999999,-91.21021333,-91.47017391,-88.35332902,-88.36840198,null,null,-87.87693659,-87.87501793,null,-92.17097883,-90.43083756,-90.65621989,-89.5570761,-89.58280190000001,null,-89.58018063,-89.58494568,-92.55808062,-92.45306314,-92.57438293,-90.44828135,-89.21566905,-89.34763478000001,-89.22602506,-89.22474035,-89.22434809000001,-89.23858619000001,-89.20201878,-89.21910681999999,-89.22303152000001,-89.21505064,-87.87032455000001,null,-87.86083175,-87.85263639999999,-87.87798266999999,-87.86948546000001,-87.86080033,-87.85959038999999,null,-87.86016123,null,-88.11962104,-88.13592976,-88.08382523,-88.14334085,-88.09385511000001,-88.55246747,-88.87295709,-88.457752,-88.9234982,-88.54374322,-88.81520147000001,-88.56898227000001,-89.51383301,-89.53372256999999,-89.5533337,-89.54357846000001,-89.5322529,-89.53368422,-89.44680993999999,-89.45184544999999,-89.45903558000001,-90.38664769,-90.36683791999999,-89.88219587,-89.90656841000001,-87.79377787999999,-87.81950594,-87.7928587,-87.81199558,-87.83767774,-87.79821779,-87.80671013,-87.80068221000001,-87.78247173,-87.79964419,-87.79877332,-87.83766088,-87.80662128,-87.83605864,-87.81654668,-87.78646778,-87.83102381,-87.78264586,-87.80020355000001,-87.83592924,-87.78259064,-87.79030948,-87.78287472,-87.84301318999999,-87.7949764,-87.8194384,null,-87.80522205,-87.79811569,-87.83590633999999,-87.80140212000001,-87.80632755000001,-87.80560799,-87.80487693000001,-87.80188248,-87.80016467999999,-87.83935743000001,-87.79750871,-87.79686595,-87.79657880000001,-87.80065347999999,-87.80178782999999,-87.78819872,-87.82161375,-87.82009964,-87.81130116,-87.79021444,-87.81762187,null,-87.78706477,-87.82598159,-87.796859,-87.78274737,-87.79444942000001,-87.80456452999999,-87.79634242,-87.79367216999999,-87.80762798000001,-87.79450219,-87.80579521999999,-87.81613181,-87.79640594999999,-87.80750500000001,-87.79302257000001,-87.80487693000001,-87.80017769,-87.79166729000001,-87.89970543,-88.97553992,-89.00596016999999,-89.05165928,-89.01389385,-88.99236145,-89.00426358999999,-89.01591316,-89.02822964000001,-89.04602672999999,-89.0319528,-89.00896025,-89.01778288,-89.03575556,-89.03575139,-88.96151146,-89.02314222,-89.01761067,-89.05132294000001,-89.04851555,-89.01195103000001,-89.05076269,-88.97620431999999,-89.0251389,-89.0308619,-88.97496079,-88.98924106,-89.04260914,-88.99924399,-89.02244706,-89.04208349,-89.01850836,-89.00825380000001,-89.03575556,-88.43229311,-88.43699139,-88.43671637,-88.43517135,null,null,null,null,-89.81751482,-89.93765874,null,-88.22672991,-88.22304029999999,-90.36044019000001,-89.0564937,-88.98438132,-89.0229997,-89.02688624,-89.01488704,-89.05039364,-89.03286218,-89.0341964,-89.04667231000001,-89.04031938999999,null,-89.03522653,-89.02550318999999,-89.05888817,-89.01881407,-89.05208666,-89.00839996000001,-89.06134028,-89.07021892,-89.37531702,-89.38168234,-89.37959623,-89.37367215,-88.33742288000001,null,-89.73044022000001,-89.74284478,-89.54573431999999,-89.3081,-89.55282178,-89.65216226,-89.01674532,-89.01335765,null,-89.02023538,-88.15184206000001,-88.11340982,-88.1293879,-88.14697074,-88.18397236,-88.12892914,-88.07893547,-87.82348813,-87.83618457,-87.81479176000001,-87.98073660999999,-88.27428784,-88.27012941,-88.27476448,-88.29347528,-88.37186935,null,null,-88.16287742999999,-88.47003929,-88.47282054999999,-89.28908211,-89.22853719,-88.70804989,-88.69540757999999,-88.7202406,-88.72676177,-88.72145291,-88.72000697,-88.72606614999999,-88.72605853,-88.72209592999999,-88.71555678999999,-88.72120613,-88.72412851999999,-88.7379024,-88.28447975,-88.6246824,-88.61436466000001,-88.62315361,-88.63585282,-88.6246824,-88.60734348,-88.63492832999999,-87.87753078999999,-88.38090147,-88.36792920000001,-88.35420182,null,-88.36073956,-88.55253008,-88.20431523000001,-88.18495487,-88.18481921999999,-88.20111808,-88.1907025,-88.18098621999999,-88.18092039,-88.18272838999999,-88.18238289999999,-88.18292944,-88.19545257999999,-88.19303959,null,-88.76800115,-88.74400107,-88.74607953,null,-88.74054855999999,null,-88.73989106000001,-88.74394482,-87.99707012,-88.00613361000001,-87.99597321,-87.99185181,-87.72302188,-87.72037508,-87.72302246,-87.73768157000001,-87.71292619,-87.75779932,-87.72293997,-87.71628939,-87.70629305,-87.7146238,-87.7247898,-87.7096059,-87.71293463000001,-87.71126192,-87.72793796000001,-87.71673792,-87.73614646999999,-87.71293108,-87.7220063,-87.73715949,-87.72794727,-87.75123596,-87.72325031,-87.75352565,-87.71127375,-87.72126581000001,-87.72294745000001,-87.70956257,-87.7208,-87.71794,-87.7131727,-87.7530501,-87.71626691,-87.74596037000001,-87.71698146999999,-87.72548997,-87.71460374,-87.7441196,-87.71293283999999,-88.00168831000001,-87.93673162,-87.85024656,-87.81962857000001,-89.15049815,-89.15565013,-89.1467981,-88.8394533,-88.82628567,-88.82841148999999,-88.81758723,-88.84378506,-88.82507862999999,-88.81972583,-88.83685908,-88.83692786,-88.83930223999999,-88.83691666,-88.8289169,-88.82168425,-88.09505971,-88.11017436,-88.08707428,-88.14619961,-88.07974365,-88.09701302000001,-88.06919977,-88.09240800000001,-88.06857484,-88.16629996,-88.08677661,-88.12620041,-88.15383911000001,-88.86057854000001,-88.84141479,-88.84485495,-88.8389458,-88.83310093999999,-88.83883869,-88.8369383,-88.8325679,-88.31473852000001,-88.80776356,null,-90.36839430000001,-90.3325597,-89.63387537,-87.97106316999999,-87.96131389,-87.98124653000001,-87.88571887000001,-87.88295589000001,-87.87207793,-87.8627986,-87.86931899,-87.87250037,-87.87547331,-89.4696208,-89.45138428999999,-89.45958999,-89.46361048,-89.46802863000001,-89.45614976,-89.46883191000001,-89.46886732999999,-87.8113996,-89.72856280000001,-89.7347864,-89.72919601,-88.61046932000001,-88.24512192,-92.15062570000001,-91.04456786999999,-91.14318514,-90.88106121,-89.66099862,-90.4684645,-89.09124543999999,-88.06771086000001,-88.07133462,-87.99099283,-87.91683537999999,-87.93666983,-87.9478814,-87.94816092000001,-87.94565537,-87.92302599999999,-87.90558722999999,-87.95765013,-87.98683821,-87.94534332000001,-87.90912132,-87.91104109,-87.89071903999999,-87.94758731,-87.89910164,-87.91843296,-87.91196152000001,-87.9365767,-87.95056873999999,-88.00588748,-87.94306331,-87.92173911,-87.9125578,-87.90849145,-87.91610369999999,-88.01643389,-87.95530841,-88.05566938,-87.93993152,-87.92919478,-87.93290288999999,-87.93822998,-87.93638513000001,-87.91123626,-87.91734044,-87.94001373,-87.94585322,-87.93977181,-87.91424542999999,-87.89554471,-87.90900718,-87.92715033,-88.01246086,-87.99104445,-87.94692987000001,-87.92242105,-87.89792743,-87.91548143,-87.88783273999999,-87.95838517,-87.96647021,-87.97314154,-87.91910756999999,-87.87793363999999,-87.88301018999999,-87.94844825,-87.89680073,-87.94731265999999,-87.98563448,-87.94772081000001,-87.89154416,-87.90480545,-87.91933605,-87.93765208000001,-87.94882817,-87.94852458,-87.88347573,-87.90429577,-87.91118781999999,-87.92292956999999,-87.94500555,-87.93553789000001,-87.87668381,-87.93298837,-87.93950861,-87.92854507,-87.98698759,-87.96502948,-87.94863053,-87.9577401,-87.95783367999999,-87.93016799999999,-87.94738622,-87.97250938000001,-87.90222787,-87.9671709,-87.88792889,-87.90857784000001,-87.89855993,-87.90725605,-87.88765828,-87.91744444,-87.93382506,-87.93390434,-87.92806134,-87.93560263000001,-87.96722674,-87.93644802999999,-87.94522101,-87.91601631,-87.90405509,-87.90522313,-87.9063896,-87.90050278,-87.91405406,-87.94725707000001,-87.90524176,-87.91424542999999,-87.91739200000001,-87.92009109999999,-87.92852911,-88.00816494999999,-87.90768165999999,-87.92994494,-87.95896223,-87.98500841000001,-87.98749429,-87.96736094000001,-87.90476366999999,-87.90499638999999,-87.94595793000001,-87.89643160999999,-87.94584793,-87.92398237,-87.93760062,-87.94772014999999,-87.9867716,-87.96708409,-88.0162215,-87.98692079,-87.95756172999999,-87.89792743,-87.91601548,-87.89797469,-87.92857472,-87.94779643,-88.01755283,-87.95742839,-87.94025791,-88.02434031999999,-87.92336332000001,-87.94886028000001,-87.95987918,-87.9040846,-87.88788832,-87.87255446,-87.90396493,-87.8860664,-88.00129742999999,-87.98568877,-87.96225594000001,-87.95748679,-88.02433771,-88.03711898,-87.96746084999999,-87.91097870999999,-87.94816092000001,-87.95769137000001,-87.97721473999999,-87.92534891,-87.95888918,-87.92534756000001,-87.90272942999999,-87.93915321999999,-87.93259362000001,-87.9463111,-87.95750199,-87.95740876000001,-87.93747630999999,null,-87.94486759999999,-87.91262805,-87.92842241,-87.95631011,-87.921527,-88.006208,-87.96722835,-87.9873217,-88.00512426,-87.98835680000001,-87.90812386,-87.94929009000001,-87.93334732,-87.92854375,-87.90705583,-87.91897427000001,-87.93933755,-88.01742579,-87.95772058,-87.90138045,-87.92014239,-87.94701246,-87.91712013999999,-87.92821153,-87.95006239,-88.00600338,-87.99012968,-87.98833643,-87.95930642,-87.9110007,-87.911062,-87.90900361999999,-87.92834216999999,-87.91398399000001,-87.89554289,-87.9052252,-87.96637823,-87.93346719,-87.93298335,-87.94115474,-87.91832461,-87.94779439,-87.9292702,-87.95528557999999,-87.93299614,-87.94501477,-87.95818629999999,-88.02749406,-87.94693424,-87.93268304,-87.95004011,-87.96986928,-87.88765979999999,-87.92954641999999,-87.90476692,-87.93736464,-87.93570844,-87.93883833,-87.90590090000001,-87.91438951000001,-87.91119261999999,-87.88793870000001,-87.91746474,-88.01365832,-88.00781377,-88.00598411999999,-88.04575401,-87.98369171,null,-87.95584113,-87.98169085000001,-87.96555211,-87.96319873,-87.93299679,-87.93069579,-87.97665816999999,-87.98748976,-87.92485086000001,-87.93878625000001,-87.96510782,-87.97967917,-88.03545054,-87.97854974000001,-87.95812223,-87.94779088999999,-87.88432557,-87.88544815,-87.90276244,-87.88725426000001,-87.91755573,-87.90345047,-87.92205945000001,-87.9034217,-87.90122977999999,-87.90916716,-87.90351464,-87.98494151,-87.93054066000001,-87.9491019,-87.9468074,-87.96722835,-87.90667311,-87.9330769,-87.92968143,-87.95967444,-87.91089439,-87.94770115999999,-87.94173847,-87.91960285,-88.01487013000001,-88.01854514,-87.95744626,-87.98204824,-87.92430219000001,-87.90945861,-87.93298708,-88.00581317,null,-87.96639125999999,-87.95748292,-88.05486417,-88.00577896,-87.94738622,-87.91849796,-87.91123023999999,-87.97794888999999,-87.95945132999999,-87.95752091999999,-88.01414631,-87.9665304,-87.91903388,-87.89837621,-87.8898166,-87.93143261,-87.96886463,-87.9833229,-87.94772081000001,-87.92705233,-87.95987918,-87.97756585,-87.96701867,-87.92847428,-87.97205515,-87.92922603,-87.92730022000001,-87.92168733,-87.90229170000001,-87.89288667,-87.90911387,-88.00272002,-87.93439653999999,-87.9416908,-87.96722686,-87.92835384,-87.96039732,-87.92824889000001,-87.92830798999999,-87.94779102,-87.92277167,-87.91864726,-87.94190785000001,-87.93816403,-87.94883582999999,-87.93282072,-87.91585701,-87.98755176,-87.95337231000001,-87.92720643,-87.97623892999999,-87.94683056,-87.90917931,-87.98316874,-87.97116679,-87.97374891,-87.91121357,-87.96640737,-87.89888471,-87.93835738999999,-87.88354664000001,-87.96944535999999,-87.97372181,-87.96542466,-87.90636885000001,-87.88784205,-87.88788832,-87.97721473999999,-87.90618685,-87.94807288,-87.94362374000001,-87.9576244,-87.97453742,-87.94761038,-87.94762160000001,-87.98367282,-87.94857636,-88.05563597,-87.95751974,-87.98755,-87.96736306,-87.91909351,-87.96717214,-87.92240556,-87.91948159,-87.90499466,-87.94710357,-87.92268285,-87.94826483,-87.99269354,-87.92292936,-87.92019784,-87.9066524,-88.02755752,-87.96864325,-87.95882231,-87.97737384,-87.98568877,-87.94492183,-87.93354188000001,-87.91156209,-87.92256338,-87.9400875,-87.90765245999999,-87.91401894000001,-87.94207093999999,-87.94695029,-87.90522464999999,-87.91571509000001,-87.94112536,-87.94573697,-87.96885444999999,-87.90704289999999,-87.92057067,-88.01259942999999,-88.00797057,-87.88716024999999,-87.90965253,-87.90955739,-87.93888391999999,-87.92920993,-87.99786896000001,-87.92468144,-87.93885568,-87.94827355,-87.96777953,-87.90416981,-87.896801,-87.94815958,-87.92666014,-87.9562956,-87.95651460000001,-88.02587106,-88.01576564,-88.0414596,-88.04459233,-87.98523852,-88.00428306000001,-88.00586146000001,-88.05414795,-88.04534808,-87.96606486,-88.00567589000001,-87.9498079,-88.00540398,-87.93312145,-87.93617377,-87.9394877,-87.94788210999999,-87.91262955000001,-87.91863497999999,-87.92696441,-87.9577213,-87.95761164,-87.93819838,-87.93885400000001,-87.89783919,-87.94945728,-87.96501313,-87.92846546,-87.98753538,-87.95642295,-87.95672107,-87.97762697,-87.9474475,-87.90345047,-87.94500918,-87.95872553,-87.94772081000001,-87.95768529,-87.94024831999999,-87.91896794,-88.01079952000001,-87.94772303000001,-87.94867735,-87.98544068,-87.93393741,-87.93436833,-88.02767996,-87.94849356,-87.99205990999999,-87.94822936,-88.00097169,-88.03792036999999,-87.92707075,-87.96334978,-87.95973146999999,-87.98478076000001,-87.98708319000001,-87.92818327000001,-87.95769002,-87.95032285000001,-87.91263057,-87.91853579000001,-87.94362374000001,-87.93060432,-87.93670419,-87.9478139,-87.94362374000001,-87.94362015999999,-87.94223656,-87.93067584000001,-87.90153732,-87.90526048,-87.92801523,-87.94728773999999,-87.90440146,-87.89283759999999,-87.89543241,-87.91304522999999,-87.91636629,-87.92017478,-87.88789622,-87.92284947,-87.90594311,-87.92399315,-87.92434633000001,-87.88302399,-87.88797302,-87.92439743,-87.91896794,-87.91442793,-87.94772081000001,-87.90444918,-87.88974574,-87.90822278,-87.91132686,-87.91451655,-87.90351697,-87.88181109999999,-87.94639175,-88.02754840999999,-87.99583054,-88.00723323,-87.96680847,-87.95990449999999,-87.98691783,-88.02285591,-88.0165877,-87.96845307,-88.01510743999999,-87.97193982,-90.06676267,-88.59588626999999,-88.53427283000001,-89.06775141,-87.95303719,-89.06894133,-89.00433332999999,-88.02608824000001,-88.09622406,null,-88.68764582,-91.27110930000001,-91.27117088,-88.54676988999999,-91.45934505,-89.68183547,-92.31828245,-89.18132155000001,-88.06381808,-90.16625738,null,-88.15967942,-87.93153332,-87.93737166,-87.93670727999999,-87.93149751,-87.92731612999999,-87.94193315,-90.81966432999999,-87.91124105999999,-87.94779423999999,-89.31974412,-89.30768829,null,-89.38309406,-89.38692854,null,-89.52201355,-89.51511574,-89.40097068,null,-89.42377285000001,-89.49905269,-89.40084157,-89.50268692,null,-89.35108878,-89.45115411,null,-89.50241206,-89.51786731,-89.51703623,-89.52961907,-89.39261826000001,-89.36091494,-89.39393186,null,null,-89.35108878,-89.31371215999999,-89.40096077,null,-89.38710113,-89.39990905000001,-89.3939202,-89.40085233000001,-89.49680432,-89.31471544,-89.39582855,-89.32411438,-89.37862581,-89.36904853999999,-89.38586587,-89.38607055,-89.39411084,-89.44836069999999,-89.39908896,-89.38254533,-89.36411711,-89.34880771,-89.3087747,-89.42890283,-89.40060874,-89.39074711000001,-89.52739993,-89.30009819,-89.54930559,-89.40245554000001,-89.40811635,null,-89.45974138,-89.40898894,-89.35021603,-89.36039037,-89.40079102,-89.42864489,-89.39743523999999,-89.37869370999999,-89.30907596,-89.31018502000001,-89.37691181,-89.31793191,-89.37447883999999,-89.39990905000001,-89.38672087,-89.32358917000001,-89.40900827999999,-89.36611624,-89.4235924,-89.40404811000001,-89.31772956,-89.28869951,-89.34331183,-89.30465891999999,-89.32617380000001,-89.32852074,-89.40899247,-89.40404811000001,-89.40409565,null,null,-89.39411094,null,-89.39396848,-89.40074989999999,-89.39354305000001,-89.3733948,-89.39265933,-89.38962296,-89.40913566,-89.36608438,-89.40898858,-89.39395407000001,-89.49874414999999,-89.38999071000001,-89.47771324,-89.33357416,-89.35534428,-89.3760207,-89.39391909,-89.39745923,-89.39590391999999,-89.39354305000001,-89.39639878,-89.36370684000001,-89.34115962,-89.35841692,-89.38307689,-89.40900445,-89.47366700000001,-89.47761568,-89.51424704,-89.36207638,-89.4450751,-89.40902466,-89.40899585,-89.47352933000001,-89.36353031,-89.35521695,-89.29602985,-89.30158014,-89.30181132,-89.32153314,null,-89.36054224999999,null,-89.37148268999999,-89.38025374999999,-89.45739129,-89.40075314000001,-89.40409346,-89.50174165,-89.4828966,-89.50290142999999,-89.46094465,-89.3928262,-89.51223906,-89.50362675,-89.30193629999999,-89.37732841,-89.34368892000001,-89.37055368,-89.35921835000001,-89.31564634,-89.32971342,-89.35593246000001,-89.39626617,-89.39214045,-89.45118549999999,null,null,-89.40024248,-89.36278471999999,null,null,-89.34502071,-89.37655434,-89.35531259,-89.35949794,-89.50797427000001,-89.31605706000001,-89.40069432999999,-89.51652635000001,-89.40756868,-89.35829972000001,-89.3243801,-89.36431266,null,-89.38146731,-89.32467379000001,-89.30950764000001,-89.32809829999999,-89.3911428,-89.36075063,-89.39172006,-89.3857897,-89.38812170999999,-89.40060428,-89.39254228999999,-89.38598503,null,-89.39012088,-89.39583102,-89.35041495,-89.38886261,-89.38584276,-89.39172006,-89.39735847,-89.38605801,-89.36605772999999,-89.37551157,-89.38498066,-89.29581889000001,-89.39585391,-89.33049923,-89.49647143999999,-89.80318907,-89.57854344,-89.38771819999999,-89.53048269,-89.41067664000001,-89.17431764,-89.3245297,-89.35544815999999,-89.24629494,-89.23568895,-89.22663866000001,-89.22626160999999,-89.21121889,-89.2593997,-89.24746162,null,-88.01341866,-88.07004953000001,-87.9678043,-87.96988679,-88.02649377,-88.10080859,-87.93919588999999,-87.99942387,-88.02288107,-87.97843152999999,-88.09926602,-87.9922517,-87.99040141,-87.99757952,-88.03952696,-88.00946159999999,-88.02991421,-87.97152967,-87.99128125,-88.07349949,-88.07918228,-87.98696017,-88.02956466000001,-88.00355402,-87.96819462000001,-88.0028882,-88.03522052,-87.96777427000001,-88.02524425999999,-88.02327939,-88.00080994,-87.99248119000001,-88.05898352,-88.09940707,-88.01675061,-88.002899,-88.01046838000001,-87.99677140999999,-87.99203679,-87.95302590999999,-88.01996198000001,-88.06173387,-88.05177024,-88.11610769000001,-88.09915745000001,-88.09134077,-88.04956878,-88.07338092000001,-88.05982494,-88.05258752,-87.97110413,-88.01201417,-91.10939279,-88.44371695,-88.48627578,-88.38814988,-88.44702264,-88.44717601000001,-88.4729112,-88.42805481000001,-88.46188655,-88.47884200999999,-88.46097383,-88.44881161000001,-88.4217933,-88.46085119999999,-88.43959807,-88.44687224,-88.44804083,-88.44874618999999,-88.44702211000001,-88.43902121000001,-88.44874618999999,-88.41941833999999,null,null,-88.43902064,null,-88.43938385,-88.41372285,-88.46756756000001,-88.46898016999999,-88.45249542000001,-88.44698352,-88.44349895000001,-88.4505381,-88.43893433,-88.42530269,-88.41494288,-88.44678645,-88.43902121000001,-88.44814189,-88.43887581,-88.46214786,-88.42977336,-88.33100881,-88.12244577,-88.15157137,-88.27561602,-88.30270108000001,-91.2333548,null,-91.23899668999999,-91.24673318000001,-91.24919542000001,-91.2483898,-91.20715113,-91.24964702,-91.24828764,-91.22090584999999,-91.23968477,-91.25379742,-91.21989117,-91.23994508,-91.2391413,-91.21929267,-91.21982690999999,-91.23976829999999,-91.21383710000001,-91.23896157999999,-91.22874355,null,-91.24187070000001,-91.24679577000001,-91.24899766,-91.24672826,-91.24059934,-91.24924421,-91.25126321,-91.21851142,-91.22379628,-91.24927633,-91.23968477,-91.2333374,-91.22911822,-91.21971494,-91.24878753,-91.23990468,-91.18440771,-91.23902815,-91.23797891,-91.23902280999999,-91.23943704,null,-91.25393871,-91.24482633,-91.21015029,-91.2399513,-91.2390339,-91.24929573,-91.25343626,-91.2393364,-91.25345304,-91.24758915,-91.25612124,-91.23903944,-91.24674426999999,null,-91.25189261,-91.22870593,-91.25176098999999,-91.23989432,-91.22924644,-91.21712041000001,-87.62979851999999,-88.08481,-87.83592603,-88.1099439,-88.05951467,-87.85584432,-87.87550487,-87.8214236,-88.12966288,-87.83348124,-88.01990838,-88.02441518000001,-88.01602818000001,-88.02113577,-88.07224874000001,-88.07982776,-88.08617541,-88.11588313999999,-88.07344061000001,-88.07513794,-88.08491586,-88.09485477,-88.00045154,-88.07291877,-87.98844898999999,-88.03750746,-87.83863109000001,-88.06236282,-88.07475997,-88.07446045,-88.0650105,-88.06940133000001,-88.0743336,-88.05347268,-88.04607507999999,-88.06690629000001,-88.07268378000001,-88.08314323,-88.09088117,-88.05904864,null,-88.05554045,-88.07548796,-90.12620597999999,-90.1319846,-90.13176609,-88.77414794000001,-88.88942043999999,-90.48797905000001,-90.47765197,-90.47952375,-90.48559132,-91.14440698,-90.82552895000001,-90.8112077,-90.80794603,-90.82559517999999,-89.02592468,-88.47439248000001,-90.88931891,-90.8894878,-88.54404538,-88.56293662,-89.80821374999999,-89.51153003,-89.4923987,-89.50178698000001,-89.5019065,-89.52435769,-89.51842999,-89.53621324,-89.41248928,-89.48281765999999,null,-89.44009848,-89.41329339000001,-89.40958035,-89.41292697999999,-89.47062072999999,-89.47867402999999,-89.47789290999999,-89.39842984000001,-89.46737837000001,-89.46855927,-89.42236441,-89.42261818,-89.46001767,-89.42806641,-87.88399692,-88.02348674,-87.90209326999999,-88.02627343,-88.02220377,-87.87672507000001,-88.01938629,-88.03884766,-88.01947866,-87.93520477,-87.88979474999999,-88.00291529,-88.0281078,-88.03794994,-88.10057044,-88.11162038000001,-88.07045552,-88.06529273,-88.10367187999999,-88.06547997,-88.09074273,-88.16200778,-88.10350144,-88.09883641,-88.10265517000001,-88.18195532999999,null,-89.32157717,-89.32275582,-89.32597509,-89.35306696000001,-89.33676431000001,-88.03216505,-88.03225755,-88.02739637000001,-88.00469407,-88.04787166,-88.04775624,-88.00838607,-88.05544288,-88.04650012,-88.04761746,-88.03220322,-88.00085631,-87.99668751999999,-88.04743703,-88.0471814,-88.00744322,-87.99996006000001,-88.03532749,-88.00681025999999,-88.02045376,-88.04749061,-88.01725682999999,-88.03412824999999,-88.01412623,-88.0489515,-88.017173,-88.00425797,-88.00361519,-88.00725738,-87.98746319999999,-88.00728581,-87.9931876,-87.98391322000001,-88.00134602999999,-88.01728939,-88.04665693,-88.01728939,-88.00764085,-87.99824325,-88.05703471,-87.98735840000001,-87.98282333,-88.04573003,-88.04764281,-88.00255889,-87.98569544,-88.01610912,-88.02595868,-88.01972653,-88.02592024,-88.04204274999999,-87.98509776,-88.00523319,-88.04960945000001,-87.98657167,-88.03706465,-87.99653591000001,-88.02477505,-88.03696442,-88.0270266,-88.04071883,-87.98918351,-87.99800243,-87.99163264000001,-87.99824325,-88.02965008,-87.99708253,-88.04713578,-88.03178004999999,-88.01728939,-88.04716672000001,-87.98268464,-88.03065053,-88.02344121,-87.99820210999999,-88.01743255,null,-91.46454584999999,-91.43358024,-89.65241940999999,-89.63846993,-89.66151048,-89.64575225999999,-89.72856385,-89.57838536,-89.59324212,-89.57476760999999,-89.56988518999999,null,-89.56465928999999,-89.57454968,-89.55191331,-89.57888864,-89.58478314,-89.53653717,-89.58601397,-89.57475865000001,-89.5726114,-89.56456402000001,-89.58592491,-89.59324212,-89.5747593,-89.58442997,-89.55037529000001,-88.54354218,-88.54224739,-88.54232697,-89.65139771,-89.37722979999999,-89.37695411999999,-88.47605858999999,-88.46368437,-88.46503276,-88.49238716000001,-88.46313799000001,-88.4648919,-88.49269162,-88.45681223,-88.48080623,-88.47935067,-88.46489542,-88.46257629999999,-88.48694691999999,-88.43776733,-88.44011355000001,-88.4458248,-88.42500518,-88.44143221,-88.45325355999999,-88.43713452999999,-88.44771085000001,-88.40397885,-88.42391732999999,-88.44703669,-88.46401978,null,-88.545785,-88.66570476,-88.73354872,-88.40724605,-88.40363733,-88.40725612,-88.35110519,-88.35196143,-88.42512331,null,-88.39708474,-88.42579938,-88.41247215,-88.42340287,-88.41076833,null,-88.37484361999999,-88.40415874999999,-88.34993706,null,-88.35964251,null,null,null,null,-88.38350581,-88.41572308000001,-88.39708474,-88.38230197,-88.36075992000001,-88.41576637999999,-88.37533275,-88.37482387999999,-88.41369277,-88.42579933,null,-88.41824381000001,null,null,null,-88.3748501,-88.16096811,-88.10211252000001,-88.26178545,-88.24907077,-88.29996368,-88.27687494,-88.1199017,null,-91.47066391,-91.47293721,-91.46990375,-91.4631984,-91.50448050999999,-91.44792321,-91.49271492,-91.43043950000001,-91.5138718,-91.50884757999999,-91.51320688,-91.54400639000001,-91.50977899999999,-91.49694269,-91.49190458,-91.46830324,-91.46822435999999,-91.51115104,-91.47056804,-91.46840406,-91.51183566,-91.42930586999999,-91.43974896,-91.50326493999999,-91.50938014,-91.5295915,-91.46319692,-91.47552776000001,-91.50971171,-91.43520355,-91.46805019999999,-91.49483823,-91.50452915,-91.30887384,-91.46444978,-90.99366836,-92.38344124,null,-92.3809411,-89.67590396999999,-89.8983597,-89.90537406999999,null,null,-89.68537139999999,-89.7079969,null,null,-88.57569865000001,-88.58074795,-88.60346675,-87.62947078000001,-87.64734559,-87.6300184,-87.66066959,-87.63204128,-87.62676906999999,-87.66008985000001,-87.65763858,-87.61825672000001,-87.6294166,-87.62174711999999,-88.09779283,-89.06819124,-89.10311419,-87.43856723,-89.8171724,-89.82819578,-89.81343952,-89.82213763,-89.85457842,-89.77982360999999,-89.78647874000001,-89.79513251,-89.76185399000001,-89.78519898,-88.86247912,-88.83617415000001,-88.83622028000001,-88.86183964,-88.003685,-87.91406048,-87.92408940999999,-87.97159981999999,-87.71924242,-87.69225926,-87.68910174,-87.68524235,-87.67060146999999,-87.69726548,-87.65918806000001,-87.69152114000001,-87.67538451999999,-87.66074928,-87.700574,-87.70612029999999,-87.68525545,-87.69803269000001,-87.6703748,-88.23439534000001,-88.23458983,-88.22262311,-88.23678961,-88.20585668,-88.23364734,-88.2451835,-88.21946277000001,-88.23185429999999,-88.23397103000001,-88.23478511,-88.22865963,-88.20367383999999,-88.23706693,-88.23562161,-88.23845953999999,-88.23559112,-88.23203744,-88.22939199,-88.24691014,-88.23460145999999,-88.25854488,-88.22768306,-88.20182738,-88.21795535,null,-88.24333702,-88.34768459,-88.35553547000001,-88.41367085,-88.33222692,-88.38605499000001,-88.20530505000001,-88.24318687,-88.20598409,-88.30421702,-88.21979016,-88.21804962,-88.19665936,-88.34797976,-88.33767046,-87.7508419,-91.29397164,-90.79133383999999,-88.47586244999999,-88.41850006999999,-88.42454300999999,-88.48618949,null,-91.22875306,-91.22887274999999,-91.23159080000001,-91.2350977,-88.30798476,-88.31560752,-88.32412327,-88.302876,-88.3081646,-92.64084573,-92.47288096,-92.75692562,-92.75691826000001,-92.73423348999999,-91.10140884,-91.29216842,-91.32333864,-90.41217236999999,-91.73331831,-91.73514269,-91.73602517,-91.76428072,-92.62661908,-92.62326117000001,-92.61471365,-92.62190897000001,-92.62371788999999,-91.91952248,-91.92805822,null,-91.91569878999999,-91.91970440999999,-91.93221042,-91.9298077,-91.93671585,-87.38088636000001,-87.02119458,-87.19159188,-87.10746234,-87.14688986,-87.31515695,-87.36906184999999,-87.37188886,-87.37610576,-87.36411273,-92.62994872,-92.53965683,-89.63544889000001,-89.6232601,-89.65553255,-89.62427335,-89.62416580999999,-89.65551189,-89.62567095,-89.65575883,-89.63702139999999,null,-89.64934024999999,-89.69540087999999,-89.621326,null,-89.61618261,-89.62590453,null,-89.62835543,-89.64045919,-89.63936474,null,-89.62340188,-89.62255157,-89.62551659,-89.27400971,-89.27400254,-91.86079311,null,-91.21908186,-91.25746318,-91.08147695,-88.5974166,-88.76240022,null,-89.18886371000001,-88.92945306999999,-88.79520726,-89.41847128000001,-89.41269988000001,-89.39600215,-89.41787361,-89.41600836000001,-89.42507138000001,-89.4062224,-89.41085513,-88.49940761000001,-88.61655306,-88.51076689,-88.35196139,-88.34652473,-90.50587216,-90.51370578,-90.49930517,-90.50427037,-90.50929291,-88.45570098,-88.46848266000001,-88.44646853,-88.47802677,-88.40829291999999,-88.41501979,-88.46901828,-88.47539741,-88.46939901,-88.46541843999999,-87.98778858999999,-87.98470867,-87.96483456999999,-87.98455571,-87.9606512,-87.96237186,-87.98466645000001,null,-89.40788405000001,null,-89.39737712,-89.37952088999999,-89.39173137,-89.37807194,-89.43343142000001,null,-89.41120671,-89.38215319,-89.39027389,-89.41275942,-89.38455164,-89.41275616999999,-88.26504677,-88.26789732,-88.27290456999999,-88.27669732,-88.27091313,-88.27730965000001,null,-88.53758849,-88.57222469,-88.55097626,-88.56343379,-88.57874855,null,-88.54501131000001,-88.59130678,-88.57138630999999,-88.53933223,-88.53753248,-88.52784680000001,-88.58137541000001,null,-88.53171947,-88.54252796,-88.56962317,-88.56745558999999,-88.54248373999999,-88.54046067,-88.5848077,-88.58803958999999,null,null,-88.58176247,-88.5286122,-88.53746618,-88.56217397,-88.54859279,-88.58510428,-88.57914466,-88.54085392,-88.52642899999999,-88.55737455000001,-88.59451832000001,-88.53634284,-88.56240609,-88.53769042,-88.54251785,-88.55255751,-89.45080374,-89.43382251,-89.45061053000001,-89.45317123,-89.45126510999999,-89.44319104,-89.44886237,-88.48918134,-88.78700203,null,null,-87.90360474000001,null,-87.90595334,-87.90661607,-87.90220792,-90.86859669,-90.87518559,-92.37166146,null,-88.75666133999999,-88.76524788,null,-88.71732992,-88.26750005,-88.86556874,-88.28583179,-87.96465424,-87.96188162,-87.94844602000001,-87.94515382,null,-90.81958258,-90.81958258,-91.12195151,-90.85000475,-87.83331853999999,-87.8408419,-87.86280854,-87.82083966,-87.83877321999999,-87.83690669000001,-87.83402255,-87.83521708000001,-87.83558729000001,-87.85485571,null,-87.85078066,-87.84862639000001,-87.82272912000001,-87.83347689,null,-87.82167142,-87.82464745999999,null,-87.87948999,null,null,-87.83526752,-87.83591711,-87.82671987000001,-87.82311249999999,-87.85569,-87.82287135999999,-87.84324986999999,-87.85767684,null,null,null,-87.83567234,-87.85530771000001,-87.85575174,null,-87.83159000000001,null,null,-87.85636872000001,-87.85760499,-87.86280854,-87.83490256,null,-87.83286583,null,null,null,-87.83646591999999,null,null,-87.86310423,-87.85729191,-87.85523342,-87.8231778,-87.85477840999999,null,-87.83792158,-87.83556405,null,-87.85545417,-87.84924828,null,-87.8241938,-87.83832542,-88.02435173000001,-89.84025200000001,-89.96377563999999,-89.49212964,null,-87.96033172999999,-87.92050835000001,-88.02359149,-87.9798363,-87.92069313,-89.53969255,-89.52537972,-89.52853623,-87.95343123000001,-87.81604470000001,-88.05190269000001,-88.00862157,-88.22586250000001,-88.21909933000001,-88.26343885,-89.01964569,-89.01773833999999,-88.8693482,-89.27447251,-89.07134295,null,-88.97516724,-89.79724099000001,-89.76859268,-89.76632305,-89.79015728,-92.64296722,-92.10344190000001,-92.09789105999999,-92.10254260000001,-92.0981903,-92.09793435,-92.10677585000001,-92.08032297,-92.10547473,-92.10420062999999,-92.10398266999999,-92.09686682,-92.10186987,-88.24656813,null,-87.56201272,null,null,null,-88.52147099,-88.49239652,-88.48541858999999,-91.68451933,-89.81682627000001,-89.81396134000001,-90.1741128,-90.17604008000001,null,-90.15343892999999,-90.16133042,-90.17516904999999,-90.16102849000001,-90.19766907,null,null,-90.17332489,null,null,-88.22641396,-88.25220609,-88.94145965,-87.98757024,-87.98742425,-87.98304892,-89.28631363,-89.29353598,-89.30351795,-91.818679,-88.00621936,null,-87.96869872000001,-87.96914427999999,-88.00832156,-87.9556303,-88.04776907999999,-88.04773373,-87.95581343000001,null,-88.00821096999999,-88.00613174,-87.98856721,-88.00972037,null,-88.05791545,-88.00844943,-87.96380145000001,-87.94888251,-87.97044389,-87.95800008000001,-88.00896736999999,-88.06913169000001,-87.9884668,-88.00634162,-87.91934814,-87.8227746,-87.93383498999999,-87.84438046,-87.84368258000001,null,-87.89172169,-87.91549471,-87.91162654999999,-88.13835188,-88.14430951,-88.11222691,-89.04080474,-87.91909642,-87.91648143,-87.93448354,-87.93198494000001,-87.91180678000001,-87.93287321,-87.91688743,null,-87.91671882999999,-87.91660782,-87.91702651,-87.91668825000001,null,null,null,null,null,null,null,null,null,null,null,-88.04797524999999,-88.05810063,-88.04855473000001,-88.03052924000001,-88.03599552,-88.94121612000001,-88.94301161999999,-88.9418732,-88.72993028,-88.7526821,-88.08032325000001,-90.31781984,-89.68315918,-89.68804055,-88.63264859,-87.88744278,null,-87.88730766,null,-87.89728991,-87.88745573,-87.87894897,-87.88747171,-87.88990223,-87.88767224999999,null,-87.88499942,null,-87.8838081,-89.72832074999999,-89.74428235000001,-89.75104161,-89.73395711000001,-89.74449897,-89.74425058999999,-89.74425058999999,-89.70368061000001,-89.25745535999999,-87.8593477,-87.96750427000001,-87.96480819999999,-87.96758629999999,-87.97264539,null,-87.9687977,-87.83880292000001,-87.85576072000001,-87.84185017999999,-87.84999200999999,-87.84840416999999,-87.83999453,-87.86997486,-87.84504561999999,-90.12445068,null,-88.73677336999999,null,-91.49888718,-91.46591117,-91.40079176,-89.46460449999999,-87.94749756,-87.9520971,null,-88.04881511000001,-87.88259739999999,-92.35828805,-92.36211987999999,-90.01391602,-90.01012566,-89.77864209000001,-89.79379869,-89.78043716000001,-89.78893819,-89.78699955,-89.81312918,-89.79821497,-89.80209855,-89.80906014,-89.79185069,-89.79621817,-89.78844878,-89.79363351000001,-88.10771368,-88.10770382,-88.11142359999999,-88.12813686,-88.14624886,-88.10730916,-88.08758841,-88.10838305999999,-88.40389944,-88.37408557000001,-88.36262813,-87.87895758000001,-87.87957769,-90.65566522,null,-89.61333852999999,null,null,-89.57189181,null,-89.61318127,-89.5812926,-89.55684094,null,-89.21538636,-89.24738511,-87.85517659999999,-87.86008583,-87.86004403,-87.85758362,-87.86006534000001,-88.09009996,-88.09011101999999,-88.10321417999999,-88.12584338000001,-88.14423465,-88.54996839,-88.89015876000001,-88.81556529,-88.97192269,-88.91715797000001,-88.59676908,-88.60188663,-88.73989799,-88.85891119,-89.53205069000001,-89.52417189000001,-89.53367738999999,-89.52938832,-89.54088817,-89.4555811,-89.46164228000001,-90.34819539,-89.89816773,-87.80081454,-87.79485321,-87.78477642999999,-87.82595148,-87.78258689,-87.79306132000001,-87.80025721,-87.8058343,-87.81914458999999,-87.8515582,-87.8059676,null,-87.79703698,-87.82928085,-87.80087723,-87.80687247,-87.78360468,-87.81617218,-87.78485553,-87.80016562,-87.81853364,-87.79371814,-87.79432202,-87.80117838,-87.78276817,-87.84103406,-87.83602904999999,-87.7847507,null,-87.78723583,-87.85399004999999,-87.79689096,-87.80580147000001,-87.82230593,-87.85315618,-87.81653629,-87.78419703,-87.81051244,-87.78255546,-87.81270265000001,-87.83925354,-87.78861236,-87.80874729999999,-87.80513625,-87.79281976999999,-87.80899749,-87.8161375,-87.80743265,-87.79995724,-87.83925354,-87.78675693,-87.79501804,-87.81979861000001,-87.80467193,-87.82594933,-87.79906841,-87.79901950999999,-87.80581712,-87.78814109,-87.83893836999999,-87.80087851,-87.79823311,-87.79866327000001,-87.79287049,-87.78826943,-87.78483015,-87.79181059,-87.80680633999999,-87.82771482,-87.78482934,-87.78146532,null,-87.81409454,-87.80650643,-87.81475616,-87.84107376999999,-87.78512053999999,-87.80469522999999,-89.02256692,-89.03687859,-88.98703602000001,-89.00591968000001,-89.04542669,-89.02942376,-89.01624609,-89.03217503,-89.05191497,-89.006424,-89.04495805000001,-89.03112111,-89.01202560999999,-89.00290547,-89.03019969,-88.99653965,-89.0472575,-89.02420715,-88.99945242,-88.97571756000001,-89.0090455,-88.98521378,-89.03708640000001,-89.01460974,-89.04186511,-89.02694647,-89.06762254,-88.98286181,-88.97564020999999,-88.43574006999999,-88.4258304,null,-88.43087391,-88.43528952,-88.4335675,-88.42767843,-88.43503581,-88.41410079000001,-88.43561931000001,null,-88.41410177,-88.43687315,-88.4344402,null,-89.81783034,null,-89.72329928000001,-89.04588812999999,-89.02303851000001,-89.03172622,-89.03096572,-88.98302993,-89.04031938999999,-89.03088004999999,-88.99273501,-89.04554601,-89.02417274,-89.05149374,-88.9846162,-88.98522967,-89.05662834,-89.04439499999999,-88.98067365999999,-89.01392365,-89.03342761,-89.03928096,-89.03589321,-89.07349373,-89.06945871000001,-89.06794650000001,-89.07048346000001,-89.08300834000001,null,null,-89.38853415,-88.33265695,-88.33776878,-88.31891013000001,-89.72178722,-89.74811812999999,-89.51715835,-89.02667423,-89.01938631,-89.02911718999999,-89.01938287999999,-89.01468396,-88.60010307,-88.59401375,-88.14297109,-88.1007506,-88.10932027,-88.13584356,-87.90394831,-87.81106263,-87.87689454,null,null,-87.90019015999999,-87.90932825,-87.98384323000001,-88.26931356,-88.27488704,-88.27689454999999,-88.47079107,-88.46366882,-88.50811005,-88.43172822,-89.13311675,-88.72607883000001,-88.70458737,-88.71757230999999,-88.73225526,-88.71353087,-88.71677043,-88.73326446999999,-88.73519328,-88.72977849,-88.72176094,-88.70460568999999,-88.72072416,-88.71009791,-88.72313475,-88.69506641,-90.3356914,-90.73033255999999,null,-88.6469221,-88.64389769,-89.25996266,-89.25543445,-87.88283308,-87.88300058,-87.88047012,-87.88281449,-88.54417581,-88.18421149,-88.18047403,-88.20433841000001,-88.18185423,-88.17542383,-88.18126006,-88.18055218000001,-88.18101315,-88.19119403000001,-88.18102732,-88.1816173,-88.17599934,-88.19190182,-88.19680835,-88.16653744,-88.17606194,-88.19120009,-88.1940242,-88.18496616,-88.17602339,-89.40248108,-88.7471578,-88.73751435,-88.00850422000001,-87.99183413999999,-88.00345612,-87.72463675,-87.71296106,-87.72893132999999,-87.71126463,-87.71457847000001,-87.72629148,-87.74093263,-87.72128075000001,-87.71461752,-87.71626074,-87.69681601000001,-87.72794634,-87.72081417,-87.72616603,-87.72155151,-87.72411776,-87.7162766,-87.73218939,-87.72038492999999,-87.71797073,-87.75767783000001,-87.71281718,-87.71793977999999,-87.73593473,-87.72289515999999,-87.72030192,-87.72449659999999,-87.84006921,-87.77752826,-87.70446857,-87.94131183,-88.00959422,-87.76140355,-89.14733965000001,-89.15175082,-88.83429012000001,-88.81741276,-88.83963419,-88.84130953,-88.83629003,-88.09543316,-88.10995663999999,-88.12495677,-88.10707295,-88.12634756,-88.07713846,-88.12218966,-88.10450706,-88.10426647,-88.13143796999999,-88.14596052,-88.0675931,-88.08642592,-88.83345998999999,-88.83702608999999,-88.86348647,-88.84323951,-88.84929422,-88.85832207999999,-88.83304237,-88.33193188,-88.80733911,-87.7843532,-88.90014194,-90.34478017000001,-87.94849635,-87.94317619,-87.96376038,-87.87557415000001,-87.86931522,-87.87769652999999,-87.90020853,-89.46953597,-89.45802913999999,-89.47200856000001,-89.46448558,-89.44312243,-89.46350098000001,-87.82280514999999,-87.81556841,-87.8099783,-87.81254728,-89.73448628,null,-88.58022792,-88.54102334,-92.15156371,-92.00905219000001,-91.76918229,-91.13508803000001,-91.42713903000001,-91.15019906000001,-89.4329158,-88.90901044,-90.31440248,-90.80597725,-90.31712321000001,-89.32251271,-89.8853276,-89.80141098999999,-91.38881958,-91.42069664,-91.44332885999999,null,-89.36411465,-88.005779,-87.96007879,-87.95802435,-87.914124,-87.92037096999999,-88.02872164,-87.90907464,-87.98193005,-87.95734537,-87.90936969000001,-87.93803272,-87.98346487000001,-88.02518784,-87.95708482000001,-87.95950451,-87.95766138,-87.93814734999999,-87.97116891,-87.88790399,-87.94232576,-87.94668746000001,-87.96289828,-87.928949,-87.93391293000001,-88.06026462,-88.00607969000001,-88.01001592,-87.93021711999999,-87.96508842,-88.00736415999999,-87.93485832,-87.92535671,-87.95767161000001,-87.93866448999999,-87.9951368,-87.90499466,-87.93413072,-87.94647781,-87.89797761,-87.90911387,-87.89162767000001,-87.88639426,-87.95841304,-88.02739108999999,-87.99718996999999,-87.95754353,-87.93756581,-87.90261597999999,-87.91079209,-87.91104215,-87.95791305,-88.0160829,-88.02757071000001,-87.93868467,-87.94764089,-87.94207093999999,-87.8879191,-87.95724647,-87.96776205,-87.9990281,-87.97737235,-87.94494516,-87.95751974,-87.92868076000001,-87.9477399,-87.94028416,-87.91493557,-87.94624772,-87.91119289,-87.94827057000001,-87.91831694,-87.95510796000001,-87.90656420000001,-87.88904098,-87.88807213,-87.9047767,-87.9022061,-87.9190985,-87.88157626,-87.90282942,-87.90923073,-87.95523828,-87.97713061,-87.96677748,-88.03904842,-87.93951143,-87.90177978,-87.94705666,-87.98512706,-87.95751306,-87.95655533,-87.94090954000001,-87.91857486000001,-87.93885142000001,-87.97626964,-87.95057737,-87.94701135,-87.95257794,-87.96814184,-87.9975027,-87.90948224,-87.93885852,-88.04066292,-87.94067146,-87.98632465999999,-87.95740876000001,-87.97618124,-87.97530363,-87.94635270000001,-87.97117874,-87.94816539999999,-87.95649691,-87.88324227,-87.888312,-87.89371885,-87.9675692,-87.91060521999999,-87.97622744,-87.91261648,-87.92265358,-87.95741422,-87.89954118,-87.90553959,-87.92534574,-87.98127282999999,-87.92847772,-87.92707108,-87.94974806,-87.95645188,-87.98545735,-87.98608385,-87.96213968000001,-87.92921004999999,-87.93560931,-87.91572617999999,-87.8779955,-88.00285596000001,-87.94909846,-87.87793872,-87.90913475000001,-87.96428681,-87.94779151,-87.96884484,-87.93319377,-87.99704859000001,-87.9961989,-87.91111557000001,-87.89135330000001,-87.90725848,-87.91746474,-87.88807213,-87.90558002,-87.91258392,-87.91405722,-87.91834049000001,-87.91896794,-87.88836793,-87.91882369,-87.91093453000001,-87.903347,-87.88854549,-87.8866702,-87.8829044,-87.88294562,-87.90345047,-87.93830316,-87.90290455,-87.95821912,-87.93300769,-87.92773581,-88.01734213,-87.96754323,-87.92410838000001,-87.942881,-87.94772081000001,-87.9735476,-87.96877048,-87.98194343999999,-87.92143852,-87.95777826,-87.93300271,-87.95990449999999,-87.97606844000001,-87.94829738999999,-87.94923831,-87.96743571,-87.96572664,-87.99245841,-87.9509984,-87.90875274,-87.93818216,-87.93761720000001,-87.93346175000001,-87.91865398,-87.95751974,-87.91864988,-87.95913016,-87.93367818,-87.93837925,-87.90763945,-87.94719966,-87.91861203000001,-87.89781717,-87.91853579000001,-87.91419286999999,-88.00710921,-87.92846718,-88.02593634999999,-87.98753189999999,-87.95957613,-87.92305811,-87.95797663,-87.90936263,-87.95019667,-87.91072864,-87.91987177,-87.90347336000001,-87.89149835000001,-87.96405855,-88.02732012,-87.97646193,-87.92969945,-87.91823503000001,-87.94792051,-87.9873217,-87.91440794,-87.90354297,-87.90305735,-87.90041024999999,-87.9861817,-88.00797255000001,-87.95064145000001,-87.94821251,-87.90955341,-87.92253675000001,-87.88796781000001,-87.89888471,-87.95041655,-87.92532462,-87.91414364000001,-87.93846571,-87.92862902,-87.91427034,-87.90915253999999,-87.93869443,-87.92679398,-87.91401894000001,-87.94750809,-87.94492605000001,-87.94274036,-87.91123862000001,-87.94737859999999,-87.94154279999999,-87.94986883,-87.91788474000001,-87.95769002,-87.90597268,-87.91352734,-87.87195946999999,-87.96151815,-87.95657746000001,-87.89757040000001,-87.93711918,-87.95656738,-88.03272387,-87.99599200999999,-87.98616031,-87.9669016,-87.95603628000001,-87.92861551999999,-87.95382133,-87.92903406000001,-87.92521798,-87.90979663,-87.94095956,-87.93883833,-87.94677874999999,-87.89913214000001,-87.93194226,-87.92242026,-88.05280616,-87.94736150999999,-87.91255593,-87.93947274999999,-87.93539131,-87.93029179,-87.95776788000001,-87.94567175,-87.92846718,-87.9341958,-87.99554467999999,-87.93311605,-87.92692359,-87.93737608000001,-87.93298837,-87.94784982,-87.90522464999999,-87.89792743,-87.94204634,-87.96752093000001,-87.90612075999999,-87.95765573,-87.95243847,-87.97737269,-87.94269622,-87.94168725,-87.98712883,-87.98315882999999,-87.94822936,-87.90471248,-87.90441394,-87.90557565,-87.94932308999999,-88.01732690999999,-87.95438494,-87.93049634,-87.90474260000001,-87.95812988,-87.88269852000001,-87.89880687,-87.91971641000001,-87.96029184,-87.9047774,-87.94816539999999,-87.93024638999999,-87.98548834,-87.97936889,-87.89689521,-88.00856016,-87.98618526999999,-87.95740927999999,-87.89730358,-87.91031781,-87.92402697,-87.90523601,-87.92983157,-87.89792743,-87.90923073,-87.91877923,-87.97114286,-87.94920148999999,-87.94718983,-87.93838325999999,-87.93454771,-87.90841856,-88.00558162,-88.00534656000001,-87.95776857,-87.94784982,-87.90107097000001,-88.00116136,-88.02562802,-88.02456872,-87.89128415,-87.95612475999999,-87.91304522999999,-87.94639850999999,-87.93299732,-87.95524324,-87.99492574,-87.94768789,-87.99993047,-87.94739352000001,-87.95768309,-87.98908904,-87.9476997,-87.96359135,-87.95642879,-88.00328822,-87.92008755000001,-87.94812121,-88.02575702,-87.90522464999999,-87.90261597999999,-87.90916864,-87.92996162,-87.92804907,-87.9771688,-87.95463530000001,-87.94102596,-87.98713187,-88.00405693,-88.00738108,-87.95957208999999,-87.89934291,-87.92295841000001,-87.97474044000001,-87.94768895,-87.98335336,-87.94502399,-88.0258884,-87.98315009,-87.96327503000001,-87.97729954,-87.9773543,-87.97632453,-87.99675575000001,-87.97104113,-88.01592877,-88.01719104999999,-87.96640653999999,-88.01719258,-87.99879467,-87.91453645,-87.93511887,-87.94247339,-87.97592776,-87.94739352000001,-87.98753189999999,-87.97760237,-87.95642479999999,-87.95772770000001,-88.02730799,-87.95751974,-87.94923548,-87.94362042,-87.94983055,-87.99785026000001,-87.94731699,-87.92921004999999,-87.9224121,-87.94636641,-87.94308604,-87.93319700000001,-87.90530769,-87.93993599,-87.91515513,-87.98770386,-87.93587945,-87.94729263000001,-87.93737437999999,-87.91579999,-87.93457583,-87.92702977,-87.91613460000001,-87.95829635,-87.93399522999999,-87.93205822,-87.95250874,-87.91840411,-87.91246464,-87.94875757,-87.94693961,-87.94735980999999,-87.92598574,-87.94412154,-87.95048554,-87.93290091,-87.94388993,-87.99134457,-87.98538493,-88.00443263,-87.97610317,-87.89803599,-87.90935397,null,-87.93947564,-87.9112238,-87.95990449999999,-87.96708594,-87.99630883,-87.98691293,-87.98215793999999,-87.96616387,-87.95763229000001,-87.92682839,-87.93682683,-87.91692114999999,-87.91025706000001,-87.94685739000001,-87.90530769,-87.90728478,-87.90582354,-87.96235803,-87.94779373999999,-87.99781418000001,-87.96788505000001,-87.89684026,-87.9486131,-87.92994494,-87.88967323999999,null,-87.94703052,-88.02268015,-87.94871670000001,-87.91894757999999,-87.94860841000001,-87.97816494999999,-88.05246687,-88.02629103,-87.95618807,-87.99265421,-88.00422244000001,-88.02454725,-88.04121392,-87.93428169000001,-87.92545610000001,-87.94795445,-87.93997922,-87.94748075,-87.91965642,-87.9144247,-87.88797099999999,-87.93879663,-87.90575185,-87.93569914,-87.95900030999999,-88.00368179,-87.98416358,-88.02228664,-87.949253,-87.93774969,-87.96044135,-87.97565996,-87.94738622,-87.94289148,-87.93502647,-87.93021711999999,-87.95767542999999,-87.9634839,-87.95909992999999,-87.97236470999999,-87.89740703,-87.93256819,-87.94036242999999,-87.94910108000001,-87.94151462000001,-87.92846947,-87.93205502000001,-87.91142086000001,-87.92831678,-87.93869976000001,-87.92298269,-87.91293383999999,-87.92020032000001,-87.91572622,-87.88279608000001,-87.88566951,-87.9110589,-87.90759976,-87.90702057,-87.91894237,-87.89030493999999,-87.97714302,-87.95750534,-88.00648851,-88.00648851,-87.96762145,-87.92730022000001,-87.98674152,-87.94975977,-87.98746439,-88.00488102,-87.99706317,-88.00290871,-87.95773490000001,-87.97365927,-88.08598076,-89.77258673,-89.02066292000001,-87.85020477,-88.41173705999999,-88.40391586,-89.91668326999999,-89.64095688,-87.87911483000001,-91.91408297,-88.38668798,-90.13836836999999,-90.00018943000001,-88.43890931999999,null,null,null,-88.00723639,null,-90.52813562,-87.93295465999999,-87.93290894,-87.9329549,-87.93416935,-87.93295491000001,null,-87.92168529999999,-87.92714079,-90.78888227,-88.00570564,-87.89121376,-87.89971468,-87.89792743,-87.95787046,-87.91138551,-87.89979979,-88.02578876,-87.91847088999999,-87.96507696,-87.88606285,-87.9329948,-87.9253468,-87.94289028999999,-87.92817613,-87.95766913999999,-87.98586414,-87.96625588000001,-87.94771857000001,-87.94822936,-87.98612341,-87.97866746,-88.00886045,-87.95613527,-87.95603602,-88.01336057,-87.94362374000001,-87.89897098,-87.99974782,-89.3946844,-89.39908443,-89.37868568,-89.51979116,-89.34736568,-89.36763306,-89.3777913,-89.4036196,-89.33964964,-89.4024424,-89.40406929,-89.39066282,-89.39583102,-89.39165060000001,-89.28637931999999,-89.41291828,-89.40737703000001,-89.38245338,-89.38059505,-89.37529694,-89.37534417000001,-89.37838671999999,-89.38629096,-89.38068593,-89.3993005,-89.38560778999999,-89.36972280000001,-89.40906047,-89.47352429999999,-89.43754577999999,-89.45243536,-89.4861386,null,-89.50240545,-89.41390475,-89.42377279,-89.3824333,-89.39568902000001,-89.35579964,-89.36983916,null,-89.52460365,-89.39011733,-89.39469015,-89.35077560000001,-89.3903677,-89.36972280000001,-89.28953519,null,-89.37150849,-89.26642884,-89.50322702,-89.50320397,-89.50140368,-89.50323701000001,-89.47846882,-89.36591543,-89.40098034,-89.39891875000001,-89.38958322000001,-89.39736223,-89.29148596,-89.31831642,-89.30715527,-89.40068606,-89.47340404000001,-89.35132027,-89.35967807999999,-89.39340341,-89.39908443,-89.36694248000001,-89.49588512,-89.43532902,-89.35897324,-89.35480769,-89.30617318,-89.36127251000001,-89.35524597,-89.36150925,-89.4989353,-89.50312433000001,-89.47379527,-89.50191794,-89.31541692,-89.49360618999999,-89.4163612,-89.39354305000001,-89.41739674999999,-89.42864287,-89.39309421,-89.30720398,-89.39424274,-89.3464907,-89.31565102,-89.36572092999999,null,-89.47346306,-89.3654303,null,-89.39908443,-89.39903351,-89.38031791,-89.36964909,-89.38475169,-89.50036961000001,-89.50486849000001,-89.48202036000001,-89.51279372,-89.50875139,-89.50324482000001,-89.35703606,-89.35817772999999,-89.30599565999999,-89.34731051,-89.39583102,-89.42853967000001,-89.41778648,-89.46756046,-89.46234179,-89.40408438,-89.41041975,-89.39411067,-89.35845386,-89.38071739999999,-89.50319969,-89.52495544999999,-89.52496489000001,-89.30137573,-89.39411147,-89.40374298,-89.40571004,-89.40884927,-89.39919633,-89.40247207,-89.40848585000001,-89.42865082,-89.41261471,-89.41288345,-89.40078173000001,-89.50397082000001,-89.40271586,-89.38593676000001,-89.29241081000001,-89.35104615,-89.3119404,-89.32787055999999,-89.36373694,-89.38484618,-89.39379509,-89.38414648,-89.40106804,-89.39586215999999,-89.40074319999999,-89.4575511,-89.33061437000001,-89.30583394,-89.40900581,-89.42567966,-89.41273441,-89.38403695,-89.39244696,-89.35894347999999,-89.3659936,-89.40068606,-89.378615,-89.39585945,-89.38031791,-89.36379074,-89.52278398,-89.37687096000001,-89.48666267,-89.41659472000001,-89.51983792999999,-89.39386019,-89.44392929999999,-89.37914798,-89.31780381,-89.5161785,-89.47957647,-89.34196122,-89.39630811000001,-89.35418816000001,-89.30907596,-89.36669904,-89.38897278,-89.38472581000001,-89.37581272,-89.36651931,-89.52224578000001,-89.74797101999999,-89.34648306,-89.40416922,-89.59797706000001,-89.22626808,-89.23366234,-89.20741114,-89.23084845,-89.20569516,-89.19528861000001,-89.22674633,-89.20833411,-89.24474948,-89.24207632,-89.22284412,-89.27340287,-87.98075362,-88.05631626,-88.01988814000001,-88.02413253,-87.96041565,-87.98958933,-88.06388646000001,-88.04511848,-88.05930358000001,-87.98834094999999,-87.98111864000001,-87.99372547999999,-87.99902437,-88.00764700000001,-88.04809561,-88.05236369000001,-88.02621610999999,-88.04349983,-87.98397576000001,-88.06394177999999,-88.00468841999999,-88.04625937,-88.06830527,-88.07585559,-88.041068,-88.05962598000001,-88.09938326,-88.03877333,-87.98471484,-88.00489327,-88.05078944,-88.01731984,-88.00911151,-88.05680744,-88.01612118,-88.08929353000001,-88.01990029,-87.98832508,-87.97024175999999,-88.02353481,-87.97785837000001,-87.98320931000001,-87.96777636,-88.00784347,-88.00409887000001,-87.99443391,-88.03635119,-88.09940410999999,-88.0950373,-88.10019102,-87.99503147,-88.0520707,-88.00143717,-88.01786599,-87.97745001,-87.97885563,-87.96703368,-87.92462523,-87.91873243000001,-87.88786078,-87.91133523000001,-87.93756494,-88.06408598,-88.44682582,-88.44842088,-88.45243535,-88.47318199,-88.45899888,-88.47317689,-88.44760371,-88.44641202,-88.473159,-88.43474789,-88.41984291999999,-88.40396509,-88.44058902,-88.44726122,-88.44884191,-88.44777772,-88.45352930999999,-88.44808492,-88.46090733,-88.44695957,-88.45728548,-88.46309775,-88.44691467,-88.48571557,-88.43155996,-88.44524669,-88.45242236999999,-88.41590105,-88.44695292999999,-88.43913404,-88.44705229,null,-88.14374327,-91.21295977,-91.245464,-91.25014997,-91.23931534,-91.21876017,-91.24067681,-91.23901846,-91.23910957,-91.21565964,-91.2460504,-91.23949716,-91.23904705,-91.24162822,-91.23795987,-91.24829798,-91.23997498,-91.21932842,-91.24889319,-91.24750578,-91.23887909,-91.23680256999999,-91.24837011,null,-91.23940994,-91.25142672,-91.23709766,-91.21020451,-91.21695561,-91.25258062,-91.24865362,-91.25343734,-91.24995423999999,-91.2394218,-91.24813109,-91.23211482000001,-91.21280597000001,-91.23981634,-91.24225889,-91.23949577,-91.23910957,-91.24947656000001,-91.24673515000001,-91.23103546,-91.24990214,null,-91.24190647,-91.24874638,-91.21605682000001,-91.24241696,-91.23876605,-91.23904571999999,-91.21313764,-91.24674127999999,-91.25187407,-91.23302429,-91.24899084,-88.18095527,-88.01127588,-87.83634478,null,-88.09949953,-87.89705668000001,-87.81774464999999,-87.91508777999999,-87.83388889,-88.04151011,-88.01283974,-87.95774718,-87.97142635,-87.99546952,-88.06067704,-88.08467687,-88.01036846,-87.95640340999999,-87.97091935,-87.95638432,-88.07945866,-87.98919517,-87.99587584,-88.12493117,-88.12513131,-88.0717686,-88.05399362,-88.05217797,-88.06414083,-88.05094861000001,-88.07148162,-88.12618491000001,-88.05330771,-88.06040263,-88.06089181,-88.06042961999999,-88.05451628,-88.05907074,-88.05447146,-91.48883394000001,-88.57276417,-88.77357539,-88.77745566,-90.48558779,-90.47498461000001,-90.47424178999999,-90.4765951,-91.12737604,-91.14033322,-91.1406965,null,-91.13065082,null,-90.82062578,-90.82052612,-90.82402672000001,-90.82553910999999,-90.81088647999999,-89.06178733,-88.47457966,-90.88936081,-89.78239678,-89.49265174,-89.48567284000001,-89.52043475000001,-89.51163514,-89.49570301,-89.52021014,-89.52452941,-89.50080445,-89.41467013,-89.4611785,-89.47529602,-89.41240572,-89.41935300999999,-89.42059817000001,-89.40911149,-89.41345215,-89.44445824,-89.39609348,-89.4126816,-89.38394507,-89.45651107,-88.02026327999999,-88.02628348,-87.92240169,-87.91809395999999,-88.02427453,-87.99883574,-88.02548219000001,-87.84578309,-88.0248283,-87.95027069,-88.00906267000001,-87.97920302999999,-88.05600067,-88.03720435,-87.96107674,-87.97954688,-87.950942,-88.01363416,-87.98123286000001,-87.95317876999999,-88.07139545,-88.10364084,-88.12081762,-88.10023212999999,-88.06547139,-88.1068925,-88.06931783,-88.09353802,-88.10383462999999,-89.32722056999999,-89.32781408,-89.33444373,-89.3263553,-89.32612045,-89.32316722,-89.33077449,-89.32633222,-89.33623835,-88.01249081,-88.00211784,-88.02415095000001,-88.04814847999999,-88.00618265,-88.0159487,-88.04830659,-88.00462872999999,-88.00688313000001,-88.04796862000001,-88.04788359,-88.00743229,-88.02159345,-88.04620391,-88.01171943,-88.04621349999999,-87.99970795999999,-88.01922097000001,-87.98746318000001,-87.98747887,-88.01729533,-88.00721775,-88.02714093,-88.00745465,-87.99684599,-88.05678739,-88.00862047,-87.98409246,-88.00862012,-88.04703748999999,-87.98530144,-88.01723831,-88.03176414000001,-88.00519916,-88.03540158,-88.05705102,-88.06224201000001,-88.01999456999999,-88.00521938,-88.00743401,-88.06128450999999,-87.9840779,-87.9969323,-88.02745896,-87.98470951,-88.02219226,-87.99751847,-87.99440679999999,-88.00608201,-87.99684546,-88.00486045,-88.05046735000001,-88.02209392,-88.01994670000001,-87.98521572999999,-88.00721775,-87.98659689,-88.01212099,-88.04702082,-87.9887288,-87.9910675,-87.99567225,-88.00005887,-88.00682069,-88.02746061000001,-88.04708737,-88.01295776000001,-87.98733970000001,-88.05042766,-88.01690462000001,-89.63739335,-89.64090888,-89.65028157,-89.66154571,-89.63988651,-89.73860462,-89.73148669,-89.7253396,-89.54945275999999,-89.57479644999999,-89.52843541999999,-89.50261823,-89.57574237999999,-89.56451939,-89.57481436,-88.49039419,-88.53941143999999,-89.37679858,-89.37678262999999,-89.37679152,-88.48527722,-88.45741156,-88.48340192000001,-88.45961102,-88.46496593000001,-88.46489373,-88.44978122000001,-88.46186753000001,-88.48681435,-88.49781089,-88.47725683,-88.48024138,-88.47957092999999,-88.4531745,-88.44962008,-88.42408437,-88.44011447,-88.74200733000001,-88.56025277000001,-88.58352313,-88.719874,-88.58304821999999,-88.50821619,-88.445623,-88.50518999000001,null,-88.42357018,-88.41367103,-88.41561213,-88.39644063,-88.43558763,-88.41201287,-88.41532733,-88.41886572,-88.41511017000001,-88.37516339,null,-88.39290493,-88.39703186,-88.425838,-88.37508604,-88.41574717,-88.40871804,-88.41576241,-88.41363756,-88.41572303,-88.40431131,-88.40725767000001,-88.41896509999999,-88.38917468,-88.413034,-88.40574994000001,-88.42388155,-88.40403769,-88.41734606,-88.40508534,null,-88.40699866999999,-88.41907178,-88.34910417,-88.43367169,-88.42576436,-88.36898567999999,-88.41058509,-88.37482558000001,-88.40871697999999,-88.43105258999999,-88.41352888999999,-88.37764747,-88.38344701,-88.42769439999999,-88.19694783,-88.14208794,-88.26628205999999,null,-88.25871979999999,-88.30099025,-88.18896205999999,null,-91.50976823000001,-91.49950653000001,-91.50313993,-91.52503827,-91.47093552,-91.46643886,-91.53949836,-91.50844600000001,-91.46305664,-91.5894843,-91.45659702,-91.51519469,-91.50182171,-91.47339294,-91.50009133,-91.51136817,-91.47917594,-91.53383433,-91.49500085,-91.50977525,-91.51876838,-91.42945484000001,-91.44757914,-91.49031359999999,-91.47857621999999,-91.50770389,-91.46648879999999,-91.49635506,-91.47656311999999,-92.37195337,-89.68528612,-88.5970224,-88.58596176,-88.60981241,-88.5680723,-88.60913544,-87.62650178,-87.61252858,-87.50084213,-89.11268904000001,-89.09472096,-89.1019594,-87.43867691,-87.43845347,-89.83247285,-89.82212825000001,-89.81703213999999,-89.83626939,-89.83829826,-89.81716252,-89.81206466,-89.81335489999999,-89.84459772,-89.78610729,-89.77522501,-89.78575824000001,-88.54983185,-87.97965511,-87.94096939000001,-87.92290529,-87.91630314,-87.94226642,-87.96382576000001,-87.70179299,-87.67469689000001,-87.66197088,-87.64034061,-87.6344223,-87.65780235,-87.68955810999999,-87.69076800000001,-87.69801181,-87.66729945,-87.69815817999999,-87.66354465000001,-87.69926863000001,-87.70930174,-87.67197593,-87.69131993000001,-87.69441551,-87.6577334,-87.6425254,-88.25161378,-88.22653731,-88.23687138,-88.23969576,-88.24976839,-88.25921986,-88.23651794,-88.25594368,-88.21837592,-88.25583912,-88.23156629,-88.18219223,-88.23562161,-88.23223715,-88.27220504,-88.25817673,-88.22711803,-88.23464872,-88.23172525,-88.22665452,-88.22100325,-88.2342441,-88.18848662000001,-88.23455534,-88.23715901,-88.23211489000001,-88.23723364,-88.23450966999999,-88.22478124,-88.20763306000001,-88.17987259,-88.25019703,-88.22673893,-88.23712526,-88.24968077,-88.20033046,-88.28996159,-88.47280387000001,-88.37162485,-88.23998455,-88.23949914000001,-88.346394,-88.41150945,-88.21668397000001,-88.42493611,-88.37792858,-88.2925494,-88.24334066,-88.22375451000001,-88.20034173000001,-88.35544871,-88.24404801,-88.22510345000001,-88.34290729,-88.35194081,-88.36267846,-88.34695609000001,-87.75106374000001,-88.63026010999999,-87.70126834,-87.84432882999999,-87.96277096999999,-87.76879133,-90.79687529,-88.43473958,-88.43070763,-88.41175265,-88.47027528,-90.65482306,-91.21342558000001,-91.21339603,null,-91.18133614,-91.19662513,-91.22039328,-88.33911242000001,-88.29154459,-88.35218705,-88.31181416,-88.32412066000001,-88.3157226,-88.31229766,-91.85963728999999,-92.6107105,-92.39525012,-92.7507504,-92.74231478,-92.63800141999999,-92.71700456000001,-92.70219842,-92.75697509,-89.41731252,-89.06669099,-91.06769884000001,-91.24665444999999,-90.48785211000001,-91.74891255999999,-92.62830968,-92.62926227,-92.62934312,-92.6300825,-92.62925685,-92.62938234000001,-91.92974598000001,-91.91948057,-91.92335489,-91.92591202,-91.93271722999999,-91.92974392000001,-91.93213581000001,-91.92847848,-91.93226016,-87.12172363000001,-87.28814122,-92.53633421000001,-92.62264068,-89.64525669,-89.71945534,-89.62754696,-89.65026693999999,-89.6211871,-89.62308722,-89.63916441000001,-89.63014870000001,null,-89.64609055,-89.62323823,-89.63919608,-89.62522602999999,null,-89.65565853,-89.62384521,-89.62419778,-89.62725931999999,null,-89.693606,-89.65553907,-89.61736042,-89.38865543999999,-92.38110684999999,null,-91.86016361999999,-91.24343071,-91.26266647,-91.24793394,-91.25690847,-91.0905443,-88.84324264,-89.09854045,-89.14175413,-88.7399588,-89.0222437,-88.93023244,-89.43054246,-89.42902386,-89.40636072,-88.26135365,-88.31191678,-88.66398916,-88.32406802,-88.30276953000001,-88.56829694,null,-88.54157796,-90.50513226,-90.47725526000001,-90.5090031,-90.50081895,-90.50385328,-90.50477136000001,-88.46319858,-88.45574951,-88.40906452,-88.46812534,-88.46881867,-88.48398794000001,-88.45837124000001,-88.4511763,-88.46128710000001,-88.43907215,-88.43865510000001,-88.40174977,-88.41213224000001,-88.45230101,-88.49120937000001,-88.477709,-87.98679497000001,-87.98773496,-87.98798049,-87.9661334,-87.97344056999999,-87.98337555000001,-89.37852506,-89.3665422,-89.40784305,-89.41015732,-89.4247372,-89.42436939,-89.38225417,-88.27497097,-88.26672857,-88.27405842,-88.54645879,-88.59099107,-88.57820194,-88.52753731999999,-88.58130917,-88.53753845,-88.5427009,null,-88.53758510999999,-88.5567516,-88.5280202,-88.53645121,-88.51927001,-88.54666878,-88.53757057999999,-88.53548363,-88.52761722,-88.56688991,-88.52752097,null,-88.54300433,-88.54257514,null,-88.54622503,-88.54251619,-88.56254822,-88.58158,-88.56064141,-88.54248664000001,-88.59443453999999,null,-88.58186434,-88.55245827,-88.58130917,-88.52861363,-88.58819996,-88.53753534000001,-88.56862243,-88.54123548,-88.54614008,-88.52748003000001,-88.53966278999999,-88.54310024,-88.52750528,-88.55551729,-89.44587367,-89.45131944000001,-89.44377505,-88.39491377,-88.92594995,-89.11068014999999,-87.8971653,-87.90813534,-90.75064349,-90.659294,-90.88010731,-88.76281444,-88.76515228,-88.31329214,-88.37706976,-88.53579062,-87.92729685,-87.95359557,-87.95068675,-87.95051356,-87.95912135,-89.73297859,-90.88215547,-87.95136966,-87.83044692,-87.82287175,-87.83445694,-87.83569441,-87.94304252000001,-87.82796476,-87.85234661,-87.82148381,-87.89066059,-87.81935887,-87.82484456,-87.85572813,-87.84324903,-87.82469239,-87.82294491,-87.83432501999999,-87.82958246,-87.93394911,-87.85575175,-87.81931593,-87.85641615,-87.83554109000001,-87.82674953999999,-87.9368138,-87.82691038,-87.83084269,-87.82148574999999,-87.82319448,-87.83096454,-87.83414783000001,-87.84014907,-87.85121746,-87.83535304,-87.86636910999999,-87.85572184999999,-87.8355334,-87.84009603,-87.85386076,-87.88027776,-87.88025220999999,-87.84151521,-87.85575174,-87.82229765,-87.85299712,-87.8314316,-87.82670571,-87.84150561,-87.84535274,-87.85462984999999,-87.84659302,-87.82309348,-87.88798328999999,-87.84445092999999,-87.84325321,-87.82148284,-87.87453157,-87.83944495999999,-87.83556403,-87.82344399999999,-87.84566972,-87.83545529,-87.82161128,-87.95492957,-89.65242284,-89.65125961,-88.48726692,null,-87.91953252,-89.51340915999999,-89.52189223000001,-89.52740424,-89.54756513,-89.54249535,-87.95499802,-88.13908386,-88.17028375,-89.25358075,-88.99259180999999,-91.08318074,-89.80789948,-89.80059525,-92.61827065999999,-92.64488491,-92.09192831999999,-92.10426912,-92.09943131,-92.0528324,-92.09868623,-92.10392912,-92.1070417,-92.10536014,-92.09797541,-92.10416105,-92.09186176,-92.09785538,-92.10412608,-88.52577813000001,-88.25145787,-88.24652251000001,-87.56298427999999,-87.55315623,-87.56991735,-87.56200416999999,-87.58524074,-87.56835368,-87.57148053,-88.68534474000001,-88.75655241,-88.49448654,-88.50568583,-88.4997779,-88.50065250999999,-88.47409948000001,-88.49583504,-88.49047263,-88.46729458,-88.49024286,-90.19810586,-90.17063856999999,-90.17131207,null,null,-90.17868295,-90.17370387,-90.15668798,-90.17196752,-90.15543623000001,null,-90.1541866,-90.16011736999999,-88.25362715,-87.98996758,-89.2888128,-89.28741861,-89.28208162999999,-88.00925878,-88.0083265,-87.95839838000001,-87.97950224,-87.98860510999999,-88.00815863,-88.00211611,-88.00815626000001,-88.05789763,-88.00779095999999,-87.96630154,-87.94883302,-88.00813371,-87.94866506,-88.04059701,-87.97854245000001,-87.98839270000001,-88.01317532,-88.00824517,-88.0279541,-88.02735341,-88.04776925,-87.97842848000001,-87.87331813999999,-87.93146706,-87.92074977,-87.85315801,-87.91402131,-87.82291864,-87.93912048,-87.82661659,-88.12992380999999,-88.25413382000001,-88.24141976,-88.22030324000001,-88.15440267,-87.91661385,-87.91665823,-87.91613468,-87.91668952000001,-87.93295707999999,-87.93239022,null,-87.92642137999999,-87.91571733000001,-87.91383832,-87.93510815,-92.53759633,null,-87.88361527000001,-87.86116850000001,-87.9473114,-87.88194258999999,-87.92077319000001,-87.92088015,-87.94658514,-87.91488648000001,-87.94933146,-87.91765778,-87.94849395999999,-87.91341878999999,-87.83970208,-88.04989449999999,-88.04837356,-88.03451502,-88.04675275,-88.9535271,-88.95091417,-88.94927422000001,-88.10238167,-88.06918877,-90.59731158,-90.59700548000001,-89.68290892,-89.68501723,-89.68173164,-89.66717927000001,-88.62460494,-87.88747171,-87.88744522,-87.885412,-87.8891522,-87.88743221999999,-87.88035843,-87.89245766000001,-89.7253104,-89.77116118000001,-89.74029659,-89.74594347,-89.74077369,null,-89.71474842000001,-87.86071010000001,-87.8756032,-87.85341304000001,-87.87157553,-87.86575177,-87.86282715999999,-87.86557472,-87.85949404,-87.96571548999999,-87.97015493000001,-87.96756417,-87.96286857,-87.97018002,-87.97488896,-87.98053640000001,-87.80444174,-87.86296446999999,-87.79849446999999,-87.84182109,-87.84824209999999,-87.84622452000001,-87.84719398999999,-87.86451796,-87.83612375,-87.85799408,-87.85592182000001,-87.84959712,-87.84591905000001,-87.86667217,-90.19049398999999,-90.07356115,-90.02399047999999,-90.0696094,-90.07569502,-90.06723632000001,-90.07486416,-88.73964433,-88.73335164,-91.49869894,-91.39325636,-91.38877401000001,-91.38320861,-91.41295466,-91.3964539,-89.57072703,-89.48547360000001,-89.49400677,-88.22020075,-87.86551114,-87.84389542,-90.01859398000001,-89.98744417,-90.00813891,-89.98645916,-89.80668480999999,-92.79699734,-89.79368903,-89.79255474999999,-89.79717429,-89.78880497,-89.78181624,-89.7935354,-89.77986821,-89.79769714,-89.79368291,-89.79036985,-89.52357437000001,-90.92671959,-88.08901919,-88.1120193,-88.10298799,-88.40419009999999,-88.35375891,-88.4148737,-88.33984825,-87.86929526,-87.88370122000001,-87.85962436,-87.87462877999999,-90.59331044,-90.65444746999999,-90.71074677,-89.56915143000001,-89.60961207,-89.61296360999999,-89.59098161999999,-89.61328654,-89.55984291,-89.60972248,-89.57306469,-89.60469591,null,-92.49561454000001,-92.68212828999999,-92.66728881,-89.23779564,-89.25064786999999,-89.22022432999999,-89.21248369,-89.23335131,-89.2405988,-87.85018744,-87.86998404000001,-87.85011274999999,null,null,-87.86999512,-87.86008583,-87.86998088,-87.85495438,-87.85521434,-87.87020782,null,-87.8600541,-88.08671114000001,-88.12293141000001,-88.10049449,-88.14254166000001,-89.53347685,-89.53371396,-89.46176993,-89.46177157,-89.46167143,-89.46176993,-90.38415324,-90.38662166,-90.38788362,-90.39411314,-89.88587454,-87.83112724999999,-87.78682915,-87.81051689,-87.80676239,-87.82242583999999,-87.79445278,-87.79363284999999,-87.78704066,-87.79480739,-87.79272192000001,-87.83704328,-87.87028496000001,null,-87.80693420999999,-87.81968672000001,-87.7992515,-87.805035,-87.78386637,-87.81613024000001,-87.82478407000001,-87.78243073,-87.84181426000001,-87.83483406000001,-87.806697,-87.80579303,-87.79617727,-87.79490851,-87.78274201000001,-87.79984483,-87.79939489,-87.8009887,-87.79551895,-87.80421882,-87.78497108000001,-87.84925422000001,-87.84134093999999,-87.81156113,-87.78815614,-87.78258182,-87.7966089,-87.85240729,-87.8054702,-87.80463875,-87.80017313,-87.79830387,-87.84071763,-87.79956357,-87.82640839,-87.78477493,-87.79331872,-87.78276226,-87.80163921,-87.7927397,null,-87.894831,null,null,-87.89476546,-89.03105003,-89.01878278,-89.05615629,-88.97978098,-89.01349359,-88.97379572,-89.02467624000001,-88.98982092999999,-89.05191657,-89.02349878,-89.00661956,-89.04302979000001,-89.05165553000001,-88.97796477,-89.02551524,-89.06335847,-89.03105259,-88.99121857,-88.99109266000001,-89.03980263,-88.97368241,-89.01892109000001,-88.99091601000001,-89.03089654999999,-88.96872485,-89.00289773999999,-88.4353412,-88.43522335999999,-88.43516615,-88.4305061,-88.41446684,-89.88488045,-89.78829072000001,-88.22955659,-88.22368141,-88.23010032000001,-89.32742639,-90.57130569,-88.98858896,-88.98597024999999,-89.01091374000001,-89.04175823,-88.98243484,-89.01076762,-88.98970452,-89.01524503,-89.05150182,-89.01577939000001,-89.06137389,-89.02549466000001,-88.98547072,-89.37385301,-89.37531702,-88.32533253,-89.7311989,-89.73039154999999,-89.41214083,-89.55311709999999,-89.54811290000001,-89.0111088,-89.01925489,-88.5889088,-88.14828119000001,-88.15224069,-88.12442107,-88.13158817999999,-88.11997418999999,-88.08885262,-88.15777540000001,-87.98149284,-88.26543271,-88.29347405,-88.2748689,-91.89386704,-88.40299383,-88.46526231999999,-88.51182350000001,-88.47238016999999,-88.43455040000001,-89.33946261,-88.72457695,-88.7276143,-88.70898334,-88.72156055000001,-88.72736319000001,-88.72944817,-88.71860647,-88.72390470000001,-88.73336904999999,-88.62761655,-87.8828237,-87.88285995,-88.36985847,-88.40681718,-92.54960518999999,-88.56429803,-91.14524307000001,-88.18433611,-88.17984899,-88.14583299,-88.22580029,-88.18185321999999,-88.17989572,-88.1971827,-88.18561662,-88.18990992000001,-88.16238430999999,-88.17758356,-88.17090424,-88.1613459,-88.18744019,-88.18650692,-88.18126123,-88.2058485,-88.15664549,-88.18385637,-88.18663650000001,-88.75007074,-88.73243230999999,-88.74138182999999,-88.75649889,-88.73112574,-88.73348934000001,-88.74939147000001,-87.99924554,-87.99610103000001,-87.99555786000001,-88.00847123,-87.98578812,-87.99241142,-87.74868124,-87.73135116,-87.74082797,-87.75241699,-87.72200214999999,-87.72128402,-87.71462448,-87.70960125000001,-87.71297047,-87.71627234,-87.72294257,-87.75300244,-87.70428291,-87.71627027,-87.7352552,-87.9431079,-87.76660816,-87.75470355,-87.74006992,-89.15008029000001,-89.15768730000001,-89.15257554,-89.17768551,-89.15759392,-88.83159886999999,-88.85194611999999,-88.81094161999999,-88.83819803,-88.83661261,-88.83740478999999,-88.83676532,-88.07344035,-88.15100777000001,-88.12617959000001,-88.12194101,-88.09945611000001,-88.83693537000001,-88.84132207,-88.80734407999999,-88.8072944,-88.80747503000001,-88.80729110999999,-88.91344114,-90.34486171,-90.33045825000001,-90.33120697,-90.34424989,-90.3348859,-90.18780517,-87.98117578999999,-87.94476317,-87.96358197000001,-87.86930477999999,-89.44341202,-89.46946988000001,-89.47123022,-89.46040134,-89.46513537,null,-88.58783167,-88.22056894000001,-91.15673868,-91.14909091,-91.14367656,-89.63266566,-89.37971576,-90.38490295,-89.48752254999999,-89.88681525,-89.87408972999999,-89.66704272,-91.47021135,-88.04680451,-91.41969757,-91.42983067,-87.9701264,-87.98740574999999,-87.91836610999999,-88.02752411,-88.02863013,-87.88305844999999,-87.91597274999999,-87.89025306000001,-87.90908722,-87.92161052,-87.88544014,-87.89202121,-88.03450220000001,-87.98612341,-87.90976894000001,-87.96247696,-87.99987208,-87.93525348999999,-87.95834229,-87.94251941,-87.95766913999999,-87.95755776,-87.92891269,-87.91097198,-87.98768266,-87.95913168,-87.95913143,-87.95724189000001,-87.96757024,-87.93634222,-87.89628263,-87.94069359,-87.90526391,-87.91405722,-87.92883289,-87.92847141999999,-87.90038821,-87.92360871,-87.94776924999999,-87.93388401999999,-87.93441745,-87.93776407,-87.9823816,-87.95111679,-87.99297309000001,-87.95749108,-87.91416699,-87.91852227,-87.91895658999999,-87.91960871000001,-87.89596400000001,-87.92870784,-87.92922603,-88.00733458000001,-87.89941082999999,-87.90969755,-87.9329948,-87.93312469,-88.02120329,-87.95320018,-87.94034751,-87.95642854,-87.99091761,-87.96714876999999,-87.95751211,-87.94711280999999,-87.94750809,-87.96746182,-88.02868999,-88.04155998,-87.9378081,-87.94759369000001,-88.00992822000001,-87.99704973999999,-87.92515048,-87.98538135,-87.92635851999999,-87.95808307999999,-87.90482660000001,-88.0071678,-87.95769002,-87.9333412,-87.94779667,-87.94510558,-87.93540192,-87.90536582999999,-87.93213677999999,-87.95065955,-87.89959921000001,-87.92551859,-87.94772497,-87.92888526999999,-87.93305449,-87.95206133000001,-87.91988416,-87.90526106999999,-87.87961255,-87.98819837000001,-87.96977545999999,-87.94717729,-87.92706343,-87.91414312000001,-87.93901648000001,-87.94106115,-87.89773721,-87.90394904999999,-87.90221588,-87.99592205,-87.90678002999999,-87.9120636,-87.97329035,-88.02604137,-87.96353679000001,-87.95521458,-88.01740153999999,-88.03519493,-87.96933118,-87.91549347999999,-87.97736512,-87.91893783,-87.94103615,-87.91960881999999,-87.95741701,-87.94798299,-87.88796781000001,-87.90737197,-87.93959522999999,-87.88699907,-87.90920258,-87.88644888,-87.96709686,-87.93298837,-87.95277405,-87.95649103,-87.89543092,-87.97766903999999,-87.98099057,-87.91896582,-87.92860604000001,-87.94639878,-87.94790303000001,-87.92854375,-87.98458697,-87.9477918,-87.91757452,-87.90648768,-87.93612301,-88.02750759,-87.91421597,-87.91534882000001,-87.93073953,-87.89779473,-87.89895867,-87.9470006,-88.00621624999999,-87.97319014999999,-88.00311241,-87.96502948,-88.00067351,-87.96227675,-87.92052004999999,-87.94639878,-87.93321594,-87.93298799999999,-87.92362193,-87.92551859,-87.92824889000001,-87.917613,-87.94874676000001,-87.94337535,-87.92728781,-87.95764914,-87.94771326,-87.94300755,-87.92715036,-87.94167587,-87.90958598,-87.91233759000001,-87.88539744000001,-87.91104192,-87.88368638999999,-87.92028092,-87.99226279,-87.96222656,-87.96441906,-87.99155528,-87.9910438,-88.02881646,-88.03132628,-87.96616589,-87.93809908999999,-88.00707906,-87.9664622,-87.97815361000001,-88.00720355999999,-87.99492201,-87.97591179,-87.95312019000001,-87.94728967,-87.90592928,-87.91853711,-87.91261274,-87.92927883,-87.93305449,-87.93503904000001,-87.8994538,-87.94834256,-87.95445599999999,-87.96757457,-87.95528951999999,-87.93740584,-87.92930669,-87.9282089,-87.88788832,-87.90841372,-87.92475889000001,-87.94735108,-87.90491874,-87.94821017,-87.94896094000001,-87.93949356,-87.94829832000001,-87.92577754,-87.95807404999999,-87.94860718,-88.00780483,-87.89071645,-87.9686332,-87.94861972,-87.8993454,-87.89786724,-87.92501012,-87.94362494000001,-87.92675543999999,-87.93655146,-87.93460082999999,-87.93483105,-87.91957236,-87.91946478,-87.87807890000001,-87.90429732,-87.88788832,-87.9066524,-87.91558391,-87.93455238,-87.92824702999999,-87.91562155,-88.02390681999999,-87.87941186,-87.93305449,-87.914396,-88.01455541999999,-87.9337738,-88.03089782000001,-87.93299732,-87.92950257,-87.95188267,-87.92852855,-87.94049067,-87.94779643,-87.94750809,-87.97751663,-87.96104855999999,-87.96748223,-88.01494785,-87.95754242,-87.95785341,-88.02462088999999,-88.01460546,-87.92272912999999,-87.90526048,-88.0142369,-87.90207268,-87.88676661,-87.90347336000001,-87.90438700999999,-87.90975578,-87.89026311000001,-87.88841738000001,-87.94931654,-87.91198426,-87.94785932000001,-87.91873848,-87.91881505000001,-87.94772081000001,-87.94082792,-87.94750843999999,-87.91429137999999,-88.03879252999999,-87.92689537,-87.94280059,-87.90526106999999,-87.92961308,-87.94780061,-87.90156213,-87.90733152,-87.89775109999999,-87.92884619,-87.95769002,-87.94837686,-87.94363896999999,-87.95148516,-87.92835294,-87.90353469,-87.93705774,-87.92922903,-87.93648889000001,-87.95099093,-87.98835796,-88.00255525999999,-88.00984215,-87.94640845000001,-87.92607078,-87.92620101,-87.9437149,-87.94458505,-87.92387703999999,-87.91125259,-87.9478814,-87.91980712,-87.92362764000001,-87.93298837,-88.01859154,-87.93292586,-87.94007053,-87.91832461,-87.8932016,-87.924108,-87.9285311,-87.97485382000001,-87.9140439,-87.96153073000001,-87.94717729,-87.93968499,-87.94003960000001,-87.90583764,-87.93720349,-87.89503304,-87.93300628999999,-87.94840142,-87.92889965000001,-88.04134668,-87.96782915,-87.9474125,-88.04197071,-88.01584105000001,-88.02756701,-87.96766728999999,-87.93682956000001,-87.91258261,-87.91878495,-87.94052969000001,-87.94209468,-87.95402505,-87.93997922,-87.92838221,-87.95813616,-87.94769863,-87.9586953,-87.93814734999999,-87.95769002,-87.93946674,-87.93312709,-87.94789962,-87.92682395,-87.918865,-87.91262810000001,-87.91826828000001,-87.91249433,-87.9202686,-87.91405722,-87.91649715,-87.91451655,-87.88783273999999,-87.88327046000001,-87.92009999,-87.95738295,-88.00043127000001,-87.97396729,-87.98131368,-87.98742985,-87.93173297,-87.96211006,-87.94779822,-87.95294115999999,-87.93509287000001,-87.94808487,-88.02434431,-87.93486955,-88.01431273999999,-88.01740398,-87.94546844,-87.95041682999999,-87.91899191,-87.92149268,-87.94259878,-87.94727138,-87.98679668,-87.93649413,-87.96746613000001,-87.94775126,-87.98179690000001,-87.93774969,-87.95437737,-87.99380621,-87.95642879,-87.94839742000001,-87.94842656,-87.90948899999999,-87.88436282000001,-87.93698190000001,-87.95646644,-87.95288966,-88.00388479999999,-87.88936108999999,-87.93900234,-87.88969639,-87.90258371,-88.00702001000001,-87.94668110000001,-87.93978187,-87.9448835,-87.94761558,-87.94354594000001,-87.98353557999999,-87.95579825,-87.92118743,-87.91909351,-87.95708594,-87.88799529000001,-87.88786078,-87.88549154,-87.88304098,-87.91857109,-87.95459418,-87.9440322,-87.88566529000001,-87.99692944,-87.94668746000001,-87.88670159999999,-87.97776665000001,-88.00797255000001,-87.94678403,-87.90524176,-87.90599123,-87.88539727,-87.91841853,-87.94701723999999,-87.94779789,-87.94792359,-87.94779104,-87.90923073,-87.90466249000001,-87.99985481,-87.90424433,-87.90592052,-87.91884159,-87.95100262,-87.95752113,-87.94700514,-88.44593104,-89.06089061,-91.12936834,-89.1590779,-90.90648459000001,-87.82867242,-87.72282251,-88.47001086,-87.93604246,-87.79674305,-88.58204249000001,-91.21815825,-91.23213272,-87.94287991,-87.93295465999999,-87.93425368,-87.93416935,-87.93416993,-87.93416935,-87.92534263,-87.95633363,-87.96087980999999,-87.94690903999999,-87.93891515999999,-87.93895694,-87.92112097,-87.94278633,-87.96222641,-87.9143407,-87.95689209,-87.91264742,-87.9182349,-87.90685852999999,-87.91909351,-87.90439256000001,-87.92399596999999,-87.95798726,-87.92883241,-87.92877119000001,-87.94759458999999,-87.91478519,-87.95763416,-87.99103679,-87.96649125,-87.98616045999999,-87.96246474,-88.00710921,-87.96453225,-87.96291956,-88.00710921,-87.91124741,-87.92025115,-87.88807213,-87.97398516,-87.97635078,-88.01461801000001,-88.00673438,-87.94525303,-88.04091514,-87.99103679,-88.00556525,-87.97376717,-87.99076857,-87.952861,-87.94900649,-87.94849151,-87.98615873,-87.99039979,-88.01177462,-87.96392794,-87.97111158,-87.99352965999999,-87.96876937,-87.91729442,-87.89779473,-87.94663758999999,-87.9185104,-87.94699982,-87.90428687000001,-87.89811926,-87.97242565000001,-87.9472961,-87.94698631999999,-87.97727190000001,-87.91405722,-87.93743353000001,-87.93967918,-87.93554020000001,-87.94693393999999,-87.93701885,-87.96749303999999,-88.00089558000001,-87.99680778,-88.00646003,-87.90152212,-87.89509888000001,-87.94779382999999,-87.96110364,-87.94862928000001,-87.93211565999999,-87.96005595,-87.92224342999999,-87.95771444,-87.93361355,-87.95749108,-87.97371511999999,-87.89971145,-87.94779822,-87.98775529,-87.8933045,-87.94858019,-87.94829618,-87.91895769,-87.95276746,-87.91410399999999,-87.905261,-87.93782552,-87.94992565,-87.9372127,-87.97245378,-87.93995925,-87.93073604,-87.93722747,-87.94347721,-87.90550725999999,-87.95135575,-87.91860199,-88.02631011,-87.88714186,-87.90333651,-88.0442426,-87.96708052,-87.95766578,-87.93096595999999,-87.93096595999999,-87.9419477,-87.94225342,-92.62375285,-92.62451625,-89.35337629,-89.36627548,-89.39506136,-89.39573085000001,-89.3859382,-89.40081696999999,-89.40409565,-89.40080777,-89.32235706,-89.38104928,-89.36603846,-89.36350770999999,-89.42876452,-89.37990091,-89.38114906,-89.36697536,-89.37242177,-89.39749727,-89.38425558,-89.3625169,-89.38254571,-89.35728999,-89.38938234,-89.26386246,-89.34505668,-89.49484551,-89.43792882,-89.45062197999999,-89.45872494,-89.39348553000001,-89.40071528,-89.40954555,-89.50515513000001,-89.49692172,-89.31927641,-89.35659106999999,-89.451173,-89.30375884,-89.38832155999999,null,-89.27979817000001,-89.39437148,-89.37340829,-89.38569704,-89.48934807000001,-89.45124305,-89.42412419,-89.53703858999999,-89.51306266,-89.34869608,-89.34940640000001,-89.3941246,-89.39801894,-89.37283686000001,-89.35941916,-89.35891559,-89.4010765,-89.34953528,-89.31013796000001,-89.31663528,-89.45118567,-89.40404809,-89.52752207,-89.30694631,-89.32569770000001,-89.30141999999999,-89.40900499999999,-89.51865906,-89.31177424000001,-89.31686658,-89.3238758,-89.45448646,-89.36351202,-89.29836976,-89.31289291,-89.36428046,-89.40060822,-89.33870592,-89.35219698,-89.39826118000001,-89.39582713999999,-89.36380382,-89.39064513,-89.3848637,-89.3852705,-89.37559203000001,-89.42036132,-89.30850898,-89.41672106,-89.39172006,-89.38577371,-89.39736859999999,-89.40247608,-89.52499653,-89.45821272000001,-89.40028785,-89.3840677,-89.6008829,-89.55545694,-89.47125068,-89.60010539,-89.36201484,-89.32346262,-89.33311199000001,-89.33169904,-89.05823139,-89.60095775000001,-89.10553545,-89.50573060000001,-89.79167932999999,-89.1446375,-89.24624159,-89.1497103,-89.26388971999999,-89.24163950000001,-89.24664443,-89.24207632,-89.23198379999999,-89.24091433,-89.20264098,-89.20621704,-89.19858916,-89.25412905,-88.02542796,-87.96768157,-87.95568419,-87.99717904000001,-88.01352346,-87.98895655,-88.02683709,-88.08107551000001,-88.09568222,-88.02346924,-88.03503752,-88.021778,-87.97686602,-88.05795214,-88.06405964,-87.99262247999999,-88.02181907000001,-87.9779698,-87.99266787000001,-87.98413918999999,-88.02254293,-88.00914219000001,-88.01556393,-88.02376159000001,-87.95818869,-88.07398051,-87.98154501,-88.0091925,-87.99221926,-88.10944718,-88.09934199,-88.06151723000001,-87.96317116,-88.00043225,-87.98064533,-88.09351104,-87.93246832,-88.01291212,-88.06301512,-88.06251579000001,-87.98316722,-88.02221922,-91.10204994999999,-87.92727472999999,-87.90706602,-87.89947438,-87.98567849,-87.9994449,-87.91049345,-87.92088519000001,-87.92722365,-87.96697374999999,-87.93226068,-87.95264048999999,-87.94741747,-87.94595262,-87.97626799,-87.93532913999999,-87.96422701,-87.95767351000001,-87.95868015000001,-87.94191644,-87.98612391,-87.91608961999999,-87.91806871999999,-87.92921086,-87.96640552,-88.00431777999999,-88.02587788,-88.46691269999999,-88.46203783999999,-88.45482847,-88.45964864,-88.48494298,-88.44807505,-88.43924419,-88.45441859,-88.44684117,-88.44017932,-88.44514899000001,-88.44701177,-88.4501204,-88.46208986000001,-88.45600505,-88.37303467,-88.44469399,-88.47346718,-88.44453541,-88.44453028,-88.45038556,-88.44931258,-88.43944408,-88.47711836000001,-88.42181978000001,-88.44803523,-88.44695437999999,-88.42713125,-88.18359662,-88.30380526,-88.40426105,-91.24199179,-91.24845206000001,-91.24681733,-91.2464495,-91.24618289999999,-91.23950932,-91.2502913,-91.23967143,null,-91.24674055,-91.23950065,-91.23186552999999,-91.24735626,-91.24050205,-91.2115737,-91.23902750000001,-91.24594428,-91.23974613,-91.24828875,-91.24893563000001,-91.21954332999999,-91.21930448000001,-91.2391071,-91.24482609,-91.24816244,-91.23163572,-91.24814504,-91.21994817,-91.21408572999999,-91.23683307,-91.21063033999999,-91.2495115,null,-87.82199788,-87.81691246,null,null,-87.95099544,null,-88.02356348000001,-88.02135167,-88.03652085,-88.08459223,-88.07772308,-87.98907616,-87.94004338000001,-87.95352466,-87.99601833,-88.10223757999999,-88.07732541999999,null,-88.0535883,-88.07062911,-87.84243235,-87.90109781,-88.09017204,-88.10471137,-88.08268466,-88.05363268000001,-88.0801409,-88.13846832999999,-88.09807768,null,null,-88.05371839,-88.05566413,-88.02514862,-88.07948131000001,null,-88.08100888,-88.07867536000001,-88.07505996,-90.83481738,-91.48469141,-91.48465431,-90.71069086,-88.5858729,null,-91.14449492999999,-91.12985367,-90.82069824,-90.81339439,-88.48425569,-90.88936386,-90.88894285000001,-88.5398524,-89.48685023,-89.48853217,-89.52552494,-89.49190695999999,-89.51157307,-89.51126489000001,-89.48088125,-89.44736102,-89.45969391,-89.45954393,-89.47489858,-89.41059444,-89.47210693,-89.4147469,-89.38312874,-89.39492607,-89.45804347000001,-88.03665474,-88.04092546,-88.03784773,-87.88996366000001,-87.89280583999999,-88.05509136000001,-87.87710297,-87.91899262,-88.062984,-87.96957575,-87.8506189,-87.96112809,-88.054034,-88.03466867,-87.95094546999999,-87.96845523,-87.9804556,-87.95078431,-87.95013317999999,-87.97998837,-88.00141048,-88.00879422,-87.99093478,-88.0149277,-88.10528429,-88.08396467999999,-88.13086328999999,-88.13719118,-88.11728288,-88.12425036,-88.10768028,-89.32394017,-89.35418666,-89.3344429,-89.34916267,-89.34742169,-89.34506772,-89.35472319,-89.32546619999999,-88.04755471,-88.05748199,-88.00183542000001,-88.00077048,-88.04696850000001,-88.00403587,-87.99856045,-88.00925709000001,-88.03209993,-87.99747178,-88.0587172,-88.05726423,-87.99738875,-88.00843727,-88.04797001999999,-88.04782744000001,-88.04802158,-88.04846707,-88.00733131,-87.98975684,-88.04817091,-88.00844428000001,-87.99750815,-87.98703768,-88.02729492,-87.99623925,-88.00249586,-88.04686599999999,-87.99789354000001,-88.00503107999999,-87.98628427,-88.04547861,-88.04680707999999,-88.04446943000001,-88.02004988,-88.02587839,-87.99656581000001,-87.98733352000001,-88.04759190999999,-87.99048817000001,-88.0409133,-88.01011521,-87.98736802000001,-88.00682706000001,-88.01122003,-88.00744052,-87.98424934000001,-88.02652193,-87.98811434,-87.9990012,-87.98293844,-88.00149398000001,-88.02829047,-88.02690199,-87.98746328999999,-88.04147347,-88.00872226,-88.04724533,-88.00244607,-88.04723799,-88.02635906,-88.01701705000001,-88.04532672000001,-88.00723637,-88.02738008,-88.04609742,-87.98737138,-91.44764227,null,-89.65045917,-89.63504641999999,-89.55001073,-89.56430319,-88.54355105,-88.52948532000001,-88.54353791,-88.54239629999999,-88.54062354,-88.49491187,-88.46491732,-88.45569675,-88.47340773000001,-88.49150806999999,-88.46810471000001,-88.46353967,-88.49510825999999,-88.48473905,-88.45808882999999,-88.45559934000001,-88.49043635,-88.468022,-88.44308445,-88.44299742,-88.41180863,-88.44194195999999,-88.43719403999999,-88.42370842,-88.44608133,-88.42677191999999,-88.42626713,-88.45323962000001,-88.1671391,-88.185267,-88.50727080999999,-88.60452288,-88.76933923,-88.57654974,-88.73770447,-88.60288862,-88.64842478,-88.62188098,-88.41550918999999,-88.39940391,-88.36118,-88.41558524,-88.41061664,-88.41735334000001,-88.37612578,-88.42579487,-88.41059876,-88.41856481000001,-88.35696228,-88.37497113000001,-88.41554463999999,-88.37260617,null,-88.41147467,-88.36821955000001,-88.43340127,-88.41574362,-88.40411081000001,-88.3982539,-88.38783382,-88.39691799000001,-88.35847416,-88.41910109,-88.36432005,-88.40412961,-88.29784601,-88.27775421,-88.22130004,-91.50976606,-91.50937623999999,-91.50493021,-91.45973128,-91.47081088,-91.45849552,-91.4478843,-91.46490482,-91.46000721999999,-91.50710578,-91.54671810000001,-91.46335079000001,-91.46234933,-91.42847457000001,-91.53866789,-91.47205391999999,-91.54409228,-91.51715603,-91.51129723,-91.46397146,-91.44976121000001,-91.46503108,-91.50913679999999,-91.53011669999999,-91.47189304,-91.49983628,-91.49420559000001,-91.46635706000001,-91.50566949,-91.58994334,-91.46819747000001,-91.34543434,-91.64271359999999,-89.88959392,-89.60812447000001,-89.62160655,-88.01744488999999,-89.70387963,-89.68520268,-88.60892964,-88.60990293,-88.58173707,-88.60434171,-88.60896663,-88.60932345000001,-87.63529493999999,-87.63200128,-87.64997015,-87.66165701,-87.65692718,-87.6219224,-87.63597531000001,-87.62792068,-87.65779725,-87.52571399999999,-87.50589404,-89.08614503,-89.08674499,-89.81722937000001,-89.83578319999999,-89.81744248,-89.84461652,-89.83798676000001,-89.81207614,-89.81519503,-89.79688323000001,-89.81706176,-89.77522068,-89.76630276,-89.77078573,-89.78366352,-89.77545101,-87.9155057,-87.92415361,-87.97345672,-87.92672257,-88.02352870999999,-87.66691382,-87.65773677,-87.67228978,-87.68012254999999,-87.64045254,-87.67132537000001,-87.69996945,-87.68369801,-87.63816887,-87.66895473,-87.66059559,-87.69853206000001,-87.65850450000001,-87.68896405,-87.65495348,-88.25458147000001,-88.22926561,-88.24064524000001,-88.23763513999999,-88.24112230999999,-88.19117579,-88.27271519999999,-88.27362349000001,-88.27406818,-88.23669945,-88.25716500999999,-88.23439367,-88.26696707000001,-88.24326155,-88.2228022,-88.22354749,-88.38495012999999,-88.19468474999999,-88.26691968999999,-88.22562529,-88.3508063,-88.22782706,-88.34824609,-88.34052579999999,-88.38516724999999,-88.44028246000001,-88.29291529,-88.15719743,-88.26239424000001,-88.23483705,-88.29295937000001,-88.24369557999999,-88.24047032,-88.22004169,-88.34806044,-88.34526438,-88.34793254,-88.34029323999999,-88.34533711,-87.82393872999999,-87.5184069,-87.64436194,-88.4185933,-88.44593146,-88.40436173000001,-88.46087538,null,-91.17674663,-91.20915454,-91.23001625000001,-91.22041016999999,-91.23341596,-88.32414189000001,-88.31342778,-91.56370769999999,-92.03089571,-91.70417989000001,-91.69019374,-92.12869773,-91.99250902999999,-92.67926667,-92.72109205,-92.38537166,null,-92.75700272,-92.73153679000001,-92.7196785,-92.69671368,-92.73108657,-92.75706409999999,-90.74806927,-90.57389646,-90.37806842000001,-91.73533697000001,-91.73339000999999,-91.73415006,-91.7339154,-91.73317781999999,-91.75710134000001,-91.73512774,-91.73336326,-92.63504079000001,-92.6222547,-91.92397239,-91.92976505999999,-91.91955068,-91.92966808,-91.92714311,-91.92386390999999,-91.89850134,-91.93100645,-91.93428389,-92.23927681000001,-89.63932011,-89.65354924,-89.65555184999999,-89.64902392,-89.65196195,null,null,-89.63089574,-89.63936762,-89.63947793,-89.63942530999999,-89.63808109,-89.62305483,-89.62837397,-89.64547958,-89.69902523,-89.29535285999999,-89.52748871,-89.21875153000001,-89.04570428,-92.38114534,-91.85376617,-91.84878522,-88.95389587,-88.8451464,-88.86486201,-89.18702918,-89.41701945,-89.43406744000001,-88.32408691000001,-88.32408778,-88.29349056,-88.33100851,-88.50900286,-88.35431303,-88.50669034000001,-90.50509759000001,-90.48587766999999,-90.51720897,-88.40395626,-88.46250374,-88.41495851000001,-88.44598876000001,-88.47821877,-88.48431397,-87.98468342,-87.97315408999999,-87.98810234,-89.37430747000001,-89.40348259,-88.26624106,-88.2614568,-88.27497097,-88.26390453,-88.27102795,null,-88.52748063,-88.57300056,-88.5524929,-88.58398450999999,-88.58510584,-88.5499489,-88.53286857000001,-88.58297903,-88.58747069,-88.54249762000001,-88.52181443000001,-88.52866333999999,-88.52748130000001,-88.57678654999999,-88.54266909,-88.54979935999999,-88.53746142,null,-88.5425413,-88.5673429,-88.56067856,-88.55498244,-88.5787528,null,-88.55243964,-88.52277934,-88.57086520999999,-89.45128192999999,-89.44369988,-89.45115138,-89.04220818,-89.11516759,-87.88290053,-87.90324773,-87.90417719,-87.90704219,-90.4960143,-90.43403959,-90.8809194,-92.36709428,-87.91744215999999,-87.91458335,-87.90642013999999,-88.76475469,-88.76188747,-88.76355226,null,-88.73642793,-88.83547711,-88.64632182,-88.63759702999999,-87.95766838,-87.95037028,-87.92753358,-87.92929728999999,-87.96878936,-89.78692906000001,-90.01355166,-90.76341232999999,-91.16588797,-91.12397387999999,-87.82529412,-87.84579183,-87.9039387,-87.87741973999999,-87.82047822,-87.81720908,-87.86277459999999,-87.84917950000001,-87.82047977000001,-87.83253512,-87.81802166999999,-87.83520022,-87.84762901000001,-87.83556149,-87.81840905999999,-87.87810604000001,-87.83644597999999,-87.95524948000001,-87.85493694,-87.82132365,-87.82527388,-87.83555597,-87.83576381,-87.94869662000001,-87.82012883,-87.84981423000001,-87.81728409999999,-87.83348568,-87.84802037999999,-87.88890825999999,-87.82115263,-87.83347860000001,-87.81928219,-87.84439989000001,-87.84047489,-87.84573374999999,-87.85418052,-87.8333933,-87.82013519,-87.83683592,-87.8556057,-87.85426851,-87.83201733999999,-87.83812097000001,-89.84496712000001,-90.26245354,-89.92705805,-89.64803334,-87.80094554999999,-88.04046165,-88.02804510999999,-87.91979277999999,-89.54586216,-89.54379633000001,-87.83604151999999,-88.05190162,-88.05188333,-87.79897688,-88.05181033,-87.79270524,-87.79954428000001,-88.03656601,-88.15897463,-88.12518488000001,-89.19307234,-88.92855474,-89.01983548,-89.03618804,-90.98815661,-89.77021655,-91.48354428,-91.22262098,-92.11477549999999,-92.08751289999999,-92.10378608000001,-92.06716652999999,-92.09640907000001,-92.09340134999999,-92.11477336,-92.09782930999999,-92.12840274,-92.12442368000001,-88.25072815999999,-88.27391006000001,-87.57152744,-87.56186838000001,-87.5682932,-87.57386988,-87.56828729999999,-87.58212059,-87.56828962,-87.5899333,-87.56835828,-88.48780139,-88.48984282000001,-88.49047682,-88.50811720999999,-91.92523335,-89.81891091999999,-90.13459738,-89.90601651999999,-90.17261825999999,-90.16124549,-90.13057548,null,-88.24250901000001,-87.98813521,-87.98741925,-87.99457288000001,-87.98599742,-89.29885763,-89.30289936,-89.30051498,-89.29685680999999,-88.00848107,-87.95510101000001,-88.05168089999999,-88.00841006,-87.99218775999999,-88.02805057,-88.00819124,-88.00664783000001,-87.9686291,-88.02783692,-88.00825826000001,-87.9745992,-87.98577324,-88.01802451,-87.9788667,-88.04767532,-88.00725846,-88.04704622,-87.84976272999999,-87.84515664,-87.82291936999999,-87.81756814000001,-87.89238302,-87.91482319000001,-87.87121757,-87.94675721999999,-88.18235070999999,-87.93198742,-87.94877006999999,-87.92635679,-87.94829292999999,-87.92786151,-92.51761196,null,-90.18627103999999,-87.85379759999999,-87.94530671,-87.93017956,-87.93834524,-87.89094206999999,-87.89666993,-88.04642751999999,-88.95380175,-88.97907646,-88.93699859,-88.74854713000001,-88.74751786,-88.10355153,-88.10604288,-88.10164274,-89.65096655000001,-89.65180927,-89.69231461,-87.87495226,-87.88595696,-87.88748777000001,-87.8942261,-87.88745474,-87.88746097000001,-87.88254075,-89.74039792000001,-89.72744606000001,-89.77121902,-89.7478249,-89.74330802,-89.72711837999999,-89.73555425000001,-89.72521766,-87.88068708,-87.86082113000001,-87.8652156,-87.98041737,-87.96535716,-87.96337751,-87.96224101,-87.96757137,-87.8395723,-87.83575811,-87.85392982,-87.90240629,-87.8591687,-87.84906769,-88.75210857,-91.65137803,-91.50080462,-91.39884961,-91.3685165,-91.34906266,-91.39173301,-91.3909446,-89.42508754000001,-88.22472415999999,-87.92703557999999,-88.11247647,-88.11351283,-87.88492981,-89.98469758,-89.98464375,-89.99825441,-89.76289534,-89.79186489999999,-89.78961391999999,-89.78019924,-89.78074812,-89.81413193,-88.0708393,-88.09789342000001,-88.11823849,-88.10648974999999,-88.08999348,-90.70963042,-89.56969615,-89.60708402,null,-89.57284482999999,-89.61677731,-89.96399160999999,null,-89.84002861,-92.43793662,-92.36713309,-89.33470156,-87.86269496,-87.85411833000001,-87.87981143,-88.13381090999999,-88.10310919,-88.09916106,-88.14450085999999,-88.10950871999999,-88.55053588,-88.6868137,-88.69858796,-88.61579063000001,-88.90583549999999,-89.52212511,-89.52821777,-89.46580509,-89.46266831,-90.3891282,-90.3853362,-87.78268599,-87.79982191000001,-87.79437442,-87.79311202,-87.82724813999999,-87.78710748,-87.81268848000001,-87.84053058000001,-87.81604249,-87.82563625,-87.79893275000001,-87.78697013999999,-87.8474171,-87.83579804,-87.83868158,-87.79759371999999,-87.78701384999999,-87.78818130000001,-87.79903664,-87.84608160000001,-87.79287171999999,-87.78988191000001,-87.81968763,-87.80648005,-87.81488002,-87.78341346000001,-87.82353476999999,-87.82253521,-87.79254174,-87.78257354,-87.79770061000001,-87.79862696000001,-87.82385284999999,-87.79977232,-87.79276512,-87.81841562,-87.80399971,-87.7924151,-87.7919397,-87.82608338999999,-87.78487521,-87.80490904,-87.81661375,-87.7844954,-87.80003719,-87.79588713,-87.81193564,-87.80341592000001,-87.79484431,-87.80014575,-87.81217965,-87.81108394,-87.79410171000001,-87.91220377,-87.89478097999999,null,-89.06440476,-88.9748791,-89.02562545000001,-89.04562172,-89.02103617,-89.04502459,-89.00680296,-89.0331626,-88.97918882,-89.01483503999999,-89.03831307,-89.03139382000001,-89.02421312,-89.03695848,-89.03373242000001,-89.05014801,-89.0358238,-88.9969919,null,-88.41328277,-88.44210542,-89.80593943,-88.22475583000001,-88.2208445,-89.05818716,-88.99463851,-89.05528995,-89.0268591,-88.98202515,-88.98731493,-89.04677021000001,-89.02316227999999,-89.06790746,-89.05151394000001,-89.03771872999999,-88.98964743000001,-89.03793543,-89.01175107,-88.99030359,-89.01180059000001,-89.02021555,-89.05643946000001,-88.9525117,-89.01908289000001,-89.38214902999999,-89.38162930999999,-89.38562915,-89.37324149,-89.37952563,-89.38281256,-88.33414543000001,-88.33639659000001,-88.31730725,-89.73839837,-89.73082741,-89.73042758,-89.32875823000001,-89.67475149000001,-89.01546654000001,-88.58911143,-88.60607047000001,-88.10802792,-88.15119346,-88.11502453999999,-88.12669304000001,-88.17442263,-88.14699649000001,-87.81008135,-87.94911561000001,-87.84325414,-87.9839729,-88.2819422,-88.26626537999999,-88.3731413,-88.168783,-88.50893368,-89.41050491,-88.72839897999999,-88.72242899,-88.72809602,-88.27565973999999,-88.64996514000001,-88.60976211000001,-88.62560682,-88.666664,-88.64991827999999,-88.61224657,-89.25604883,-88.38529689000001,-88.35419978,-88.36916836,-88.40030849999999,-88.36509658,-88.37117302,-88.3788905,-92.05087754,-91.14898466,-88.19395953999999,-88.17570682,-88.18320662000001,-88.16132655,-88.18649447999999,-88.1760482,-88.18426647,-88.18549944,-88.19654310999999,-88.20936044,-88.18097691,-88.18561803999999,-88.22553338,-88.19603949,-88.39210498,-88.74716818,-87.99914851,-87.9885833,-87.98838671,-87.99153243000001,-87.99212914,-87.72889038,-87.71293475,-87.73486484999999,-87.73716749,-87.73642461,-87.7371459,-87.71773109,-87.71780375,-87.72780036,-87.73182439999999,-87.72318061,-87.7212351,-87.71960415,-87.71505413,-87.74182487,-87.72289585,-87.71462016,-87.71298372,-87.71480560000001,-87.71959909,-87.71465774000001,-87.71981735,-87.72284514,-87.71460380000001,-87.72263704,-87.72621272000001,-87.71576996,-87.75130965,-87.82110797,-87.81959101,-88.01420014999999,-88.02115607,-87.77453405999999,-89.14834507,-89.15165989,-89.15284449000001,null,-88.83952974,-88.82954177000001,-88.83113603,-88.8216585,-88.82964269,-88.83678462,-88.14583588000001,-88.10622513,-88.12636094,-88.11562266999999,-88.15804885999999,-88.14595986,-88.154562,-88.85088397,-88.84213185,-88.83623949,-88.84335466,-88.83715699,-87.89605315,-88.80707158,-88.81738458,-87.79836389,-87.77966308000001,-87.95022281999999,-87.97323722,-87.88161239,-89.47250488,-89.46964611,-89.46883294,-89.46235692,-89.45621186,-89.45956188,-89.46265416,-89.46043555,-87.80774525,-87.81231989,-87.8159368,-89.71134716,-88.60236311,-88.62456691,-88.30840818,-88.19978291,-88.23562637000001,-92.03320315000001,-91.393084,-91.49753029,-89.22170798000001,-90.41676456,-90.33590477,-89.23997378,-89.4875054,-91.90920838,-91.42911244,-89.36368238,-88.06711232000001,-87.24880219000001,-87.22983689,-87.88796369000001,-87.97146746,-88.02588685000001,-87.88357825,-87.91106159,-87.90782577,-88.02130853,-87.96717095,-87.94246865,-87.96280095,-87.93294124000001,-87.93704643,-87.93234728,-87.95798962000001,-87.93892627,-87.94563472999999,-87.91409480999999,-87.94578693,-87.97878106,-87.93782702999999,-87.89230584000001,-87.90960412,-87.93816207,-87.94637849,-87.95405979,-87.88303174000001,-87.91841563,-87.99183724,-87.94728087999999,-87.98315676999999,-87.97920281,-87.98668241,-87.96990302,-88.01350023000001,-87.95977707,-87.95169969,-88.00585590999999,-88.0055512,-88.03210593999999,-87.93091345000001,-87.91870093999999,-87.92112106,-87.93961188,-87.91268465,-87.93683708,-87.93716139999999,-87.95724091,-87.94875445,-87.99683622000001,-88.0054461,-88.00453056000001,-87.91902607,-87.94816235,-87.93578685,-87.93392206,-87.94684327,-87.90086021,-87.90338135,-87.96318501,-87.94779822,-87.93078975,-87.93724176000001,-87.94779822,-87.91123684,-88.00620435,-87.93123180000001,-87.92825025,-87.9334224,-87.89449488,-87.94835663000001,-87.91240941,-88.00764349000001,-87.94812949,-87.91138914,-87.93634281999999,-87.95007157000001,-88.00444351,-87.95763416,-87.91823552,-87.92002060999999,-87.94779088999999,-87.94780586,-87.94838564,-87.90712121,-87.92358744000001,-87.94224778,-87.89723506999999,-87.93850242000001,-87.94604113,-87.92827080000001,-87.94497427,-87.94127182,-88.01943599000001,-87.96757026,-87.94744166,-87.92439251,-87.93292589000001,-87.92858289999999,-87.98248864,-87.94929906,-87.95770760000001,-87.93299522,-87.94816323000001,-87.95348063,-87.93092873000001,-87.93813175,-88.0070034,-87.98822208,-87.96719539999999,-87.97620707,-87.97616674,-87.93049784999999,-87.90499466,-87.92339971,-87.95268636,-87.91606942,-88.00585349000001,-88.00672511,-87.94110821,-87.94759492,-87.91834681,-87.94740863,-87.91520885,-87.93548892,-87.95760086999999,-87.94196536,-87.96498438,-87.90360147,-87.93299467,-87.92341046999999,-87.92128008,-87.91852538000001,-87.90997844,-88.02530942,-87.98943558000001,-87.9292785,-87.95585612000001,-88.00555910999999,-87.96559911999999,-88.00586026000001,-87.90156233,-87.91883871,-87.94699575999999,-87.91413722,-87.92536481,-87.91258055999999,-87.89300186,-87.88628571,-87.98418483,-87.96709298,-88.043684,-87.97602772,-87.98192998,-87.92184562,-87.93926593,-87.93753506,-87.95109316,-87.94219432,-87.94698854000001,-87.89782126999999,-88.00562864,-87.95335624000001,-87.92027783,-88.00765228,-87.94502395000001,-87.95769023,-87.93044713,-87.90657547000001,-87.90330249,-87.94735879,-87.98601689,-87.93340522,-87.92853338,-87.97641591999999,-87.94769975,-88.02615505,-87.9070589,-87.93734726,-87.91916562,-87.93725524,-87.92716111,-87.96436094000001,-87.91069734,-87.97976303,-87.97355924,-87.98794553,-87.90770707,-87.9484585,-87.92516510999999,-87.93053436,-87.92496247,-87.95105467,-87.94762074,-87.88788832,-87.8837271,-87.88766204,-87.96034057,-88.00710284,-87.96777662,-87.88289664,-87.94017569,-87.90932606,-87.91896801,-87.99061799,-87.97763466000001,-87.98712953,-87.94660491,-87.92611135999999,-87.95769017000001,-87.94770791000001,-87.92692159000001,-87.92137819,-87.92737784000001,-87.94830603,-87.88366384,-87.92555188999999,-87.92861936,-87.94499991000001,-87.93306538,-87.96806694,-88.00707075,-87.89237049,-87.95771892,-87.92720577,-87.95293454999999,-87.95695636000001,-87.98646003,-88.02582695,-88.00303626,-88.00341174,-88.0252547,-87.91439149999999,-87.9575135,-87.98266652,-87.97992837,-87.94646668999999,-87.90527911,-87.94867669999999,-87.95132683,-87.91121029999999,-87.96275943000001,-87.9674662,-87.95534656,-88.00728153999999,-87.94758308999999,-87.89979270000001,-87.95873625,-87.94833706999999,-87.93840600999999,-87.96612603,-87.91167541999999,-87.91070571,-87.90330589,-87.97344421,-87.97752606,-87.94769178,-87.97034854,-87.94769934999999,-87.98302524,-87.94766847,-87.99981701999999,-87.97161091,-88.00403527,-87.91898041,-87.90752523,-87.94699485,-87.9168257,-87.99706537,-87.96352521,-87.93847347000001,-88.01843372,-88.00484607,-88.00208977,-87.95038484,-87.91903598,-87.94086906,-87.95607913000001,-87.93808737000001,-87.91871223,-87.93484947,-87.9215533,-87.90509412999999,-87.92765765,-87.98060198,-87.96352388,-87.92607262,-87.9913164,-87.97732556,-87.9056945,-87.91385647,-88.02536135,-88.04586214,-87.92800256,-87.95740942,-87.95978927,-87.9418802,-87.92835377,-87.88428102,-87.90099779000001,-88.03296821000001,-88.0059012,-88.04037185999999,-87.91442624,-87.89151405,-88.00147434,-87.95988491999999,-87.93113959,-87.94281906000001,-87.92057091,-87.90037848,-87.93451356999999,-87.95247033,-87.92708474,-87.96007129,-87.942482,-87.94745793,-87.96088339000001,-87.98952312,-87.93852450999999,-88.01293802000001,-87.98732209000001,-87.95077639,-87.89103866000001,-87.99195333999999,-90.07389587999999,-89.04999637,-89.40275058,-87.95238562,-87.95396765,-88.41513012,-90.30260233,-92.10406191,-92.12137337999999,-91.25844533999999,-87.88142477,-87.83844916,-88.58195870999999,-88.1334098,-90.5425877,-89.45706036,-87.93048749,-89.5986784,-87.8398021,-87.91509325,-87.85022218,-88.92266075000001,-89.00435791,-88.01725428,-87.93416935,-87.93433127,-87.93405504,-87.93406404,-87.93716560999999,-87.93413328,-87.92604737000001,-87.93295062,-87.93416526999999,-87.93580668,-87.94804322,-87.9211232,-87.92994143,-87.92870139999999,-87.90729528999999,-87.97172974,-88.04017259,-88.04490164000001,-87.97387843999999,-87.91445528,-88.02859875,-87.95404271,-87.96236806,-87.96364477,-87.95725347,-87.91893388,-87.97100465,-88.0306336,-87.94574163999999,-87.89505167,-87.92467075,-87.98150859,-87.98150859,-87.94606939000001,-87.95690620000001,-87.94740633000001,-87.94743357999999,-87.94060132,-87.95770568,-87.96751913999999,-87.9785662,-87.96729753,-87.94701080999999,-87.96757177000001,-87.90760693999999,-87.92137828,-88.01070013,-87.95608587,-87.9576622,-87.9577213,-87.92252173999999,-87.93192565,-87.88691784,-87.94072054999999,-88.03216847,-87.9873046,-87.94663427,-87.96959013999999,-87.89510825000001,-87.89421283999999,-87.92879536,-87.94724581,-87.91487082,-87.92612603000001,-88.02593125999999,-87.91492574,-87.89811935,-87.90538148,-87.95746475,-87.94750217000001,-88.03780985,-87.89038136000001,-87.88771379000001,-87.91884208,-87.90411979,-87.91835448,-87.91837537000001,-89.39736521,-89.39348131,-89.38583507,-89.37638776,-89.35929897,-89.39484845,-89.38981905,-89.32493252,-89.36377131,-89.35165680999999,-89.36791854000001,-89.37524772,-89.38459862000001,-89.39253787,-89.40068352,-89.40408979,-89.37319786,-89.51130474999999,-89.51736425,-89.30007603,-89.30690307,-89.38597674,-89.30036002999999,-89.30306571,-89.32959135999999,-89.40736839,-89.40080974999999,-89.4851359,-89.29470726,-89.28611872,-89.41391016,-89.30991152,-89.49662975,-89.34153895999999,-89.36029842000001,null,-89.37527136,-89.40461246,-89.40569517,null,-89.40739744,-89.39746091000001,-89.39018067000001,-89.36986337,-89.48004922,-89.41626934999999,-89.45115837,-89.55280403,-89.2990109,-89.39444988,-89.34543712,-89.35530706,-89.5109085,-89.40074414,-89.35943759,-89.35942391,-89.37328448,-89.38069938,-89.4440144,-89.34643269999999,-89.40264057,-89.34409968999999,-89.49690747,-89.40269834,-89.36390376,-89.38688206,-89.30118432,-89.35537263000001,-89.37409914,-89.37956563,-89.36000862,-89.39902763000001,-89.36036313,-89.35104864,-89.37348338,-89.33754771,-89.35956237000001,-89.50263409,-89.50274422,-89.3155537,-89.34645455,-89.36215617000001,-89.3957316,-89.31862183,-89.35460147000001,-89.35789871,-89.37137362,-89.49892398999999,-89.41288136,-89.40072558999999,-89.40074967,-89.41290947,-89.31663859,-89.32153094,-89.31947294,-89.40406967,-89.38094390000001,-89.32737408,-89.37369434999999,-89.39255780000001,-89.39110672,-89.50932364000001,-89.3147814,-89.38197847000001,-89.40992534,-89.39314983,-89.40900409,-89.45610689,-89.45689145,-89.50271693000001,-89.37547357,-89.39375504,-89.40737708,-89.31304471,-89.33150044,-89.37096515,-89.36209611,-89.34911031999999,-89.39578518,-89.36029901000001,-89.36696704000001,-89.40063596,-89.35350034,-89.34949188,-89.50289798,-89.40092464999999,-89.3660702,-89.3847044,-89.39583242,-89.36558645,-89.42880900999999,-89.45770494999999,-89.45963721,-89.44366899000001,-89.45117555,-89.37411376999999,-89.49892500999999,-89.38227503,-89.31821938,-89.44364738,-89.36195413999999,-89.37900627,-89.37543540999999,-89.34717796,-89.38012605999999,-89.38961826000001,-89.38580483,-89.3727502,-89.32144178999999,null,-89.33925544,-89.34942547,-89.28948446,-89.31621259000001,-89.52559986,-89.40065325,-89.43523901,-89.4006593,-89.45137303,-89.43788394000001,-89.51799887,-89.58822859,-89.23158436999999,null,-89.23300944,-89.21322917000001,-89.22463507000001,-89.24823287,-89.26777928,-89.22461619000001,-89.24313155999999,-89.22497428,-88.04887626999999,-88.01990184,-87.98324160999999,-87.96989752,-87.96770513,-88.01369714,-88.01748005,-88.0430748,-87.95808716000001,-88.03775998,-87.99372547999999,-88.07020159,-87.96790147999999,-88.08480401,-87.96773795,-88.06402543,-88.00007882,-87.98793181000001,-87.96796933,-88.00029417,-88.0241886,-87.99061497,-87.99374087,-88.0165897,-88.00481468,-87.97284728,-87.99447388999999,-88.01005748,-87.94797595,-88.06227607,-88.01082864,-88.06888721,-87.99786415,-87.94847847,-88.06164253999999,-87.9660599,-88.07865341999999,-88.00275039,-88.05771638,-88.00910648,-91.10927744,-91.09930428,-87.88960118999999,-87.91883586,-87.92874624,-87.94460429,-87.91449634,-87.91101887000001,-87.97620006,-87.97322232,-87.89930975999999,-87.9183747,-87.92126722,-87.91039360000001,-87.89812156000001,-87.90729987,-87.89946707999999,-87.93558575,-87.92268558000001,-87.91182221,-87.94362058999999,-87.94566897999999,-87.96102304,-87.97833763,-87.95738856,-87.98271124,-87.93636128999999,-87.94862637999999,-87.95260619,-88.03012629,-87.97581637,-87.94643796,-88.01578691,-88.03481425,-88.04421043000001,-87.99581605,-87.98628333000001,-87.90522294,-87.93870477999999,-87.94730647,-87.90955536,-87.91414697,-87.93824351000001,-87.93420397,-87.94717738,-87.91982967,-87.93211638,-87.94738611,-87.94902749000001,-87.93930994999999,-87.91843623,-87.92922129999999,-87.89430004,-87.94875513,-87.94807905,-87.92875100000001,-87.90982574,-87.95748525,-87.99127442,-88.00136709,-87.89078954,-87.88365725,-87.97855514,-87.9745716,-88.47317685,-88.44816160000001,-88.47306082999999,-88.43894299999999,-88.44341543,-88.43178349999999,-88.45963026,-88.43361084,-88.42190975,-88.44687175,-88.44449049000001,-88.43695332999999,-88.45441709000001,-88.46685371,-88.47960986,-88.44304223,-88.44742452,-88.44693244,-88.45241101000001,-88.4651556,-88.44454198,-88.45336247,-88.44714810000001,-88.47306456,-88.44874221000001,-88.46274434999999,-88.43144384999999,-88.46202925999999,-88.43901477999999,-88.47305215999999,-88.46314655,-88.42626708,-88.44710091,-88.44860319,-88.47969358,-88.32318184,-91.16552604,-91.23978667,-91.24671023000001,-91.24093752,-91.25514576,-91.23900891,null,-91.24361211,-91.24901117,-91.2424044,-91.24829926,-91.25130483,-91.23902636,-91.23589782000001,-91.21981135,-91.23934604,-91.21975602000001,-91.21379365,-91.24816724999999,-91.22863556,-91.24672941,-91.24889037,-91.2525893,-91.24829467000001,-91.24951394999999,-91.2389498,-91.24873047,-91.25001468000001,-91.25345057,-91.24819091000001,-91.25362754,-91.24806725000001,-91.23904554000001,-91.250038,-91.24901128,-91.23941416,-91.24829393,-91.21989009000001,-91.21983828,-91.23890400000001,-91.24795795999999,-91.20458284,-91.24314725000001,-87.65965325000001,-87.99581917,-87.66497412,-88.00894921,-87.91109465,null,-88.11075812,-88.03072476,-88.04260124,-87.84572127,-88.09432943,-87.95267987,-87.83054369,-88.11948547999999,-88.05120277,-88.00966751,-88.04043466,-88.15538143000001,-88.09966858,-88.08960257,-88.08462279,-88.06714937,-88.10717345,-88.0376428,-88.09535418999999,-88.03877992,-88.02396982,-87.99558507,-88.09062063,-88.06559206,-88.06777783,-88.07359756,-88.05411749,-88.05378517,-88.07081786000001,-88.07554308,-88.06682922,null,null,-88.05922325,null,-88.06045979,-88.06040303,-88.06046146,-88.08422441,null,-90.48789934,-90.48029013999999,-90.47832491,-90.47069481,-90.49307056000001,-91.14376661999999,-88.33047649,null,-90.81940456,-90.82068547,-90.82075429,-90.80090952,-89.02676197,-89.03557854,-88.48490510000001,-90.88935162,-90.88663554999999,-88.98829562,-89.50589650000001,-89.50173483,-89.49343827,-89.50405418,-89.53481404999999,-89.52503856,-89.51215818999999,-89.47971679,-89.51463043,-89.50665852,-89.5054073,-89.50228122,-89.45885393,-89.47521011000001,-89.46735911,-89.47660654000001,-89.41266029000001,-89.46002639,-89.4681858,-89.47205211000001,-89.41833552999999,-89.4218484,-89.47065413999999,-87.91573021000001,-87.89017490000001,-88.05191978000001,-88.00954587,-88.00004625,-87.94979072,-87.98059978000001,-87.99919799,-88.0595557,-88.01165128,-87.95887788,-88.12266919,-88.12866141000001,-88.11149254,-88.11574333,-88.06482287,-88.10669077,-88.1157011,-89.35407325,-89.35423596,-89.33603838000001,-88.00740884,-88.04787195999999,-88.04748979999999,-88.04798697,-87.99925192000001,-88.03760817,-87.99747846,-88.01077256000001,-88.04740463,-88.02780892,-88.03234617,-88.04791478999999,-88.02351856,-88.04784814,-88.04730986,-87.99748577,-88.05820045,-88.0415907,-88.04754523,-88.05744405,-88.05306586,-88.04616537,-88.05987158000001,-88.02217932000001,-87.99350697,-88.04733855000001,-88.04615935,-87.99028762,-88.05213809,-88.04814890999999,-88.04991366,-88.05684703,-88.00369462,-88.01061863,-88.04699621,-88.04695586,-88.00005867,-88.04675696,-88.00892909,-88.04692648,-88.0420443,-88.00869982,-88.00861601,-88.00139281,-87.98819472,-88.05833945000001,-88.00746392000001,-87.99005040999999,-88.00386339000001,-88.06726224000001,-88.04625602,-88.00828082,-88.04137717,-88.04684736,-87.98747661,-87.98734159,-88.00721767,-88.00005037,-87.98936875,-88.02775054,-87.99787444,-88.02596205,-88.04658929999999,-88.01709123000001,-88.04277315,-89.81844961,-89.81891503999999,-89.81743362,-89.81214941,-91.44600681999999,-91.44285877999999,-91.46056926,-91.46668628,-91.44790902,-89.63984648,-89.64101382,-89.64212272,-89.72594836,-89.72651492999999,-89.58883822,-89.54933054999999,-89.57496163,-89.56444542,-89.56617476,-89.57468507999999,-88.52191376,-88.53539214,-88.5437226,-88.54118025,-89.63527021,-90.23776552,-90.30013929,-88.45536412,-88.49958418999999,-88.45324049,-88.46016595,-88.46319978,-88.46721668000001,-88.49024983,-88.49265723000001,-88.46672758,-88.46170402,-88.49403642,-88.42442164000001,-88.44313154,-88.41561627999999,-88.44613295000001,-88.44596301,-88.42354641,-88.44628562,-88.44604228999999,-88.42362317,-88.13672880999999,-88.13416915000001,-88.16750523,-88.74201716,-88.50790557000001,-88.50381264000001,-88.60290778,-88.57863328000001,-88.62286593,-88.56783057,-88.4157316,-88.37497501999999,-88.40261751,-88.42576253,-88.40378186,-88.41544361,-88.40412712,-88.35447162,null,-88.40352338,-88.4157754,-88.38000217,-88.35849804999999,-88.42991263,-88.37457066,-88.40413387,-88.36891437,-88.35438455000001,-88.41916709,-88.38014328,-88.39822184000001,-88.40075739,-88.401833,-88.39556177,-88.41741725999999,null,-88.38680384,-88.4129812,-88.7211061,-88.25722405,-88.26342950999999,-88.40456781,-88.21478571,-88.29167706,-88.10252081,-91.51454303,-91.45457868,-91.53005237000001,-91.49483275999999,-91.47292473,-91.58076647999999,-91.51281929,-91.47993646,-91.45801665,-91.46489781,-91.50357259,-91.4783372,-91.49910271,-91.51904695,-91.50901643,-91.49615472000001,-91.46973560000001,-91.46313918,-91.47926277000001,-91.50992429,-91.53235938,-91.49500119,-91.45821441,-91.49802371,-91.54031999,-91.42754175,-91.53965958000001,-89.63869712,-89.60819819,-88.60913579,-88.60389424,-88.60914622,-88.58081385,null,null,-88.24266104,-87.5979217,-87.63621284,-87.63330492,-87.62965486,-87.63143227,-87.62037737,-87.64665026999999,-89.81702425,-89.81325305999999,-89.81443016999999,-89.80570251,-89.81546144000001,-89.81213126,-89.83231879,-89.83973739,-89.82974093999999,-89.84474167,-89.77222956999999,-89.77440565000001,-89.79590211,-89.77048671,-89.77659183,-89.78443978,-88.83357585,-88.83200771999999,-87.98236919,-87.91659294999999,-87.99147805,-87.92435359,-87.99567,-87.92410589000001,-87.96313772000001,-88.01736493,-87.98736965000001,-87.70003088,-87.65878321,-87.69785297999999,-87.69725815,-87.65928637,-87.68504509,-87.67248610999999,-87.62797415999999,-87.66199458,-87.70048731,-87.68523716,-87.66086283,-87.65773697,-87.66031859,-87.67054111,-87.67707660000001,-87.66167624000001,-87.69848435,-87.67473991,-88.25229084,-88.22873961000001,-88.22902766,-88.22172418,-88.22712067000001,-88.22566908,-88.22117301999999,-88.23508479,-88.22147147,-88.19726033000001,-88.22569287,-88.22662299,-88.17795169,-88.22676034,-88.25448194000001,-88.23404097,-88.28562878,-88.23458372,-88.23179266,-88.23153981,-88.22960270999999,-88.2307162,-88.22581869,-88.23571403,-88.15791661999999,-88.23819595000001,-88.2271758,-88.2435667,-88.44337908,-88.3135097,-88.40299998,-88.38804093,-88.37064374000001,-88.24396341000001,-88.30709299,-88.28940251,null,-87.92681197,-88.41211896999999,-88.49590179,-88.46201668,-88.48540199,null,-91.23527104,-88.34507225,-88.32442995,-88.32263276,-88.31635961000001,-91.60215218,-89.12923827,-92.7161426,-92.79065699,-92.66114662,null,-92.72141139,-92.69827625000001,-92.72154535999999,null,-91.10050007,-91.73943441,-91.73345447,-91.73665698000001,-91.74824212999999,-91.73336168,-92.6127331,-92.61344634,-92.62670328999999,-92.62176954,-92.62756807,-92.62586541,-92.62378332,-92.62939724,-92.62178217,-91.92968272,null,-91.91954131,-91.93101107,-91.89870701,-91.92769769,-87.1532485,-87.12177404000001,-87.49896316,-87.36676472000001,-87.37602244,-89.63692654,-89.65594611,-89.66634823,-89.62428727,-89.62425232,-89.64036092000001,-89.62128989,-89.61914534,-89.62626880000001,null,-89.63930803,-89.61518375999999,-89.63692619,-89.63477661,-89.64045776,-89.61735251,-89.63915531000001,-89.64784571,-89.65456890999999,-89.61811829,-89.16000307,-91.26744399,-91.26201797,-91.09694625,-91.09122395,-91.2615701,-88.93235801,-88.84270873,-88.86757965,-88.58727023,-88.73824767000001,-88.95064007000001,-89.43076259,-89.41163913,-89.40267779,-89.41590524,-88.41523528,-88.345141,-88.52955267,-88.31200586999999,-88.19714103,-90.50457023,-90.50938879,null,-88.46833208,-88.41309982,-88.46173382000001,-88.46111105999999,-88.47603482,-88.44769881000001,-87.97046509,-87.96646385,-87.9675503,-87.96017163,-89.37851967,-89.40395503000001,-89.40863778000001,-89.40014524,-88.28002348,-88.27379134,-88.26719285,-88.54714933,-88.55625219,-88.56447163,-88.54276554,-88.57820558,-88.57902641,-88.57853377000001,-88.56240399000001,-88.57560791,-88.58501387,-88.57265524,-88.54241754,-88.53756224,-88.58140277,-88.55614079999999,-88.58017421,-88.59445372,-88.57140746,-88.54243931000001,-88.54255368,-88.56731474999999,-88.58176028,-88.53753897999999,-88.58181193999999,-88.54256486,-88.59174387,-88.54134587,-88.58264269999999,-88.54848393,-88.5574652,-88.53737963,-88.57204389,-88.54258894,-88.57838924000001,-88.56865471,-89.43375618,-89.44320392,-89.45318197,-89.43374686999999,-89.44367273,-88.62571333,-88.53279689,-89.16837221,-92.70421992,-92.69695855000001,null,-87.90417945,-87.89351899,-87.89979071,-87.90366324999999,-87.90711816,-87.90898663,-87.90689728,-90.53804974000001,-90.32460213,-90.40167739,-90.72010019,-87.91179149,-88.76198527,null,-89.27453997000001,-89.30137782,-88.51117074,-87.96470290000001,-87.96470091,-87.95197795999999,-87.95272993,-87.95043634,-87.94661975,-89.76659497,-91.47283987,-90.22337199,-90.33394970000001,-87.84191353999999,-87.92658111999999,-87.85889973,-87.83558284999999,-87.84197815,-87.82827266,-87.81887838,-87.84759754,-87.84562441999999,-87.89499076,-87.85429558,-87.84150814,-87.84439879,-87.88028168,-87.82773607999999,-87.85019581,-87.84014688000001,-87.81827139000001,-87.89303397,-87.83075873,-87.83203304,-87.9635814,-87.8459003,-87.83217671,-87.8356117,-87.82309831000001,-87.83534575,-87.83678997,-87.83564957,-87.87355744,-87.83336816000001,-87.85512684,-87.88659819,-87.8238133,-87.83355705,-87.82159926,-87.84552017999999,-87.84550018,-87.82309004,-87.82298634,-87.82134859,-87.83565858999999,-87.82795673,-87.85880074000001,-87.82271454000001,-87.82778546999999,-87.82700444,-87.85759811,-87.95002981,-87.83079178,-89.68446686999999,-89.65198477,-89.61596387,-89.65245754,-89.63939433,-88.48360101,-87.9005872,-89.54531883,-89.53839168,-87.96576739,-88.05701182999999,-87.95681082,-87.97263131,-88.00161077999999,-89.155415,-89.01743885,-89.21184508,-89.02787497,-91.27310962999999,-91.01372065,-89.79709244,-90.03906919000001,-90.18794603000001,-91.0798411,-91.19553123,-91.36496377,-92.10379594,-92.10413334,-92.09532194000001,-92.10554028,-92.08761991,-92.11579175,-92.06469343000001,-92.09409078,-92.10728833,-92.09782909,-90.80031697,-88.24858227999999,-87.55418641,-87.56987506,-87.55292104,-87.57969172999999,-87.56662876,-87.55995492,-88.59708562,-88.47254386,-88.49452737999999,-88.47065662999999,-88.47093283,-88.47481718,-88.48295446,-88.49802015,-88.48535102,-91.90505443000001,-90.17552062999999,null,null,-90.17016199,-90.17986575,-90.15620358,-90.18532687,-90.15668185,-88.22680662,-87.9861987,-87.98721801000001,-87.98910637,-87.98965819,-87.98815214,-89.30247402000001,-92.10441444999999,-87.96855795,-88.0089371,-88.00813813000001,-87.98836978,-87.95755849,-88.00799956,-87.97899274,null,-88.04805601,-87.96973419,-88.04735728,-88.00816567,-88.04577190000001,-88.06917688,-88.00634225,-88.04690325999999,null,-87.84412268,-87.86890969,-87.92739458,-87.95122557000001,-87.89170067000001,-88.24259111000001,-88.15139854,-89.17233969999999,-88.91380719999999,-87.93036827,-87.91410489,-87.91671771,-87.91297333,-87.94751405,-87.91378539999999,-92.53123604,-92.53759732,-92.51732927,-87.91810608,-87.85277062999999,-87.94896785,-87.91208777,-87.87285419,-87.87064995999999,-87.94815765,-88.05113765999999,-88.95686111000001,-88.95687234,-88.95169215999999,-88.75235424,-88.72481929999999,-88.74123745,-88.72488648,-88.72980891,-88.73005642,-88.10666372999999,-88.08214857999999,-88.10503319999999,-89.68311678000001,-89.69623147,-88.62185678,-87.89376682,-87.89242591,-87.89428466,-87.88516408,-87.87281947,-87.88511525,-89.75164644,-89.73385165000001,-89.77124105999999,-89.70971462999999,-87.87228284,-87.85072683999999,-87.85706277,-87.86497507,-87.85490006000001,-87.85881963999999,-87.85168412,-87.87136588,-87.86746798,-87.87187532999999,-87.96705029,-87.96939854,-87.97370074,-87.97043456,-87.96754935,-87.96695278999999,-87.97721079,-87.97285048000001,-87.86297326,-87.79369681999999,-87.87027575,-87.84098326,-87.86769524,-87.84631686,-87.80621501,-87.91276037,-87.7924895,-87.83569476,-87.86303497,-90.27037666,-89.85000435000001,-90.07656452000001,-90.07222278,-88.75201559,null,-91.38679123,-91.39522626,-91.39888354999999,-91.39339696,-91.41025032,null,-88.32228639,-88.04564026,-87.88397005,null,-92.36013570999999,-89.55909032,-89.49012214,-92.79471835,-89.79199487,-89.79356292999999,-89.78592584,-89.79640802,-89.79215447999999,-89.78874757,-89.79109793000001,-89.81382124,-89.79228428,-89.54087341,-88.06761263,-88.08936584999999,-88.10775344,-88.101777,-88.40449316,-88.39967557,-88.40393066,-91.46338129,-91.26890972,-88.34992197,-87.88654028000001,-87.87715862,-87.89401252,-90.73383543999999,-90.88878149999999,-90.50931074,-90.69293552000001,-90.73605498000001,-92.16345912,-89.58269066,-89.55351416000001,-89.57295112,-89.6112389,-89.5913853,-89.60893562,-89.58872642,-92.35738506,-92.5544689,-90.59509122999999,-89.19728425,-89.20865670000001,-89.36100064999999,-89.22902501999999,-89.21780115,-89.21046162,-89.23668775,-87.85920616,-87.87027209,-87.87011289,-87.86940769,-87.87984157,-87.87363413,-87.86004824,-87.86004413000001,-87.85961482,-88.10380917000001,-88.10612455,-88.13277655,-88.17575955,-88.96173684,-88.83543791,-88.7899247,-88.83479645,-89.53388534,-89.53018072,-89.52409428999999,-89.55900914999999,-89.56355476,-89.53608745,-89.44651777,-89.45384315,-89.44688272,-89.45036567,-89.46175660999999,-90.385341,-89.89053629999999,-87.80770616,-87.78323159,-87.79200599000001,-87.8197703,-87.78398799,-87.81619103,-87.7836389,-87.81735424999999,-87.79816836000001,-87.78235261,-87.79173341000001,-87.78640307000001,-87.78473166000001,null,-87.8046037,-87.80091251,-87.81610465,-87.80253204,-87.81613175,-87.81619692,-87.8001922,-87.79478115000001,-87.78689518,null,-87.81332503,null,-87.82604123,-87.79203364,-87.82603955,-87.79197495,-87.78691438,-87.80175377,-87.78449498000001,-87.80387872,-87.80101326,-87.79595198,-87.78355797,-87.82603648,-87.78819957,-87.84998597000001,-87.81063474,-87.79294529000001,-87.78696246,-87.79164237000001,-87.79537972999999,-87.78140487,-87.79868931999999,-87.78820361,-87.82507982,-87.81263804,-87.81629332,-87.79910862,-87.7865469,-87.81270397,-87.91500033,-87.91105655,-88.97476094,-89.01195156,-89.03600604,-88.98901395999999,-88.97406865000001,-89.03399374,-89.04033226999999,-89.02138782999999,-88.99863302999999,-88.98105205,-88.97323971,-89.03695755,-89.03588352,-89.02466745,-89.02355860999999,-89.01092414,-88.98769451,-88.98394691,-89.03105067,-89.03162881,-89.04562374,-89.03186207,-89.03582071,-89.03807831,-89.02324656,-89.03625264999999,-89.02694327,-89.01892952999999,-88.41406411,-88.43343188,-89.85869502,null,-89.03362211,-89.04175854,-88.98413186000001,-89.02676233,-89.03792502,-89.05149414,-89.04104402999999,-88.98376795999999,-89.01547812,-88.98362547000001,-89.01160545,-89.02009052,-89.03361145,-88.99052854999999,-89.02408555,-89.01165768,-89.02402434,-89.02515946,-89.06187778,-89.04907459,-89.03196181,-89.0117527,-89.0403067,-89.02549697000001,-89.03256559,-89.06940792,-89.06450611,-88.93815303,-88.34990347,-88.33876055,-89.37783625,-89.62747441,-89.27949184000001,-89.52375043000001,-89.39738005,-88.60034794000001,-88.60043302,-88.09936853000001,-88.14590954000001,-88.07872306,-88.13918977,-87.8125579,-87.91358354,-88.26061335,-88.26487729999999,-88.26692752,-88.25206752,-88.28213964,-91.89694799999999,-88.47031007,-88.47757110000001,-88.58257232,null,-89.29575987,-89.23147774,-88.72414083,-88.71897375,-88.69638455,-88.72581412,-88.71659601,-88.73169784,-88.72047575000001,-88.71222493,-90.33661764999999,-88.65416942,-88.6359229,-88.64534183000001,-88.61111653,-91.31558581,null,-87.88752271,null,-88.36042371000001,-88.39220761999999,-88.54429157,-88.13754566,-88.15227015000001,-91.69108562,-88.14209975999999,-88.21169571999999,-88.17869847999999,-88.17608047,-88.180713,-88.18552534,-88.2062239,-88.18101712000001,-88.20142445,-88.20101515,-88.17165343000001,-88.40601475,-88.40592977999999,-88.74007847999999,-88.73284491,-88.74706015,-87.97913636,-87.99711762,-88.01726504,-88.0015346,-87.99538655000001,-87.7122328,-87.72781852999999,-87.72637975000001,-87.70440075,-87.75030362,-87.70446262,-87.72541328,-87.72125574,-87.71795046,-87.71297517000001,-87.70785158,-87.72833138999999,-87.72450941,-87.71280851,-87.73453849000001,-87.71626163000001,-87.71961223,-87.72295215,-87.73890487,-87.71626291,-87.71442963,-87.72302804,-87.72449639,-87.71455564,-87.72295066,-87.76284797,-88.01604216,-87.76939283999999,-88.1310474,-87.76814288999999,-89.15527247999999,-89.15219951,-89.15363351000001,-88.83423652,-88.82465119,-88.83889646999999,-88.83451079,-88.10578941999999,-88.0709556,-88.07167711,-88.08644013,-88.11445338999999,-88.13680334,-88.14602403000001,-88.12690296,-88.12843066000001,-88.86273499000001,-88.84133933,-88.84333955,-88.8500528,-88.84330027,-88.83741576,-87.8926965,-88.81748527000001,-88.80089832,-90.33169614000001,-90.33159725,-90.32972083999999,-87.94417349,-87.96828266,-87.96109545,-87.87337749,-89.44671137,-89.45953819,-89.46794276999999,-89.47110696,-89.47069553,-87.94474549,-87.84139141999999,-87.82006320000001,-88.54941359999999,-88.20077285000001,-88.21423434,-88.20789619999999,-91.18075016,-91.10981,-90.82783014,-88.2476953,-89.77298827,-90.53295752,-89.69750466000001,-89.69970875,-91.87472176,-91.40759949,-87.85934039,-87.92845708999999,-87.94803673,-87.94767615000001,-87.95752091999999,-87.97736759,-87.91370537,-87.92215227,-88.03972586,-87.90862475,-87.92921801999999,-87.95774517,-87.94223869,-87.9260709,-87.89575141,-87.92817972,-87.94848772,-88.0446676,-88.02442275999999,-88.00855494,-87.94533823,-87.90887592,-87.95054272,-87.95257976000001,-87.94639873,-87.91090164000001,-87.88796787,-87.8882579,-87.91078247,-87.92005455,-87.91732656000001,-87.95226133,-87.92300392,-87.94345164000001,-87.93769637,-87.94846738,-87.97383687999999,-88.00926387,-87.94655197,-87.93970413,-87.92818343,-87.92846735000001,-87.92846943000001,-87.92395017,-87.97274191,-87.98204219,-87.96052398,-87.93430136000001,-87.94761203,-87.93023461,-87.95212058,-87.94768961,-87.95174448,-87.92452432,-87.98107887,-87.97004702,-87.95746370000001,-87.89786384,-87.94776945,-87.95738168,-87.97164318,-87.95736196999999,-87.94963995000001,-87.98644937,-87.91847024,-87.99337955,-87.9669614,-87.93545309,-87.91612275999999,-87.94855516,-88.00587569,-87.98612073,-87.91822315,-87.9503313,-87.90378031,-87.93310630000001,-87.92540396,-87.93675197,-87.94798806,-87.92541592000001,-87.9140671,-87.97723732,-88.0167227,-87.96348017,-87.95766833,-88.00780313999999,-87.94789591,-87.97702382999999,-87.9485092,-87.98489361,-87.92334231,-87.95404164,-87.92134942,-87.94847799999999,-87.93296072,-87.93730352,-87.93072487000001,-87.89318813,-87.9041489,-87.91132186999999,-87.91573716000001,-87.91117761,-87.92692117,-87.98188012,-87.91853806,-87.8923578,-87.97123154000001,-87.89490794,-88.02255825,-87.94772140000001,-87.95682682,-87.92928046,-87.92961108999999,-87.95299806,-87.91934981,-87.91744464,-87.95808263000001,-88.01424896,-87.95760163999999,-87.95766909,-87.91445793,-87.95263421999999,-87.93530527999999,-88.01403534000001,-88.0415112,-87.99852153,-87.88920788999999,-87.91935466,-87.91209679000001,-87.94804913,-88.02763682,-87.91729755,-87.91836244,-87.94985167999999,-87.91396817,-87.91454111,-87.9716794,-87.96581301000001,-87.88367886,-87.94680176,-88.00620409,-87.96736136,-87.96407748999999,-87.97709648999999,-87.95826397,-87.95567059,-87.95847022,-88.01555086,-87.98965855,-87.94265138,-87.93568415,-87.94838999,-87.99236286999999,-87.92879453,-87.9041495,-88.02424314,-88.00952922,-87.97720339999999,-87.98742592000001,-87.91838959,-87.91452762,-87.94710009000001,-87.9467514,-87.98151126,-88.03165317,-87.99790287,-87.9293033,-87.94918709,-87.96772626000001,-87.91241451,-87.92006204,-87.92601992,-87.94770174999999,-87.97493672,-87.9227211,-87.90814729,-87.90894802,-87.88493518,-87.9110299,-87.93272763,-87.89927496999999,-87.88783866999999,-87.91324276,-87.94829827,-87.91494879,-87.95752048,-87.98708161,-87.94069211,-87.93954551,-87.94240802,-87.97482379,-87.98684986000001,-88.00555398,-87.92877609999999,-87.92489418,-87.88786105,-87.90759008000001,-87.89930849,-87.91112496,-87.90757175,-87.88806552,-87.94845119,-87.95980286,-88.03048846999999,-87.96049996000001,-87.91401972,-87.91176285,-87.90225359999999,-87.89801787,-87.90876749,-87.9045302,-87.90333788,-87.9085407,-87.91113608000001,-87.89120887,-87.89545346,-87.8973893,-87.9507452,-88.03255383,-87.95246911,-88.01740431,-88.01093206,-87.90706245,-87.91123731,-87.99708277000001,-87.94132161,-87.94742828,-87.95072593,-87.95746527999999,-87.88773791,-87.95768115,-87.92613209,-87.97594614,-87.93913496,-87.99112092999999,-87.98414606999999,-87.99082951,-87.88792229000001,-88.01260324,-87.95743478999999,-87.96708581,-87.9832854,-87.98305065,-87.92335509,-87.91926494000001,-87.94200724,-87.94777254,-87.93643518,-87.9542027,-87.93336275,-87.89247487999999,-88.04190431000001,-88.02513456,-88.0527953,-87.94772634,-87.96090983000001,-87.98194487000001,-87.90351629,-87.91114852,-87.95746668,-87.95626213,-87.95737975999999,-87.95988504,-87.8977675,-87.94699762,-87.95314612,-87.98430904,-87.98517117,-87.94871666,-87.96307286,-87.94232396,-87.92680448,-87.94728922,-87.94779314,-87.9002574,-87.94808020000001,-87.93540451,-87.93187512999999,-87.95774299,-88.0453466,-87.96624476,-87.91075336,-87.90388446999999,-87.92394745999999,-87.9322646,-87.93309153,-88.02588621,-87.9789031,-88.04271743,-88.03990211999999,-87.91125484,-87.90846209,-87.98600143,-87.92127777,-87.91681124999999,-87.94477284,-87.97620917,-87.94772079000001,-88.00130755000001,-88.02589715000001,-88.01323008,-87.96456989000001,-87.95985052,-87.93143766,-87.94267197000001,-87.98191625,-87.95764761,-87.95766823,-87.91483382,-87.91549375,-87.90946603,-87.95750725000001,-87.92476308000001,-87.90523450000001,-87.94613273,-87.94640138,-87.94788224,-87.9735543,-87.94842654999999,-87.94849884999999,-87.9493971,-88.00502587,-87.9227526,-87.88042772,-87.88860031999999,-87.8948523,-87.96777152999999,-88.01388334000001,-87.91097756000001,-88.01269471000001,-88.02750336,-87.9864577,-87.92270139999999,-87.95736706,-87.99695136,-87.96736024,-88.00712992,-87.94776941000001,-87.93736231,-87.92229094,-87.93880285,-87.94729006999999,-87.94738371,-87.89796452,-87.90756619,-87.91405507,-88.02516949,-87.99329781,-87.99579414999999,-87.94413075999999,-87.93412819,-87.97240794,-87.95743557,-87.96709946,-87.93032214,-87.95148514,-87.95889266,-87.93298904,-87.9755282,-87.92254081999999,-87.93970418000001,-87.92183393000001,-87.94779807,-87.90628762,-87.87471154000001,-87.96217776,-87.92331211,-87.97689329000001,-87.96701365,-87.97701078999999,-87.9599022,-87.91152799,-87.96547004999999,-88.04236301,-87.96875702,-88.00753752999999,-87.95997212,-87.9665382,-87.94826507000001,-87.95743675,-87.92410105,-87.93747763,-87.92806345,-87.94493905,-87.92706003000001,-87.95897733,-87.94692262,-87.93297832,-87.92573134,-87.91352556,-87.9291432,-87.93775017999999,-89.39823808,-88.48535375,-89.13127469,-89.30195248,-90.4853569,-90.52596849,-88.31151853,-88.40572725,-89.28575051999999,-88.44240916,-89.79144257999999,-90.59026704,-90.37819042,-89.79217786,-91.88826892,-88.40422096,-89.80761837999999,-90.07217924,-89.99663724,-90.84555315,-88.58544512,-88.01702903,-88.1672549,-87.93950787999999,-87.94049022,-87.93665393000001,-87.93540213,-88.02518246,-87.92881915,-87.93020368000001,-87.93015676,-87.90478958999999,-88.00587787000001,-87.96541179,-87.95772156,-87.95907703,-87.92151595999999,-87.95776632,-87.95291322999999,-87.94364312,-88.02923857,-88.01056507,-87.99889426999999,-88.00549293,-87.93946905999999,-87.96545607,-87.98690016,-87.92870931,-88.05563694,-87.95266379,-88.00560269,-87.94735807000001,-87.90344417999999,-87.89803694,-87.89913351,-87.89238979,-87.92161071,-87.88788828,-88.02721095,-87.91550442,-89.57349891,-89.40569304,-89.42884486,-89.32582069,-89.30749955,-89.29763337999999,-89.38813383,-89.40071457000001,-89.36956315,-89.38160388,-89.36445662,-89.38462545,-89.47763332,-89.50299665,-89.51129822,-89.39521533999999,-89.39533294,-89.51474072000001,-89.40068918999999,-89.38930865,-89.36244093000001,-89.37624065999999,-89.52507649,-89.46096052999999,-89.40068850999999,-89.36191565999999,-89.37509523999999,-89.37672351000001,-89.3895481,-89.36691623,-89.51268552000001,-89.37523041999999,-89.36574305000001,-89.32144766,-89.52140631,-89.4007539,-89.31864379,-89.30731729,-89.39258178,-89.44761717999999,-89.45249206,-89.40075388,-89.43627024,-89.37976197,-89.38826721,-89.39424643,-89.30501851,-89.29377444000001,-89.2904013,-89.5092995,-89.42878114,-89.45666281,-89.38872345999999,-89.39351915,-89.4210066,-89.4007187,-89.42864486000001,-89.40071872999999,-89.48651597,-89.34437733,-89.3095174,-89.29653981,-89.40568386,-89.32359098000001,-89.36397273,-89.50614615000001,-89.28605451,-89.41827859,-89.3784249,-89.36666891,-89.39472976,-89.393502,-89.38981724,-89.40598654999999,-89.32425453,-89.36627841000001,-89.39921326,-89.39749698,-89.38974098,-89.38015377000001,-89.40710267,-89.40031872,-89.39377188,-89.38823698,-89.36551824,-89.51749839,-89.40898867,-89.33042618,-89.38591479,-89.38185228,-89.38488512000001,-89.38734554,-89.31203379,-89.48702772,-89.45118443,-89.40068719999999,-89.40096944,-89.34087255999999,-89.34501001,-89.39739163,-89.3414391,-89.36425955999999,-89.5141876,-89.47821571,-89.31300637,-89.52742832,-89.39259303,-89.51740015999999,-89.54542322,-89.40093177999999,-89.31933974,-89.34314478,-89.41902776000001,-89.39395247,-89.40901073000001,-89.42569865,-89.39410999,-89.39324295,-89.39499492,-89.52282968999999,-89.34285039,-89.38579136,-89.36630356000001,-89.35851552,-89.47206316,-89.4828084,-89.30918308,-89.3896417,-89.50317637000001,-89.42303020999999,-89.39258683,-89.39432336,-89.50317511,-89.35106708000001,-89.35347174,-89.30316381,-89.40075189,-89.37278885000001,-89.52631013,-89.59824082999999,-89.42277339,-89.33753091,-89.07165448000001,-89.80462722999999,-89.43333287,-89.35505517,-89.22600138,-89.22675859,null,-89.21483138000001,-89.23078554,-89.25472551999999,-89.24342786,-89.24611616,-89.23274531,-88.05951342,-88.03237477,-88.06405243,-87.9982871,-88.06220168,-88.0291728,-88.04843319,-88.01988334000001,-87.96693655999999,-88.06411518,-88.01120039,-88.05239807,-88.02051772,-88.06216956999999,-88.06350295,-88.05982355,-87.95808603,-87.98953631000001,-87.9479437,-88.00748753000001,-87.97768358,-87.99931311,-88.00361483,-88.07899242000001,-88.01076818,-87.99098770000001,-87.98251135,-87.97794211999999,-88.01408384,-88.06319477,-88.09651205999999,-88.02095780000001,-88.01796369,-88.03741501,-88.02169897,-87.97988561,-87.96776404000001,-88.0036645,-88.09938772,-88.09930523,-87.96041565,-88.03293480000001,-87.96785912999999,-87.99484002,-87.99415257,-88.05147277,-91.10909873999999,-91.1111184,-87.93326252999999,-87.91879632,-87.98192929,-87.95753584000001,-87.94380821999999,-87.92235647,-87.91262765,-87.9440963,-87.92037587,-87.91454048999999,-87.91241505000001,-87.90483021999999,-87.91921719,-87.88532961,-87.90345356,-87.9144467,-87.93317381,-87.9113222,-87.93297328,-87.93298473,-87.93501683,-87.92903138,-87.94145472,-87.96746797,-87.95752005999999,-87.94834166,-87.92629615,-87.95520832,-87.96903917,-87.95290835,-88.00418994,-88.0059471,-87.93212574,-88.02954523,-87.9959453,-87.93339279,-87.89795325,-87.94726206,-87.90732898,-87.88779735,-87.91506951,-87.89412983,-88.00797116,-87.92990521999999,-87.92832493,-87.92703525,-87.94855464,-87.92921265,-87.97557424,-87.96250458999999,-87.97097868,-87.95734766,-87.95006748,-88.04166413999999,-87.97123345999999,-87.89493710000001,-87.98963204,-87.94736315,-87.93886727,-87.94759494,-87.94858874000001,-87.89883508,-87.95770487999999,-88.45053826,-88.44446425,-88.44701044,-88.45955938,-88.44282533000001,-88.48470294000001,-88.44468089999999,-88.44708813,-88.43907480999999,-88.44466337,-88.43169485,-88.45072971,-88.46384098,-88.43186942,-88.44832798,-88.4469287,-88.47621995999999,-88.43408856000001,-88.45185944000001,-88.41143667,-88.48474186,-88.45144422,-88.47325451,-88.43457179000001,-88.44761515,-88.47603298,-88.35762154,-88.30328548,-91.24819821,-91.2197534,-91.24729917000001,-91.24096375000001,-91.24601676,-91.23890513000001,-91.23899025999999,-91.24761911,-91.24829775000001,-91.21975618,-91.2487933,-91.23734363,-91.24739699,-91.25246686,-91.23454357999999,-91.2490062,-91.25343506999999,-91.24726652,null,-91.23377531,-91.25339769999999,-91.24789418,-91.24449944,-91.21984101,-91.24680658,-91.25093871999999,-91.24829468,-91.22944126,-91.21974922,-91.23682164,-91.24116312,-91.23903267999999,-91.24898883,-91.23927264,-91.23913021,-91.24967678,-91.24818478,-91.24452196,-91.25070538,-91.2398951,-87.98692136,-88.1881317,-87.95258560000001,-88.18346750000001,-88.15912226,-88.11137442,-87.91123340999999,-87.95412917,-87.826452,null,null,-87.87415559999999,-87.82688229,-88.09525447,-88.04863326,-88.16807386000001,-88.0863595,-87.99347554000001,-88.08976423999999,-88.02770205,-88.02231304999999,-88.02658266,-87.94974417,-88.04331596,-87.9958561,-88.07099254000001,-88.10035849,-88.06541885999999,-88.06964791,-88.06803176,-88.06760224,-88.04365848,-88.09000931,-88.05991006000001,-88.08047752,null,-88.04970031000001,-88.08098282,-88.86509644,-88.86029759,-88.86009817999999,-90.13461608,-90.13767875000001,-90.14388776,-90.47722678,-90.47650725,-90.47704607,-90.47710646,-91.13837232,-88.33070594,-90.81072285,-90.81881791000001,-90.81817556999999,-90.83999199,-90.81261455000001,-90.81085444,-89.02656282,-89.02033234,-89.06982171,-88.4504639,-90.88851721,-90.88917647,-90.88894376,-88.99019835999999,-89.48980684,-89.50424294,-89.52711345,-89.49343875,-89.51428945000001,-89.52464873,-89.48607247,-89.49558718999999,-89.48681446000001,-89.49855406,-89.41641239,-89.42064286,-89.42235356,-89.47674403000001,-87.89979145,-87.91569219,-87.92500461,-87.87687287999999,-88.0391023,-87.86731243,-87.90099419000001,-88.03783129999999,-87.87572335,-88.05036143,-87.93087982999999,-87.87642687,-87.97227203999999,-88.04846954,-88.01032406,-87.95308836,-87.95499327,-88.05589995,-88.03232563,-88.00916823,-88.02908069999999,-87.95068297,-87.98007981000001,-88.10104755,-88.06548512000001,-88.10053238,-88.08997305,-88.09056246999999,-88.088555,-88.12031158000001,-88.16521281,-88.1372373,-89.32625219000001,-89.33150917,-89.32488617,-89.35453526000001,-89.33402988,-89.33801034,-89.31090709,-89.33185602,-89.3285035,-88.04722099,-88.00471661,-88.02233131,-88.06590315,-88.05546901,-87.98829141,-88.02746845999999,-88.00742357999999,-88.03481167,-88.05155003,-87.99352057,-88.03201831,-88.04773294,-88.06594586,-88.00744611,-88.01250099000001,-87.9966873,-87.99742001,-88.05401556,-88.00763923,-88.02714317,-88.05835166999999,-88.0170873,-87.98739439000001,-87.98754398,-87.98562296,-87.98743047000001,-87.98671365,-88.00171027,-87.99790066,-88.04656559,-88.04726568,-87.98746318000001,-88.03944548,-88.04710679999999,-88.04664497,-88.00563773,-88.00004328,-88.00003128,-88.04091334,-88.04673059,-88.00738774,-88.00473907999999,-87.99018869,-87.98057544,-88.05196660999999,-87.99428381,-88.05691188999999,-88.0060744,-88.04765193999999,-88.01696801999999,-88.00737337,-88.05817801000001,-88.01260313,-88.01709129,-88.05055118,-88.02432392,-88.0259798,-88.0468346,-88.04680852,-89.81770268,-91.44478692,-89.63919496,-89.63841289,-89.64114576999999,-89.66281039,-89.65255829,-89.72523149,-89.72871411,-89.734481,-89.7320335,-89.73422773,-89.73402631,-89.57467002,-89.58671135,-89.56465291000001,-89.56387277,-89.48934602999999,-89.57474286999999,-89.57762945,-89.57568018000001,-89.57801306,-89.5647467,-88.54326562999999,-88.53310005,-88.54150740999999,-89.37678385,-88.46471837,-88.45733099,-88.51312852,-88.50519807000001,-88.46671646999999,-88.48707914000001,-88.48506261,-88.45220621,-88.48960576,-88.47586162,-88.49512808999999,-88.43805734,-88.4487353,-88.45741063,-88.45318605,-88.4491527,-88.44612524999999,-88.40090467,-88.44639501,-88.44915875,-88.45323277,-88.4459449,-88.17416028,-88.73318091,-88.57526307000001,-88.50275533999999,-88.65491486000001,-88.64812356,-88.56553011,-88.50667553,-88.54468253,-88.53524215,-88.37485372,-88.39554584,-88.36305539,-88.43312275,-88.37482253,-88.41574007,-88.42323768999999,-88.40087176,-88.40302416,-88.41565498999999,-88.41850139,-88.39052475,-88.41569241000001,-88.42825332,-88.41560726,-88.41663788,-88.39876381000001,-88.41578389,-88.43330568,-88.40592536,-88.34588214999999,-88.39452706,-88.40092303,-88.3954901,-88.39459681,null,-88.41533454,-88.36929417,-88.41574706999999,-88.38022644,-88.3749679,-88.37482147999999,-88.41548355,-88.41503783,null,-88.40404306000001,-88.41602788,-88.41542812,-88.41006547000001,-88.43775949,-88.41597948,-88.22085946999999,-88.11012499,-91.42921385,-91.46985297000001,-91.51938007,-91.53712105,-91.4587618,-91.46821717,-91.42737334,-91.49500238,-91.46944157,-91.50338041000001,-91.43746326,-91.49640418,-91.54410278,-91.4950003,-91.48166903000001,-91.46304957,-91.46667881,-91.51708847,-91.52007433999999,-91.54410193,-91.51825540999999,-91.51518913,-91.49397141999999,-91.46051754,-91.50942821,-90.97473908000001,-92.67477368,-92.38095072,-89.6241516,-89.61586757000001,-89.63510997,-89.61573896,-89.63784554,-88.60765370999999,-88.60561946,-88.60443935000001,-87.63915675,-87.62426916,-87.65734881,-87.63061647000001,-87.63065927,-87.63537956,-87.64678480000001,-87.63028106,-87.65314822000001,-88.67515765,-88.06430611,-89.11818649,-89.07662311,-89.01878802,-89.09825213000001,-89.81718485,-89.81205299,-89.82970598999999,-89.81752135000001,-89.81414859,-89.77782578999999,-89.74898028,-89.76223511000001,-89.76898498,-89.76288193000001,-88.84357258,-88.84704290000001,-87.97983587,-88.00374288,-87.92552184,-87.90690569,-87.99381172,-87.97956117,-87.68415708000001,-87.6572644,-87.67688427,-87.66476345,-87.65772164000001,-87.6883359,-87.70632409,-87.67148389,-87.66579151000001,-87.67140979,-87.67474,-87.7068246,-88.24873612,-88.25949288,-88.22636244,-88.24157907,-88.21936184,-88.24710481,-88.23359920999999,-88.22116080000001,-88.25597714,-88.20759173,-88.17960887,-88.22676533000001,-88.22585703,-88.22282976,-88.2468241,-88.22977989,-88.25024328000001,-88.25978554,-88.2332321,-88.2298681,-88.21266807000001,-88.10636442000001,-88.3599064,-88.19737507000001,-88.19990108,-88.24818397,-88.34645355000001,-88.34000648999999,-88.22747755,-88.30174614000001,-88.47310043,-88.19180815,-88.20184779,-88.22978026,-88.24336906000001,-88.22520153000001,-88.34202851000001,-88.33896116,-88.35173908,null,-88.33347636000001,-90.35002799,-90.395348,-90.39523051,-87.73188949999999,-87.77585022,-88.02488990000001,-91.32270372000001,-88.42898568,-88.49429904,-90.91962433,-90.57422565,-91.18373861000001,-91.18327616000001,-91.24040275999999,-91.23144076,-91.2102488,-91.225706,-91.23195988000001,-91.20844697,-91.22641828,-88.32412221,-88.31708207,-88.32247381000001,-88.32414976,-88.32020092,-88.31268052,-88.32411212,-88.32412745000001,-88.33999436000001,-91.60093543000001,-92.75702271,-92.63770614000001,-92.75300473,-92.73735646,-92.73268639,-92.73423037000001,-92.72104967,-92.7412449,-92.73856494,-90.91969451,-91.29609152,-90.89128488,-90.91423888,-90.82618764,-91.73151799999999,-91.73370383,-91.74821076000001,-92.61378434,-92.60892487,-92.61187872000001,-92.62691527,-92.63956611,-92.60661643,-91.91950222,-91.92336582999999,-91.9319433,-91.92714305,-91.92847135,-91.91877030000001,-91.93262858999999,-91.92969977,-91.92854665999999,-91.9297638,-91.92848878,-91.92974871,-91.93194137,-87.06783484,-87.1221568,-87.65560806000001,-87.1229051,-87.35046506,-87.36590058,-87.37619707,-87.36934282,-87.39146775,-87.39702101,-87.38207251,-92.75649,-89.66967961,-89.63933587,-89.64336132,-89.65556519,-89.62719851,-89.62387889,-89.64586952000001,-89.63358665,-89.63927928,-89.62345385,-89.61509322000001,-89.62135186,-89.63037217999999,-89.62369114000001,-89.63923071000001,-89.62713985000001,-89.62346178999999,-89.62581114,-89.27793794,-89.50053818000001,-91.25274211999999,-91.25265773,-88.90032035,-88.76114622,-88.75689081,-89.156481,-89.1150923,-89.17056602,-89.05749373,-89.39975411,-89.40621826,-89.41270823000001,-89.42673676,-88.50671396,-88.29284318000001,-88.34733362999999,-88.51437804,-88.6577901,-88.29306210999999,-90.50846033000001,-90.50862553,-88.4705536,-88.46055713,-88.48676936,-88.41603536,-88.40977159000001,-88.49267491000001,-88.47901114,-88.45618869,-87.96536531,-87.98333196,-87.9680288,-89.38498669000001,-89.37441533000001,-89.37744653999999,null,-89.69789349,-89.69179513,-89.38321483,-88.28540961,-88.26614958,-88.27091116,-88.27141589,-88.27379792000001,-88.54679437,-88.53753986,-88.56062892999999,-88.52753706999999,-88.59334604,-88.58064485,-88.53748632,-88.58189346,-88.53743337,null,-88.59350799000001,-88.57975915,-88.53508759,-88.58161343,-88.58696449999999,-88.55787337,-88.57302787,-88.5411249,-88.54638529,-88.53761371,-88.55898526,-88.52734484,-88.54272281,-88.5250077,-89.43671266,-89.44877121,-89.43862648,-89.43385118,-89.45114959999999,-89.43374049000001,-89.03776348,-89.17143133,-88.45027764,-88.45191618,-87.90665996,-87.90466419000001,-87.89915034000001,-87.91179357999999,-87.89241893000001,-87.90682122,-87.90422411,-87.90302247,-87.90659536,-90.4341144,-90.89889131,-87.91296497,-88.76478496999999,null,null,null,-89.28917891,-89.30354133,-88.58083454,-88.39183468,-88.41244193999999,-88.71968862999999,-88.38496471000001,-87.96460697000001,-87.9409847,-87.92176056,-91.47185927,-90.29769155,-87.83556212000001,-87.82378506000001,-87.82860436999999,-87.85542924000001,-87.83567056,-87.84253128,-87.83834075999999,-87.83691537,-87.82670558,-87.85793742,-87.88497312,-87.82831167000001,-87.82174469,-87.81929263000001,-87.85132468,-87.84681727,-87.81883274,-87.86962529,-87.87631555999999,-87.82186861,-87.82713329000001,-87.83552548999999,-87.83922025,-87.82230733999999,-87.83593466000001,-87.82160053,-87.82160053,-87.84535047999999,-87.83806294,-87.85159840999999,-87.834952,-87.82294467,-87.82160112,-87.84665068,-87.82236413,-87.88270393000001,-87.82529233,-87.88250904,-87.83575055,-87.87101255,-87.87642432,-87.88375796,-87.88375796,-87.89359579000001,-87.86259394,-87.84579151,-87.83307936999999,-87.83618591,-87.82690117999999,-87.83594201,-87.9548063,-87.94811523,-87.83922109,-87.85575174,-88.02570436000001,-89.65412139999999,-89.59198675,-90.10519897,-89.49210638,-88.47974786,-87.98556336999999,-87.94496307,-89.54618325,-89.50969311,-89.53082761,-89.55020141999999,-88.16127133000001,-87.9561223,-88.23859865999999,-89.01176044,-88.98568544,-88.88537986999999,-91.08039519,-90.07898152,-89.85442695,-89.76162811,-90.00658326999999,-89.76885925000001,-89.68883567,-89.62076329,-90.10581605,-89.75960461,-90.06900211999999,-91.11192225000001,-91.47719201,-88.57746545000001,-92.58618898,-92.64475666,-92.08390156999999,-92.11475022,-92.05755483999999,-92.10385303,-92.10408509,-92.06458712,-92.10101495000001,-92.10419937,-92.10402863,-92.1038095,-92.10543850000001,-87.60534405,-87.56834879,-87.58488045999999,-88.74276908,-88.47374468,-88.49073454000001,-88.49062533999999,-88.49645006,-88.47046055,-88.48370839,-88.49062563,-88.48318499,-88.49703476000001,-88.50296779999999,-88.47149267,-91.89451319,-89.78862654,-90.17546321,null,-90.18145911000001,-90.16532467,-90.17334552,-90.16011779999999,-90.18876344,-90.18518191,-90.188267,-88.25361744999999,-88.23282869000001,-87.99944712999999,-91.81982961999999,-91.83098219999999,-92.00730181,-91.73846646,-87.97853888,-87.99824647,-87.95576251,-88.00534168999999,-87.96211737,-88.06746532,-87.95929724,-87.99816952,-88.02271223,-87.98538626,-87.96968078,-87.97543854,-87.95929589000001,-88.0103673,-87.96809385,-88.00899389999999,-87.86495497999999,-87.92801989,-87.92276776,-87.82354502,-87.94800802,-88.14336582999999,-88.16798458,-88.16665918,-87.91430256,-87.91515753,-92.53588791999999,-92.53849058,-90.18440099999999,-87.91178866,-87.92814426,-87.91844299,-87.91189850000001,-87.88374699000001,-87.94652096,-87.94711445999999,-87.94949962,-87.91424348,-87.94840361999999,-87.92913498999999,-87.95023456,-87.91012784999999,-87.91191391,-88.03618868,-88.04871725,-88.04806815000001,-88.95393899,-88.71865215,-88.72481526999999,-88.73233216,-88.72686136999999,-88.08701098,-88.09095028999999,-87.87529673,-87.88747060999999,-87.88736136999999,-87.8833846,-87.88526797999999,-89.75309154999999,-89.76878915,-89.74510401000001,-89.73330857000001,-89.75517484,-89.74259128999999,-91.50338235,-89.72205953,-89.70735996000001,-89.69154897,-89.71850582,-87.87382447,-87.87179140000001,-87.8599145,-87.87157571,-87.86063654,-87.87013329,-87.87092515000001,-87.86083576,-87.8616732,-87.87115592000001,-87.86578048,-87.87189007000001,-87.87021132,-87.96977542,-87.96768336,-87.96478644,-87.97605093999999,-87.87029604999999,-87.84598703,-87.84907213,-87.84668838,-87.87044542,-87.8516281,-87.83955424,-87.84864487,-87.84808264999999,-87.84669209,-87.87217419,-87.84432017,-87.84590077,-90.11917043,-90.11329264,-90.07291628999999,-90.07203151,-90.07809557,-88.73079472000001,-91.40604351,-91.35559945,-91.38595149,-89.5281871,-89.47498428999999,null,null,-87.8644946,-92.36546438000001,-89.99851467000001,-89.9946716,-89.99458237,-89.98465917999999,-92.78051666,-92.80212188,-89.79291906,-89.76892993,-89.79749178,-89.79010311,-89.78385325000001,-89.79148692,-90.66337581000001,-88.1084688,-88.06753264,-88.10167613,-88.10639217000001,-88.10233807,-88.40204138999999,-88.37137208,-88.3668189,-88.34995886,-87.88117665,-87.87978456,-87.87567516,-88.86641315,-90.70737565,-90.7096719,-89.58340208,-89.59263647,-89.59173328999999,-89.60872867,-89.61041092000001,-89.5621435,-89.5887817,-89.59112553999999,-89.59084188999999,-89.57250236,-92.64017835,-89.20542146,-89.37326351999999,-89.25060046999999,-89.21044925,-89.23060675000001,-89.22300455,-89.23172228,-87.86041824,-87.86985596,-87.88001095,-87.85178359,-87.87975959000001,-87.88176016,-87.86846665,-87.86805605000001,-87.85998376000001,-87.86004566,-88.12292610999999,-88.12805741,-88.1306755,-88.14634669,-88.54647729,-88.54822691,-88.55208899,-88.55026135999999,-88.43383162000001,-88.80567658,-88.70979861000001,-89.53341053,-89.52801276,-89.51761799000001,-89.53859816000001,-89.54172393,-89.45602593,-89.46171878,-89.41157508000001,-89.45648678000001,-90.38420653999999,-87.79272259,-87.79830707000001,-87.78485533999999,-87.78815706,-87.81924535,-87.78257057,-87.81193087,-87.83082924,-87.79195796,-87.80408958,-87.80859069,-87.78696135,-87.80820304,-87.80554969000001,-87.804641,-87.7847764,-87.79658111000001,-87.79977357,-87.80168289,-87.79810934,-87.83578833999999,-87.8264152,-87.79372329,-87.83592974,-87.79405601000001,-87.79626847,-87.80978039999999,-87.78704012999999,-87.78273817,-87.78575626,-87.80015707,-87.80855407,-87.7885654,-87.78482972,-87.78867743000001,-87.79781862999999,-87.83590834,-87.80398706,-87.78268626000001,-87.78574052,-87.79161434,-87.78000149,-87.78820039999999,-87.82571643999999,-87.78252705,-87.91507776,null,-87.89001949999999,-89.02554671,-89.05178968,-89.03576605000001,-89.00231837,-89.00678397,-89.02045626,-89.02459713,-88.98207281000001,-89.01748198999999,-88.98724394,-89.04502416,-88.97353952,-88.99927535,-89.02942862,-88.99361021,-89.02633449,-88.97638409,-89.01312040000001,-89.01111294,-89.03152675,-89.00544683,-89.01373125000001,-89.03192287,-89.02823788000001,-88.99365118,-89.04237277,-89.02307103,-89.03204854000001,-89.04703652000001,-88.43563494,-88.43556298,-88.417675,-88.41912901000001,-88.42226288000001,-88.43855186,-88.43446754999999,-89.61759029,-90.29165318,-89.03807449999999,-89.02301021,-89.0310305,-89.00791941999999,-89.05241791,-89.01791726,-89.04132850000001,-89.02683565,-89.03795924000001,-89.03349978999999,-89.01538567999999,-89.04204647,-89.02134133,-89.02546773,-89.00750587,-89.03691548,-89.04316246,-89.03362325000001,-89.01275891,-88.98741891,-89.04367283000001,-89.01553652,-89.01184467,-89.01787244,-88.98805846,-89.03787545,-89.06481583999999,-89.0632207,-88.95256870999999,-88.96410168,-89.37264411,-89.38415394,-88.31411642,-88.33243585,-89.74544147,-89.73555568,-89.73965422000001,-89.7490732,-89.28450749,-89.64609555,-89.01578071,-88.09505624000001,-88.14581918,-88.14022281,-88.17442561,-87.80947639,-87.80951802,-87.80432528,-87.98333257,-88.26814689,-88.27684762,-88.27468745,null,-88.37324998,-88.15039650999999,-88.17090285,-91.88550564000001,-88.4416336,-88.47290877,-88.43831693,-88.42447306,-88.45047117,-88.52504513,-89.27114056000001,-89.24705089,-88.72511609999999,-88.73085439,-88.72418809,-88.73230713,-88.72931124999999,-88.72850975,-88.74220759000001,-88.74647714,-88.73073013,-88.72394481000001,-88.69927318000001,-88.72262035,-88.28529682,-90.34099118,-88.656848,-87.88777665000001,-87.88300398,-87.88071329,-87.88289356999999,-88.37888927,-88.38537955,-88.37873988,-88.36294719999999,-88.37888065999999,-88.37888993,-92.02035008,-91.67062069000001,-88.18972126,-88.18325345,-88.18121137999999,-88.18112204000001,-88.18091328,-88.20109741,-88.18358353000001,-88.20113576,-88.20325106,-88.16139257,-88.19436640000001,-88.17466699000001,-88.18285306,-88.18089265,-88.19402805,-88.19297914000001,-88.1810404,-88.17726673999999,-88.74268368,-88.74695930999999,-88.73994978,null,-88.75133526,-88.01233218,-88.00617446,-87.73764281,-87.72302095000001,-87.74496938999999,-87.71464714,-87.72301937,-87.72222334999999,-87.71461981,-87.72831151,-87.71545439,-87.71313666,-87.73949136,-87.75450343999999,-87.72929123999999,-87.72006327,-87.71960448999999,-87.73231013,-87.71793912,-87.71460596,-87.7243132,-87.72194853000001,-87.71297611999999,-87.73070125,-87.71306883,-87.71461121999999,-87.71281626,-87.71960077,-87.71627048000001,-87.72451684000001,-87.72291183999999,-87.74462715999999,-87.73919530000001,-87.9466118,-87.82543947000001,-88.00127116,-87.75042345999999,-87.7664364,-89.14930242,-89.15222728000001,-89.15225106,-89.14410779000001,-89.15847601999999,-88.81783924,-88.82621134,-88.83456412,-88.85655661,-88.81033743,-88.82915014,-88.12624924000001,-88.0868177,-88.15098229,-88.12633626,-88.06635485,-88.12619994000001,-88.11823228,-88.16645404,-88.06683793000001,-88.06818036999999,-88.10897067000001,-88.11109924,-88.06757355000001,-88.0865889,-88.83068842,-88.83839786999999,-88.84882523,-88.85667056,-87.9144944,-87.90204478,-87.91271675,-88.80621334999999,-88.80460194,-88.81720318000001,-88.89749809,-87.95954709,-87.98116949,-87.94485081000001,-87.89341853000001,null,-87.87575553000001,-87.88084899,-87.87104488999999,-89.46899136,-89.46383299999999,-89.46352514,-89.46387636999999,-87.94474765,-87.82003987,-87.81982963999999,-88.60823927,-91.27437836999999,-91.12511926000001,-91.12305112999999,-89.62686998,-90.39123304,-89.69564971,-88.04035325,-91.41968081,-91.41907239,null,-90.44768985,-88.07498927,-87.20477,-87.95278507,-87.92707056,-87.95958177999999,-87.92711254,-87.91980934999999,-87.90586494,-87.94486022,-87.92719486,-87.94806317,-87.91264724,-87.96741470000001,-88.00715631,-88.00722718,-87.94051103,-87.91189043999999,-87.91869566,-87.94780125,-87.88809641,-87.92252006,-87.93381998,-87.95782832,-87.91915895,-87.94770582,-87.95005027000001,-87.94789221000001,-87.91760812,-87.94928888,-88.00549332999999,-87.95770541,-87.92729887,-87.9108281,-87.91605475999999,-87.92246113,-87.91887007,-87.9484269,-87.92343345,-87.90882256,-87.9538747,-87.94456941999999,-87.9909208,-87.93325759,-87.94745444,-87.95685766,-87.88363354000001,-87.97243263,-87.96619905999999,-88.00033682999999,-87.9494181,-87.90694745,-87.9185256,-87.90677581999999,-87.93454558000001,-87.93902781,-87.94348285,-87.9362264,-87.93648786,-87.91992361,-87.904747,-87.96143288,-87.93138515,-87.95771589,-87.92926969,-87.94974134,-87.98622266,-88.05550251,-87.97615051,-87.94697373,-87.95439421,-87.88807411000001,-87.89653718,-87.92364453,-87.90063536,-87.94131901999999,-87.91853414000001,-87.91403923,-87.9350049,-87.94770767,-87.95782260999999,-87.88382473,-87.89014520000001,-87.9013851,-87.88449663,-87.88378907000001,-87.89589264999999,-87.98613776000001,-87.98949897999999,-87.99036922000001,-87.95738457,-87.97736362000001,-87.90923208,-87.88811886000001,-87.90814223,-87.95512565999999,-87.95714155,-88.02157523,-87.91646966,-87.90543037,-87.91216892,-88.03117249,-87.96105753000001,-87.93736602,-87.91410533,-87.93569773,-87.9403147,-87.95151975,-87.92590473,-87.92560309,-87.9738917,-87.96148051999999,-87.99969102999999,-87.96662121999999,-88.03907735999999,-88.00486325,-87.92847901,-87.92112809,-87.91593463,-87.91899189,-88.01731696,-87.96708701999999,-87.97680689000001,-87.90439433,-87.94779278999999,-87.91892075,-87.91877617,-87.94712067,-87.94785941000001,-87.95027523,-87.92981398000001,-87.92985545000001,-87.92673490999999,-87.96730744,-87.9425548,-87.9855625,-87.95765763999999,-87.96077597999999,-88.02771101,-87.91846468,-87.95157755,-87.91122993,-87.94440332000001,-87.94826632,-87.89151464,-87.92950476999999,-87.91894575000001,-87.91485908999999,-87.90347224999999,-87.90327698999999,-87.90454441999999,-87.90353901,-87.88802337,-87.90556058,-87.91923011,-87.94821041,-87.98203241,-87.91099130000001,-88.02593688,-87.92725434,-87.91551334,-88.01248196,-87.95528984000001,-87.93569841999999,-87.97143690999999,-87.97128411,-88.00752977,-87.99535301,-87.94654195,-87.94731453999999,-87.92948063,-87.89239634,-87.93430015,-87.95813407,-87.93540385,-87.89523272,-87.92751045,-88.01273516000001,-87.93368341999999,-87.97737694999999,-87.88791637999999,-87.93120295,-87.94770487,-87.93783628,-87.9332077,-87.91909382999999,-87.94914557,-87.93905605,-87.93537956999999,-87.94728834,-87.94785981,-87.8772843,-87.88898612,-87.88509306,-87.88582838000001,-87.98772941999999,-87.98778731,-87.98441275,-87.95738222999999,-87.96971549,-87.93560417,-87.94774995,-87.90527947,-87.91399905999999,-87.94211908,-87.95393282000001,-87.94776954,-87.94226449,-87.94499714,-88.01056156999999,-87.9445474,-87.92392731,-87.93294738,-87.93298831,-88.00453143,-87.95763218,-87.96755745,-87.92878081000001,-87.91907474,-87.94813266,-88.00917552,-87.96742992,-87.89015567,-87.90269563,-87.93196387,-87.9480403,-87.9861238,-88.02588084999999,-87.99093120000001,-87.93914540999999,-87.94726955,-88.02746302,-87.94729164,-88.00708036,-87.93783024,-87.91942681,-87.90973488,-87.94821028,-87.90341779000001,-87.89684797,-87.88780532,-87.8922348,-87.91305418,-87.90322876,-87.95092203,-87.97609513,-87.93012978,-87.91944534,-88.00726562,-88.01589993,-88.03133011,-88.00735238999999,-88.03646048,-87.93390571,-87.9776653,-87.99555555000001,-87.9484535,-87.96698988,-87.99478058,-88.00727435,-87.93383141,-87.92910607,-87.95860091,-87.94825471999999,-87.95202638000001,-87.90503053,-87.90878379999999,-87.8879323,-87.9061528,-87.95748729,-87.95517751,-88.00606892,-88.01127169,-87.96639668,-87.92018354,-87.89947798,-87.92254253,-87.94516937,-87.91117737,-87.91430585000001,-87.93812459,-87.9294519,-87.93360362999999,-87.94713593,-87.95769033000001,-87.91730139000001,-87.93300859,-87.94583639,-87.91256954000001,-87.96742055,-87.94700154,-87.9381048,-88.03507097000001,-87.95705713,-87.94779320000001,-88.02284296000001,-87.89440492,-87.95223208,-87.92705251,-87.98331851,-87.92885588,-87.93331907,-87.91886879,-87.9259141,-87.95238736,-88.02544853000001,-87.95144326,-87.93143642,-87.89113263,-87.92924843999999,-87.99114542,-88.01639007,-88.02891378,-87.91318153,-87.91925182999999,-87.88827179,-87.91214300999999,-87.90816323,-87.91071122,-88.00383754000001,-87.98525238000001,-87.9573812,-88.00738841,-88.01622211,-87.96493043,-88.02482802,-87.96785798000001,-87.94784721000001,-87.95760039,-88.01716906999999,-87.93080186,-87.89154378000001,-87.94663205000001,-87.9446818,-87.94229398,-87.91701578,-87.96248418,-87.9577216,-87.97734191000001,-87.93061756,-87.97118140000001,-87.92719744,-87.96029299,-87.92714635,-87.94761665,-88.04586177,-87.93085833000001,-87.94767763999999,-87.98192777,-87.94563288000001,-87.94894411999999,-87.93300323,-87.94639305,-87.94827497,-87.91785127,-87.95587355000001,-87.94785075,-87.92724823,-87.92544925999999,-87.93818177,-87.90571482999999,-87.93801241,-87.94339752,-87.93304705,-87.94834779,-87.89846104,-87.87601828,-87.92926162000001,-87.924229,-87.92152014,-87.93056626000001,-87.9997712,-87.98604942,-88.01398522,-88.03019714,-87.94227994000001,-87.95466715000001,-87.98999059,-87.99599873,-87.96736743,-88.40337642,-89.55381496,-92.10367033,-89.56171381999999,-88.98289093,-89.69754902,-88.35568546,-92.73993274999999,-88.34673605,-89.10316597000001,-88.43062844000001,-88.19454389000001,-87.82296864,-88.2237382,-87.95285690999999,-89.47530809,-89.27896394,-89.28560914000001,-91.98445232,-90.06819251,-89.83473669999999,-88.0092356,-87.93465036000001,-87.92817469000001,-87.93155082,-87.9415951,-87.93777303,-87.9341448,-87.93304725,-87.92873557,-87.99250384,-88.027711,-88.00653695,-87.95715584,-87.93523558,-87.9898733,-88.0259343,-87.98390603,-87.89858257,-88.02252804,-87.93816307,-87.91258120000001,-87.95771917,-87.93298074,-88.01780083,-88.00748993000001,-90.91789917,-89.56965695,-89.40727789,-89.38182488,-89.39331924,-89.52591916999999,-89.47364113,-89.39491536,-89.52757566,-89.39319485,-89.45519831999999,-89.52184594000001,-89.39735118999999,-89.39409369000001,-89.3932653,-89.46127085000001,-89.36374343,-89.38586252,-89.52513887000001,-89.47356517,-89.38976475,-89.4818655,-89.28648262,-89.48874478,-89.35503236,-89.38671306000001,-89.35497362,-89.35527715000001,-89.38022173,-89.28674736000001,-89.39909161,-89.4041209,-89.47646002,-89.40436215,-89.47426127,-89.42664454,-89.37818652999999,-89.35409996,-89.38596192,-89.4059622,-89.50627826,-89.40216669,-89.36604344,-89.40288986,-89.40035397,-89.50201116,-89.39396359,-89.51168121000001,-89.42114872000001,-89.39908502999999,-89.3268994,-89.40249864,-89.37240892,-89.39407159,-89.37097013,-89.37698727999999,-89.39499606,-89.40146467,-89.38773337000001,-89.39406088,-89.39033922,-89.34754742,-89.37167501,-89.35304094,-89.35371644999999,-89.39124252000001,-89.38778010999999,-89.40521597,-89.46094136000001,-89.36370942000001,-89.38699204,-89.43619676,-89.39254463,-89.36340801,-89.36255457999999,-89.37731509,-89.35908705,-89.32235109,-89.35106863999999,-89.36252978,-89.38488443,-89.37547714999999,-89.38692708000001,-89.35914867,-89.31025471,-89.35974708000001,-89.35382421,-89.31217237,-89.38460388,-89.3129819,-89.32867623999999,-89.36539245,-89.39994763999999,-89.39739808,-89.2755513,-89.41025354999999,-89.38459279999999,-89.49697125,-89.36986127,-89.50603851,-89.51756247,-89.53352799,-89.47680966,-89.27363853,-89.39537738,-89.49661691,-89.41739625,-89.39368638000001,-89.34681045000001,-89.28424585,-89.30829687000001,-89.50296551,-89.45962926,-89.50149564,-89.42732928,-89.44325008,-89.40721868,-89.49385062,-89.34502055,-89.36351282,-89.39317722,-89.40408816999999,-89.46054521000001,-89.38071827,-89.36922353,-89.3135855,-89.30867191,-89.31019335000001,-89.31503437000001,-89.40068712999999,-89.39840499,-89.3159806,-89.29135875999999,-89.36119616000001,-89.30853260000001,-89.34180476,-89.38859812,-89.39412989,-89.38935847,-89.40396986,-89.40394256,-89.35414984000001,-89.36354732,-89.28621628,-89.69104718,-89.71866008000001,-89.5215573,-89.34290306,-89.09860926,-89.33790983,-89.28596514,-89.29579197,-89.27135206,-89.21167426,-89.24238444,-89.23351966,-89.2648657,-89.27617674,-89.21480509,-89.22626763,-89.24816215,-89.24639463,-89.21190525999999,-89.20963758000001,-88.03964275,-88.00868886000001,-88.01675547000001,-88.01577675999999,-88.05461357999999,-88.02221143,-88.0498592,-87.98496029,-87.97803686,-88.0061134,-88.02394275,-88.00076903,-87.9731756,-88.01192174000001,-88.01604313,-88.02507356,-87.96840149000001,-87.99272544999999,-87.99070639,-88.06699897999999,-88.03169002999999,-87.93473301,-87.92791068,-88.01317736999999,-88.05004230999999,-88.00641543,-87.96777659,-87.98111088,-88.06331412999999,-88.00911343,-88.00914447,-87.97020301000001,-87.98280115,-88.01848266,-88.05972773000001,-88.07965686,-88.00021718000001,-87.98117582,-88.02185709,-88.02352820999999,-88.05664527,-88.00408623,-88.01565239,-88.06156928999999,-88.06185197000001,-88.02468757,-87.97264125,-87.97423782,-88.06400379,-88.00925947,-88.01192577,-87.94156784,-87.99911564,-87.96893439999999,-88.05596980999999,-88.01039494,-88.02816785,-87.95183306,-88.05772286,-87.98071528,-91.09952846,-87.98040955,-87.90921557,-87.90960475999999,-87.89692110999999,-87.90569719,-87.91653445,-87.95768981000001,-87.94929959,-87.93082642,-87.92834252,-87.97454667,-87.95634348,-87.98478964,-87.94869860999999,-87.93321988,-87.95771612999999,-88.00598698,-87.96697245,-88.06373868999999,-87.94995978,-87.9110457,-87.95001456999999,-88.03485009000001,-88.03485001999999,-87.92112394,-87.91431369999999,-87.95076713,-87.94139029999999,-87.94686811,-87.90778064,-87.92596270999999,-87.95001112,-87.96711821,-87.95970205,-87.98214525,-87.97733485000001,-87.95842836999999,-88.01826699999999,-87.95844323999999,-87.97159214,-88.00754114999999,-88.02849971000001,-87.99146188,-88.02514755,-87.99136224999999,-87.95413673,-87.96708185999999,-87.92105884,-87.8954332,-87.89496123000001,-87.90334699,-87.95734308,-88.43484036,-88.44693955,-88.42203379,-88.45703220999999,-88.43662827,-88.48594833999999,-88.45880931000001,-88.44749699,-88.45051517,-88.44957908000001,null,-88.44698817,-88.47311001999999,-88.4469082,-88.43490352000001,-88.43920749999999,-88.43704676999999,-88.44697504,-88.47592179999999,-88.43185242,-88.42201402000001,-88.44685653000001,-88.4457152,-88.46238772,-88.47010621,-88.46672673,-88.47418388,-88.47579521999999,-88.42666985,-88.47331049,-88.4469077,-88.44465417000001,-88.43908454,-88.30325394,-88.1616528,-88.15781205,-88.33298381,null,-88.28972208,-91.23957179999999,-91.21926932,-91.23423554,-91.23898216000001,-91.24461671,-91.2085474,-91.24816722,-91.24956261,null,-91.22428244,-91.25249424,-91.21989822,-91.22434024,-91.25315619,-91.25479688,-91.25015517,-91.22683972999999,-91.23242698999999,-91.24817702999999,-91.24186863,-91.24734884999999,-91.21396919999999,-91.22498843,-91.25187248,-91.24679605999999,-91.22929564,-91.21575276999999,-91.24896676,-91.24678314000001,-91.24536413,-91.23836784,-91.25163867000001,-91.23976397,-91.21913886,-91.24179035,-91.24242091000001,-91.23985058,-91.22025336999999,-91.24530301999999,-91.23752905000001,-91.21602746000001,-91.25022564,-91.21718538,-87.95224378,-87.8257425,-87.92579597,-88.11662851,-87.85962609000001,-88.1776677,-87.83599276,-87.992369,-87.91489190999999,-88.01581584,-88.00083891,-87.97303192,-87.97152435,-88.08476062,-88.08476084,-88.09950597,-88.00160468,-88.06475561000001,-87.92539643000001,-88.03184444,-87.78445246,-88.0846779,-88.07181998999999,-88.11936157,-88.08318215,-88.07499262,-88.0657994,-88.06666459,-88.06637373,-88.082427,-88.06952796,-88.08344443999999,-88.07358399,-88.0544433,-88.06063224,-88.08276567,-88.06037309,-88.05181791,-88.05923017000001,-88.04674675,-88.04369258,null,-88.03757126000001,-91.48886962,-90.71069383,-88.76101808,-90.48028518,-90.47641183,-90.47574675,-91.13949185,-91.12859005999999,null,-91.14165843000001,null,-88.33056732,-90.82091692,-90.83449973,-90.81070149999999,-90.82084149000001,-90.81452562,-90.81502460999999,-90.8114862,-88.50153997,-88.45253441,-90.88271499,-88.99412191,-89.50832441,-89.50956341,-89.49817426,-89.51065432,-89.51150816000001,-89.50957119,-89.50028455,-89.48558188,-89.49566654,-89.52671669999999,-89.38697062999999,-89.41477277,-89.39574768,-89.41944529,-89.45885444,-89.41498161,-89.41944803,-89.42779508,-89.39645725,-89.38027879000001,-89.42434342,-89.37229827,-89.47541873,-89.41753543,-89.42287705,-88.03664901,-88.04901728,-87.87710297,-87.87444807999999,-87.93556244,-87.88634875,-87.9994373,-87.94967079,-88.00950408,-88.04380971,-88.001901,-87.96405253,-87.95488201000001,-88.11001127,-88.11480696,-88.0643961,-88.064891,-88.11130391,-88.10035121999999,-88.13801157,-88.13634007,-89.32071616,-89.3258227,-89.32624448999999,-89.32473331,-89.33622947000001,-89.32606131999999,-89.33659237000001,-89.32607172,-89.32626051,-88.00745999999999,-88.04675385,-88.04770867000001,-88.00837097,-88.06657379000001,-88.04746381,-87.99168404,-87.99751242000001,-88.00328100999999,-88.00332797999999,-88.00332519,-87.99750756,-88.02751856,-88.00744127999999,-88.06528062,-88.05750071999999,-87.99736722,-88.05501626,-88.02501226,-88.04398973000001,-88.06631256,-88.05612556,-88.03424943,-88.02081638999999,-88.02063323,-87.98746355999999,-88.03949455999999,-88.01407192000001,-87.99941849,-88.05800963999999,-88.00001711,-88.04659755,-87.9874655,-87.99106727,-88.00726032999999,-88.00738635,-88.04726158,-88.02986500999999,-88.00449971,-88.0120477,-88.02714544,-88.04627644999999,-88.01690370999999,-87.98263819,-88.00607428000001,-87.99682985,-88.00727556,-88.03970914999999,-88.04709818000001,-88.04692525999999,-87.98737835,-88.03672062,-88.04328884,-87.98747641999999,-87.99963081999999,-88.03621258,-87.98632262,-88.02713914,-88.02976704,-88.02711965,-88.02479834,-87.98747089,-88.01402355,-88.04701918000001,-87.98743917,-88.06829964000001,-87.97735507,-87.99618735999999,-88.00863381000001,-88.049007,-88.05698442000001,-88.03722632,-88.01253364999999,-88.04721038,-88.04708983,-87.98732121,-88.04977449,-88.008261,-89.81750008,-89.81746987,-91.46279513,-91.4573031,-91.43978897,-91.46056926,-89.63987432,-89.63985323999999,-89.64038872,-89.72938478,-89.74492189,-89.57230482,-89.55574489999999,-89.59645352,-89.58658988000001,-89.57910809000001,-89.58439084,-89.58439116,-89.58472763,-89.57337111,-89.56458041,-88.54210747,-88.46284545,-88.49549476999999,-88.46236252999999,-88.49022124,-88.49509190000001,-88.4636251,-88.46275391,-88.46556228,-88.46367246,-88.48499485000001,-88.46409997000001,-88.47476789,-88.46149607,-88.46489216000001,-88.48639621,-88.48344143,-88.45872477,-88.48551297,-88.46483523000001,-88.44012196,-88.44602689,-88.43162592,-88.40452723999999,-88.40407377,-88.44008214999999,-88.44011254999999,-88.44586386,-88.44613226,-88.42375977,-88.45320578,-88.44612008999999,-87.70479498,-88.15486,-88.73439655999999,-88.54208049,-88.66418401,-88.59717593000001,-88.59828902,-88.5649162,-88.72145869000001,-88.68087769,-88.4154384,-88.4088031,-88.36494515,-88.40084398,-88.39287323000001,-88.41370779,-88.40301442000001,-88.41547455,-88.41077315,-88.3752107,-88.35422783999999,-88.40400909,-88.40717239999999,-88.42579658,-88.44177424,-88.4009125,-88.41926590999999,-88.4282867,-88.43870397000001,-88.40587678999999,-88.39950143999999,null,-88.42567893,-88.41583335,-88.37897445999999,-88.36492977,null,-88.43562166,-88.43204623,-88.41581544,-88.43088539,-88.38356116999999,-88.42584553,-88.41533182000001,-88.39562232,-88.40595475000001,-88.4247826,-88.431363,-88.40724701000001,-88.41916701,-88.41432488,-88.42579910000001,-88.40097475,-88.35850942,-88.42177654,-88.38017856,-88.26212025,-88.23056453,-88.17158800999999,-88.19381988000001,-91.50254694,-91.51353545000001,-91.49165832,-91.47818853,-91.53869804,-91.50125826,-91.50626093,-91.5222225,-91.52848974,-91.46820374000001,-91.52993787,-91.46557575,-91.47343379,-91.47070432,-91.51486430999999,-91.503326,-91.50895914,-91.51901067,-91.54233947,-91.47995464,-91.51906493,-91.52263455000001,-91.49908162,-91.46846644,-91.4631881,-91.46820018,-91.49428558,-91.46969184,-91.46842205999999,-91.50976609999999,-91.43627495,-91.51899416000001,-91.46314621,-91.52997114999999,-91.46341538999999,-92.67473222,-92.30566367999999,-89.62275255,-89.68543450999999,-89.715205,-87.63041534,-87.63196273,-87.63888729,-87.62973746,-87.63723115000001,-87.61385826999999,-87.66035081,-87.62955580000001,-87.63951102999999,-87.63462825000001,-87.63067778,-90.07214553999999,-88.06840595,-89.08491381,-89.10066892,-89.08614579,-87.60225973,-87.58264939,-89.81717269000001,-89.81212486,-89.83608108,-89.81695996000001,-89.83710798,-89.83097853,-89.80686702,-89.81695698999999,-89.81195031999999,-89.8163133,-89.83229901999999,-89.81522664000001,-89.81218011999999,-89.77373713,-89.77683021,-88.83889458,-88.8260052,-88.00368989,-87.92620993,-87.92426969,-87.98248592,-87.9240137,-87.65766112,-87.66061076,-87.66823909999999,-87.69184924,-87.65215996000001,-87.66055458,-87.67260906999999,-87.67478916,-87.68792157,-87.66059067,-87.67476267000001,-87.68748071,-87.68858632,-87.65992765999999,-87.69903393,-87.69097209,-87.66086334000001,-87.66085809,-88.22672396999999,-88.22717854,-88.25023804,-88.24214893,-88.21870911000001,-88.23454129,-88.24662013,-88.25850907,-88.23156277,-88.22696451,-88.23563608000001,-88.22669427,-88.2354103,-88.25606033,-88.21892765,-88.23711711999999,-88.22905473,-88.22801707000001,-88.22180575,-88.19480518,-88.44262689,-88.25995098,-88.23949748,-88.23006588,-88.29962937000001,-88.37831409,-88.36928954,-88.37970568,-88.25761060000001,-88.34726714999999,-88.34202677,-87.53581345000001,-87.98510871000001,-87.61841138,-88.43269441,-88.51027852999999,-88.44556032,-88.48547225999999,-90.79358505,-91.2278476,-91.19378349,-91.18291278,-91.22025882,-91.23185097,-91.22014767,-91.23397663,-91.21213523999999,-88.33765065,-88.31561928000001,-88.31352984,-88.32416669,-92.41535272,-92.75645397,-92.70262025,-92.64704999,-92.73050574,-92.75855795,-92.73359735,-92.71095448,-92.7269252,-89.32292686,-89.40995405,-89.37757811,-89.18503249,-88.00862361,-91.24556226,-90.83005179,-90.37112164,-91.75428291999999,-91.73316669,-91.73327052,-92.62912901999999,-92.62327371000001,-91.92490454999999,-91.93434062999999,-91.92981742000001,-91.92975723000001,-91.93207544000001,-91.92965513,-91.92706238,-91.92974606999999,-91.93223527000001,-91.92979466,-87.12165081000001,-87.37858267,-92.18563325,-89.62539596000001,-89.63930503,-89.64543014,-89.64541808,-89.61594803,-89.62282034,-89.62361325000001,-89.63622923,-89.62899141,-89.63673805000001,-89.62151892,-89.6735164,-89.63924756999999,-89.62318617,-89.62315654,-89.63945137,-89.62281618,-89.61885932,-89.60891085,-89.64045523999999,-89.6550324,-89.62665819,-89.6418082,-89.65563964,-89.65543581,-89.61827725000001,-89.29237406999999,-89.00692694,-89.49822691999999,-89.51757468,-91.85509921000001,-91.25445892,-91.23870559,-91.08119813,-91.09118085999999,-91.07993317,-91.10448863000001,-91.06998831999999,-88.76978817,-89.40911086,-89.40900385,-89.42003099999999,-89.42508242,-89.4250851,-89.4160773,-88.54945814,-88.2920026,-88.68303632,-88.32404615999999,-89.4945194,-90.50477193,-90.50503084,-88.44582662000001,-88.4598572,-88.44143536999999,-88.43896049999999,-88.46913696,-88.45411888,-88.4490727,-88.47940195,-88.43722018,-88.46132844,-87.98449332,-87.96603635,-87.96607083000001,-87.98703628,-89.70128566,-89.70138439,-89.41127109999999,-89.40860176,-89.39026608,-89.40608493000001,-89.38270355,-89.38999821,-88.2665293,-88.26598318000001,-88.2837159,-88.27364577,-88.26656954000001,-88.27106938999999,-88.54822383,-88.56941335,-88.54249122,-88.53753684,-88.58325268,-88.53758430000001,-88.56768563,-88.56244415,-88.54161642,-88.52797588,-88.53758443,-88.54622568000001,-88.53014443000001,-88.54246202,-88.54475984,-88.542597,-88.57300096,-88.56738692,-88.57293132,-88.5375276,-88.54255512,-88.53758411,-88.53753358,-88.5352781,-88.54260085999999,-88.53758763,-88.56157759,-88.5693553,-88.57556468999999,-88.58322518999999,-88.5376473,-88.52989234,-88.53757634999999,-88.54603225,-88.5314635,-88.5274958,-89.4496012,-89.45114923,-88.39874810000001,-88.56717691999999,-87.91188723,-87.90667843,-87.88982651000001,-87.90680967,-87.89975779,-87.90942118,-87.9022034,-87.89454481999999,-90.68377757,-90.50354479000001,-90.41860388000001,-90.37613705,-90.31664524999999,-90.5569848,-90.43416474,-90.59809500999999,-90.89196244,-90.88139963,-92.37397452,-92.37653948000001,-89.29435663,-88.86683307,-88.24065193,-87.96072628,-87.94515106,-87.95677107,-91.48188715000001,-87.83294595,-87.83815863,-87.82686563,-87.82147876000001,-87.85451947,-87.82557978,-87.83204155,-87.83222831,-87.85504444999999,-87.83365452,-87.85573687999999,-87.83685403,-87.84581598,-87.83584825,-87.83777449,-87.83000475,-87.83587481000001,-87.82534224,-87.84361532,-87.85689709,-87.8238231,-87.85572088000001,-87.85183843,-87.82420848,-87.83571262,-87.86279562,-87.84574052000001,-87.86314392,-87.84522051,-87.82633781,-87.8873751,-87.83603432,-87.8795166,-87.8252674,-87.82345581,-87.81757183000001,-87.82308906999999,-87.83551034,-87.84037416,-87.83587552,-87.84573558,-87.8214797,-87.83220711,-87.83230562,-87.83045955,-87.82835145999999,-87.8484807,-87.84808202000001,-87.8369182,-87.84439919,-87.84770874,-87.86747764,-87.95045871000001,-88.02245134,-89.92636433,-89.4829113,-90.30998481,-88.47554212999999,-88.04411217000001,-87.92682176,-89.52775028000001,-89.55078158000001,-88.28191892,-88.05725687,-88.03218952,-88.05220375,-88.05189835,-88.06412072000001,-87.95809791000001,-88.22528689000001,-89.32836062,-89.13327201,-88.98603384,-91.11054221000001,-89.76875219999999,-89.92463499999999,-89.7616251,-89.75891793,-91.49241395,-92.1040615,-92.10429193,-92.1038894,-92.12574908000001,-92.10729913999999,-92.10393772,-92.01925335999999,-92.10233606,-92.08741748,-92.04767715,-88.44989587000001,-88.24858952,-87.5760906,-88.5735689,-88.53939179,-88.58557870999999,-88.74338183,-88.48633869,-88.49945197,-88.51911157000001,-88.4963966,-88.49840426,-88.49928980999999,-88.49572909,-88.47203248,-88.47154870999999,-88.50630954,-88.49915698,-88.51621022,-92.10109317,-92.02970225,-89.88227979,-89.86486141,-90.18288701,-90.17553270000001,-90.14135804999999,-90.18565549,-88.22978835000001,-87.98928766,-87.98752217000001,-89.28860213,-89.30077772999999,-89.29084335,-89.30106905,-87.95708603999999,-87.99843380999999,-87.98866399000001,-87.97350007,-88.00822947,-87.95930461,-87.98899371,-88.01200257000001,-87.94890097,null,-88.00838172,-88.00773008,-87.90998736,-87.84747294,-87.8454088,-87.87117141,-87.85428846000001,-88.13186897999999,-87.91408165,-87.9139962,-87.91170973,-87.93246061000001,-87.91582818000001,-92.53745360000001,-92.53752636,-92.54077733,-92.53748631000001,-90.49861545,-90.18037531,-87.93032237,-87.91305656,-87.92055305,-87.90272450000001,-87.89665205999999,-87.94573729,-87.93547737999999,-87.93533856000001,-87.90204691,-88.04720827,-88.04834274,-88.04893376,-88.94115623,-88.93503049,-88.72988558999999,-88.72811283999999,-88.74724453,-88.72604663,-88.07465495,-88.07865129,-88.07184175,-88.08644698000001,-90.58352426,-90.32983950000001,-89.65206320999999,-89.67839521000001,-89.6510296,-89.73454559,-88.6378031,-88.62304321000001,null,-87.87756117000001,-87.887762,-87.88743305,-87.88753409,-87.88504389000001,-87.88998365,-87.88742142,-87.89222649,-87.89721840999999,-90.84886625,-89.74220766000001,-89.74247124,-89.73139934,-89.76991725000001,-89.74248648,-89.7195873,-89.70808418,-89.71140118,-87.86479407,-87.86059969999999,-87.86490152,-87.86743959,-87.86024921000001,-87.86070966,-87.86751578000001,-87.86079672,-87.86491191,-87.86550323,-87.96122108,null,null,-87.96752628,-87.96624013,-87.97236121,-87.96769405000001,-87.96480966999999,-87.96853754,-87.84816459,-87.87046193,-87.84372725,-87.89841143,-87.80274793,-87.86664871000001,-87.8598863,-87.84527045,-87.86623096,-87.84902405,-87.87002463,-87.90482335999999,-87.87032386,-87.79821932999999,-87.86296944999999,-87.86892306999999,-90.07805190000001,-90.07000821,-91.50191129,-91.43195445000001,null,-91.41345334,-91.3881277,-91.42186889,-91.39800185,-91.40792859,-91.39045273000001,-89.24676153999999,-87.94119657,-87.93891431,-88.52236800999999,-88.15167233,-90.00809491,-89.9944538,-89.98044951,-90.01209921,-92.48361800000001,-92.47952372,-89.91659533000001,-89.67800948999999,-89.78392276,-89.79342484,-89.78732332,-89.79124170999999,-89.78018469,-89.79328919,-89.79641957,-89.53821286,-90.93717445999999,-88.08895978,-88.08845115,-88.10852319999999,-88.08933192000001,-88.12697891000001,-88.10447157999999,-88.10706183000001,-88.17504273,-88.40422597,-88.34418657000001,-91.23572316000001,-91.22347962000001,-91.42344575,-88.08230500000001,-87.88242828,-87.87918792000001,-87.88253731,-90.70959347,-89.60772710000001,-89.60698846,-89.59264594,-89.61250724999999,-89.61435021,-89.61365398,-89.58162529000001,-89.49486828000001,-89.61274160000001,-89.58197851,-90.29658273,-92.56064493,-92.56501554,-92.62302233,-92.48849174999999,-89.2091886,-89.19956172000001,-89.36016954999999,-89.35226355,-89.333916,-89.24051545,-87.85758829,-87.85011285,-87.8701799,-87.85993771,-87.85008151,-87.85081384,-87.86583361,-87.87305227,-88.10319834000001,-88.11119644,-88.10612458,-88.10325453,-88.08974689999999,-88.17569832,-88.11560713,-88.55093114,-88.9602792,-88.52431552,-88.93428959000001,-89.5408876,-89.44465289999999,-89.45556497,-87.79568114999999,-87.79360066,null,-87.79824286,-87.82606765,-87.79311306,-87.78692746999999,-87.78599092,-87.79288705,-87.80361933,-87.84398559,-87.78702638,-87.79301399000001,-87.8020186,-87.79172636,-87.80329537,-87.80157930999999,-87.78359924,-87.82607099000001,-87.78659764,-87.80406261,-87.78405109000001,-87.79759515000001,-87.81099514,-87.79237497,-87.78262038,-87.81847003,-87.82390551,-87.78612785999999,-87.79107596,-87.82586216,-87.78949642000001,-87.80558133,-87.81741318,-87.79284642,-87.80845337,-87.79829379,-87.78255939,-87.7982076,null,-87.80013884,-87.78592614,-87.78848281,-87.81168363,-89.0730332,-89.02628729,-89.00422288999999,-89.0526323,-89.00119768,-89.02193127,-89.0119885,-88.9621164,-88.99866478,-89.01232147,-88.99771118,-89.00781558,-89.00283575,-89.00819334000001,-89.00085061,-88.96840874,-89.03119820000001,-89.02483818,-89.02535152,-89.00178003000001,-89.00879764,-89.00328399,-89.02555486999999,-89.00570335,-89.02572932,-89.03095063000001,-89.051902,-89.00292562,-88.99658538,-89.00582491,-89.00279857,-88.99645138,-88.98772968,-89.01934512,-89.02468568,-88.98956299,-89.01096549,-88.98132748,-89.02631654,-89.02820611,-88.9801583,-88.43682092,-88.43732602999999,-88.43750764000001,-88.43276338,-88.43894664,-91.92544589000001,-91.92917305,-88.21655598,-90.29715547000001,-90.35859528,-89.06207211,-89.04048139,-89.04665042000001,-89.03485874,-89.04554567,-89.02930014,-89.0318023,-89.00699563000001,-89.02411451,-89.00003484,-89.03359076,-89.01195479,-89.04026036,-89.04096253,-89.01815383,-89.01921886,-89.03919929,-89.07142696,-88.94758241,-89.38754648,-89.38337251999999,-89.38340933000001,-89.37742067000001,-88.34914759999999,-88.32926147000001,-88.33761978,-88.34097743,-89.73313383,-89.73842671,-89.72150024,-89.62025681,-89.55225839000001,-89.54811233,-89.28515142000001,-88.14269817,-88.15644965,-88.10868907,-87.79639963,-87.91115992,-87.82060401,-87.83581912,-87.81132703,-87.80904986,-87.81590873,-87.98418974000001,-88.2781277,-88.28397485000001,-88.28174011,-88.29776785999999,-88.25251127,-88.27644302,-88.40265839,-88.16258567,-91.89367054,-88.46113495,-89.27086729,-89.28893100000001,-89.29751147,-89.30754457,-89.27572524,-89.31630518999999,-88.73274892000001,-88.70998360999999,-88.73051202000001,-88.71523366,-88.28273083000001,-90.34577768,-88.62561040999999,-88.61093588999999,-91.31620411,-87.88282876,-87.88280541,-87.88908177,-87.87778464,-88.38401845,-88.36504364,-88.36803765000001,-88.39222621,-88.36850501000001,-88.38535464,-88.37899541,-88.20942399,-88.1848651,-88.18105538,-88.1849892,-88.1896892,-88.16871415,-88.22581728999999,-88.21108126999999,-88.20128477999999,-88.1811256,-88.18105571,-88.19055863,-88.16871413,-88.73282596,-88.74690812,null,-88.74957218,null,-88.00889720000001,-88.00883168,-88.0081084,-87.99407203,-87.99818725999999,-87.72301279,-87.73388584999999,-87.72293808000001,-87.72291718,-87.74042052999999,-87.71304954999999,-87.71623449000001,-87.71960436000001,-87.71295524999999,-87.72197792,-87.72126717,-87.71795040000001,-87.72006349999999,-87.72514735999999,-87.73930546,-87.72198538000001,-87.71294211999999,-87.71295512,-87.73470983999999,-87.70621694,-87.75079162999999,-87.71625822,-87.72661545,-87.72464185,-87.80841359,-87.74662298,-87.7620895,-87.7628462,-87.75467178,-89.15230117999999,-89.15399617999999,-89.15425248,-88.83575051,-88.81008077,-88.83277852000001,-88.82885509,-88.06672030999999,-88.14653778,-88.12578121,-88.126653,-88.10673767,-88.8631994,-88.83701141,-88.83916923,-88.84169036999999,-88.84762393,-88.83702674,-87.89677167000001,-88.80744964,-88.91884405,-90.34933147,-90.33334428000001,-89.63513304,-87.97099732,-87.97730842999999,-87.87946374000001,-87.89584857,-87.89356005,-89.46945139,-89.4613767,-89.46964602,-89.46964265,-89.45515679,-89.46168937,-89.4877432,-89.46151046999999,-87.85038535,-87.81102901,-89.72852075999999,-88.59041377,-88.22087901,-91.47741704000001,-91.61051403,-88.2259229,-88.67403520000001,-89.40275487,-90.11839965999999,-90.79717968999999,-90.21084398000001,-89.21409647,-89.21496628,-89.49310704,-89.36392126,-87.944925,-87.93539060000001,-87.89792429000001,-87.94728046,-87.95826196,-87.96892844,-87.90733701000001,-87.94760164,-87.95859756999999,-87.99061322999999,-87.96750922,-87.88643767000001,-88.02310181,-87.95136467,-87.94868234,-87.909252,-87.99104994,-87.93372313,-87.94233878,-87.90675589999999,-87.98391429,-87.98533662,-87.93559088000001,-87.96177546,-87.95159699,-87.93735279000001,-87.94822822,-87.97942711,-88.00461661999999,-87.95407105,-87.93463357,-87.91243818,-87.93359113,-87.93821043,-87.92392715,-87.93373968,-87.95651401000001,-87.8849707,-87.89446846,-87.94779394,-87.90519721,-87.96230601000001,-87.99369612,-87.98983126,-87.90707999999999,-87.92876149,-87.96800849,-87.98058258,-88.02104368000001,-88.01465045,-87.98618682,-87.99191259,-87.96536834,-87.94779588999999,-88.03082646999999,-87.90338515000001,-87.95292727,-88.00379943999999,-87.92497349,-87.92056474,-87.91689253,-87.93294501,-87.92801314,-88.01872801,-87.91852498,-87.91601258,-87.91119418,-88.01259601,-87.90940826000001,-87.96007744000001,-87.91274249,-87.91527486,-87.90613049,-87.88778003,-87.90405902000001,-87.91900527999999,-87.91274187,-87.90531341000001,-87.95766755,-87.918509,-87.95518712000001,-87.97581261000001,-87.96081796999999,-87.96736224,-87.90529674,-87.90969518999999,-87.894288,-87.91764008,-87.89109987000001,-87.98445902,-87.94183270000001,-87.90598614,-87.89754238,-87.93796079000001,-87.94779316,-87.88502424000001,-87.88465562,-87.91703765,-87.92628726,-88.02822001,-87.95755396,-87.91409879,-87.91261363,-87.95357499000001,-87.90522591,-87.95774985,-87.98075532999999,-87.90740821,-87.91846959,-87.95770863,-87.90518039,-87.94442007000001,-87.92004986000001,-87.91847405,-87.92590806,-87.93946815,-87.99040511,-87.91438662,-87.9329475,-87.92675618,-87.91107239999999,-87.93089208000001,-87.9479213,-87.92820048,-87.96757027,-87.92819539,-87.94362151,-87.93885278,-87.94757610000001,-87.95749361,-87.94816516,-87.93469182,-87.93538604,-87.90423072999999,-87.89247327,-87.88637802,-87.90664266,-87.8850803,-88.00922785,-88.00478176,-87.96869674,-87.92964416,-87.91020394,-87.92879680999999,-87.96343752,-87.91449736,-87.91255184000001,-87.91569247,-87.96757026,-87.95181316999999,-87.93912133000001,-88.00501366,-87.94773545,-87.91123953,-87.94095184,-87.95657983,-87.94765841,-88.05945133,-87.98918093,-87.96042405,-88.00891611,-87.93892088,-87.96746817,-87.94499690000001,-87.92868448,-87.91399998,-87.9130445,-87.90275187,-87.91890318999999,-87.89934315000001,-87.88806151999999,-87.89804082000001,-87.91097233000001,-87.9050369,-87.89173734000001,-87.90887099,-87.96038776,-87.8952678,-88.01763273,-87.8780592,-87.89495087,-87.89813065,-87.95742002,-87.97269652,-87.99085113,-87.88589533,-87.88497405,-87.90813118,-87.88786232,-87.88350255,-87.91901335,-87.90429275,-87.9172662,-87.94665517999999,-87.94879993000001,-87.93362293,-88.00710793,-87.97332792,-87.91449683,-88.00562530000001,-87.91827814,-87.90547495,-87.87956749,-88.03021325,-88.03021325,-87.99090638,-88.00788597,-87.96779045,-87.96936501,-87.91764415,-87.90525061,-87.90894097,-87.95875608,-87.9504142,-87.93279871,-87.93300797000001,-87.95755386,-87.92814715,-87.95384961000001,-87.9479233,-87.96066383,-87.93042697,-87.93947918000001,-87.93894075,-87.91940965000001,-87.93383389,-87.95563446,-87.96709882,-87.95771598,-87.88913714,-87.91597793,-87.93370183,-87.91255083,-87.94862006,-87.92933678999999,-87.91608128,-88.00114533999999,-87.94801479,-87.95007158,-87.92860915999999,-87.9528091,-88.02220065,-87.94756602,-87.98750377,-87.90799370000001,-87.95763436,-87.92187145,-87.95766838999999,-87.9481959,-87.94814392000001,-87.95692381000001,-87.91882377,-87.88306040000001,-87.9065758,-87.96141470000001,-87.92814342,-87.92903609,-87.89498977,-87.91119549,-87.94091160000001,-87.93423745,-87.91393041000001,-87.91750412,-87.94777874,-87.91894743,-87.92979665999999,-87.94264477999999,-87.95763853,-87.93973833,-87.98509934,-87.90894986000001,-87.90904492999999,-87.91511135,-87.9047456,-87.90432674,-87.94779357,-87.91744565,-87.90903658000001,-87.95640763,-87.94450372999999,-87.90684197,-88.02706803,-87.98842203,-87.9671644,-87.97583837000001,-87.95736343,-87.94993107000001,-87.98615159000001,-88.00539498000001,-87.89953957,-87.90559546,-88.05280856,-87.93131738,-87.94772448000001,-87.95763812,-87.95771592,-88.007244,-87.95767678,-87.94831485,-87.94056071999999,-87.95261557000001,-87.93312702999999,-87.95176434,-87.93219593000001,-87.96729577000001,-87.92014638000001,-88.00493163,-87.97622816000001,-87.98963845,-88.00606673999999,-88.00281569000001,-87.93184554,-87.97145265,-88.00179267,-87.99103821,-87.94758668,-87.95766922999999,-87.95994856999999,-87.94709893,-87.96757374000001,-87.92912884,-87.95749084000001,-87.98022389,-87.97243281999999,-87.95746552,-87.95752019,-87.94777856,-87.95225155999999,-87.90524297,-87.89943592,-87.94477458999999,-87.93477643999999,-87.94789858999999,-87.96712666000001,-87.93567284,-87.9868616,-87.95769006,-87.95947525,-87.95836029,-87.96872731000001,-87.94776955,-87.95901984,-87.92303226999999,-88.02254188000001,-87.98851368,-87.94281698,-87.94683447,-87.94150093,-87.97751981,-87.933468,-87.96698440999999,-87.91707867,-87.96720352,-87.99674386,-87.90625000999999,-87.90346891999999,-87.91104713,-87.92595968000001,-87.9473289,-88.02503240999999,-87.96666566,-87.93433371,-87.94908442000001,-87.94699946999999,-87.89779463000001,-87.9345678,-87.89554457,-87.9142947,-87.92924963,-88.03485199000001,-88.03488152,-87.91121711,-87.94910355,-87.9505915,-87.95797561000001,-87.92680437,-87.9771161,-87.98994351,-87.96734732,-87.9894474,-87.96737005999999,-88.01614456999999,-87.96645725,-87.98743071,-87.9673992,-87.98643723000001,-87.97724171,-87.91248403,-87.92223024,-87.91405756,-87.9190942,-87.89392853,-87.91128922,-88.02075944000001,-87.90488967,-87.94077577,-87.91399453,-87.93322185,-87.90654483,-88.00620227,-87.98703632,-87.96733301,-87.97437589,-88.02956023,-87.99722645,-87.98556899,-87.95409087,-87.98192983,-87.93757445,-87.94767444999999,-87.94898474999999,-87.9762265,-87.94254926000001,-87.94286169999999,-87.9823866,-87.94370179000001,-87.98572392,-87.90092371,-87.89780387,-87.9435502,-87.9137327,-87.93312677999999,-87.94923292,-87.91823658,-87.94288702,-87.9463597,-87.91985441,-87.94785116,-87.9477977,-87.95792684,-87.95288366,-87.98299788999999,-87.92805983,-87.89554563,-87.92231507,-87.90025163999999,-87.91367927,-87.89375056999999,-87.92136462000001,-87.93452427,-87.91870504000001,-87.94828327,-91.41180079,-92.47895307,-91.34985531,-88.50523886000001,-88.25235381,-90.6372178,-88.33955159,-87.9449201,-90.06289178,-88.32413775000001,-88.30390919,-92.50026507,-89.86940092,-89.82623696,-89.47137972,-88.48266984999999,-89.48800971,-88.44586735,-88.46218472,-89.76821346,-89.25704268,-91.92907049999999,-91.23281725,-88.74690841,-87.93247782,-87.94043992,-87.93398881,-87.93708617,-87.9633109,-87.93963724,-87.90822835,-88.02958868,-87.90876183,-88.02580965999999,-89.57476372000001],4,null,"Crash Points",{"interactive":true,"className":"","stroke":true,"color":"black","weight":1,"opacity":0.5,"fill":true,"fillColor":["#D88D2D","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#FAFA6E","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#EDC346","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#808080","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#9B1C1C","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#EDC346","#D88D2D","#EDC346","#BD5721","#EDC346","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#808080","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#808080","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#EDC346","#BD5721","#808080","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#808080","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#FAFA6E","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#808080","#BD5721","#BD5721","#808080","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#EDC346","#808080","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#D88D2D","#808080","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#FAFA6E","#EDC346","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#9B1C1C","#FAFA6E","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#FAFA6E","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#808080","#808080","#FAFA6E","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#FAFA6E","#EDC346","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#FAFA6E","#D88D2D","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#EDC346","#808080","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#EDC346","#FAFA6E","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#EDC346","#BD5721","#808080","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#808080","#BD5721","#9B1C1C","#D88D2D","#808080","#D88D2D","#9B1C1C","#9B1C1C","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#EDC346","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#808080","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#808080","#EDC346","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#808080","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#9B1C1C","#9B1C1C","#808080","#BD5721","#808080","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#EDC346","#9B1C1C","#D88D2D","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#FAFA6E","#9B1C1C","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#D88D2D","#BD5721","#808080","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#EDC346","#FAFA6E","#BD5721","#FAFA6E","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#9B1C1C","#808080","#FAFA6E","#808080","#9B1C1C","#FAFA6E","#9B1C1C","#FAFA6E","#FAFA6E","#EDC346","#808080","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#808080","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#9B1C1C","#808080","#D88D2D","#808080","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#808080","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#808080","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#EDC346","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#EDC346","#EDC346","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#808080","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#EDC346","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#808080","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#808080","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#808080","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#FAFA6E","#BD5721","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#808080","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#FAFA6E","#FAFA6E","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#808080","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#808080","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#BD5721","#9B1C1C","#D88D2D","#EDC346","#BD5721","#EDC346","#D88D2D","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#808080","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#EDC346","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#EDC346","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#FAFA6E","#808080","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#808080","#D88D2D","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#808080","#BD5721","#EDC346","#D88D2D","#808080","#D88D2D","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#808080","#9B1C1C","#D88D2D","#EDC346","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#808080","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#EDC346","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#BD5721","#808080","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#EDC346","#9B1C1C","#EDC346","#EDC346","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#EDC346","#BD5721","#EDC346","#9B1C1C","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#FAFA6E","#FAFA6E","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#FAFA6E","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#EDC346","#FAFA6E","#9B1C1C","#FAFA6E","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#9B1C1C","#D88D2D","#FAFA6E","#808080","#FAFA6E","#9B1C1C","#FAFA6E","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#EDC346","#9B1C1C","#BD5721","#808080","#D88D2D","#EDC346","#EDC346","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#EDC346","#808080","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#FAFA6E","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#808080","#EDC346","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#FAFA6E","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#808080","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#D88D2D","#808080","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#808080","#D88D2D","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#808080","#EDC346","#BD5721","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#EDC346","#FAFA6E","#D88D2D","#BD5721","#FAFA6E","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#FAFA6E","#FAFA6E","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#808080","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#EDC346","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#FAFA6E","#9B1C1C","#BD5721","#EDC346","#EDC346","#9B1C1C","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#EDC346","#FAFA6E","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#808080","#9B1C1C","#EDC346","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#FAFA6E","#9B1C1C","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#FAFA6E","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#808080","#BD5721","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#D88D2D","#EDC346","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#808080","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#BD5721","#EDC346","#BD5721","#808080","#9B1C1C","#FAFA6E","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#FAFA6E","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#EDC346","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#FAFA6E","#808080","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#808080","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#808080","#9B1C1C","#9B1C1C","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#808080","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#808080","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#EDC346","#EDC346","#808080","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#808080","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#EDC346","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#EDC346","#BD5721","#EDC346","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#EDC346","#808080","#808080","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#EDC346","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#D88D2D","#D88D2D","#808080","#D88D2D","#BD5721","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#EDC346","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#808080","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#808080","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#808080","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#808080","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#808080","#808080","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#808080","#EDC346","#9B1C1C","#EDC346","#FAFA6E","#808080","#D88D2D","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#EDC346","#D88D2D","#EDC346","#BD5721","#808080","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#808080","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#808080","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#EDC346","#D88D2D","#BD5721","#EDC346","#EDC346","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#EDC346","#EDC346","#9B1C1C","#9B1C1C","#808080","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#EDC346","#FAFA6E","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#9B1C1C","#D88D2D","#FAFA6E","#808080","#9B1C1C","#808080","#808080","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#EDC346","#EDC346","#D88D2D","#9B1C1C","#BD5721","#808080","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#808080","#EDC346","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#EDC346","#9B1C1C","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#808080","#9B1C1C","#EDC346","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#EDC346","#BD5721","#808080","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#EDC346","#9B1C1C","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#808080","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#808080","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#808080","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#808080","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#FAFA6E","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#808080","#D88D2D","#EDC346","#EDC346","#D88D2D","#BD5721","#808080","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#808080","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#808080","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#808080","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#D88D2D","#FAFA6E","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#808080","#EDC346","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#808080","#808080","#808080","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#808080","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#FAFA6E","#FAFA6E","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#EDC346","#9B1C1C","#BD5721","#FAFA6E","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#9B1C1C","#D88D2D","#808080","#BD5721","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#EDC346","#FAFA6E","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#FAFA6E","#FAFA6E","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#EDC346","#EDC346","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#808080","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#EDC346","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#EDC346","#D88D2D","#BD5721","#EDC346","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#D88D2D","#FAFA6E","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#EDC346","#9B1C1C","#FAFA6E","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#808080","#BD5721","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#808080","#D88D2D","#FAFA6E","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#FAFA6E","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#FAFA6E","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#EDC346","#FAFA6E","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#EDC346","#808080","#9B1C1C","#EDC346","#FAFA6E","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#EDC346","#808080","#808080","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#FAFA6E","#FAFA6E","#FAFA6E","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#EDC346","#EDC346","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#808080","#EDC346","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#D88D2D","#EDC346","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#EDC346","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#BD5721","#9B1C1C","#808080","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#D88D2D","#FAFA6E","#9B1C1C","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#808080","#9B1C1C","#9B1C1C","#D88D2D","#808080","#808080","#9B1C1C","#808080","#BD5721","#FAFA6E","#FAFA6E","#D88D2D","#D88D2D","#808080","#808080","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#EDC346","#D88D2D","#808080","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#FAFA6E","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#808080","#808080","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#FAFA6E","#808080","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#808080","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#EDC346","#808080","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#FAFA6E","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#D88D2D","#FAFA6E","#808080","#9B1C1C","#EDC346","#EDC346","#D88D2D","#9B1C1C","#808080","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#808080","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#808080","#EDC346","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#808080","#9B1C1C","#EDC346","#BD5721","#EDC346","#EDC346","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#808080","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#808080","#FAFA6E","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#FAFA6E","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#808080","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#808080","#808080","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#9B1C1C","#808080","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#EDC346","#EDC346","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#808080","#808080","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#EDC346","#808080","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#FAFA6E","#9B1C1C","#D88D2D","#808080","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#808080","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#FAFA6E","#EDC346","#808080","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#EDC346","#D88D2D","#EDC346","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#EDC346","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#EDC346","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#FAFA6E","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#EDC346","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#EDC346","#BD5721","#BD5721","#9B1C1C","#808080","#D88D2D","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#808080","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#808080","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#EDC346","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#EDC346","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#808080","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#9B1C1C","#FAFA6E","#808080","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#D88D2D","#FAFA6E","#9B1C1C","#EDC346","#FAFA6E","#BD5721","#BD5721","#808080","#808080","#BD5721","#D88D2D","#9B1C1C","#EDC346","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#BD5721","#EDC346","#BD5721","#808080","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#808080","#EDC346","#EDC346","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#808080","#BD5721","#EDC346","#808080","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#808080","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#808080","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#EDC346","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#D88D2D","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#9B1C1C","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#808080","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#FAFA6E","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#808080","#D88D2D","#EDC346","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#808080","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#808080","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#FAFA6E","#9B1C1C","#FAFA6E","#BD5721","#808080","#BD5721","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#FAFA6E","#FAFA6E","#FAFA6E","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#808080","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#EDC346","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#808080","#9B1C1C","#FAFA6E","#D88D2D","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#EDC346","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#D88D2D","#808080","#FAFA6E","#EDC346","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#808080","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#808080","#808080","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#FAFA6E","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#808080","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#FAFA6E","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#FAFA6E","#808080","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#FAFA6E","#FAFA6E","#808080","#9B1C1C","#9B1C1C","#D88D2D","#808080","#D88D2D","#808080","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#FAFA6E","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#EDC346","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#EDC346","#FAFA6E","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#808080","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#808080","#BD5721","#EDC346","#BD5721","#9B1C1C","#808080","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#D88D2D","#808080","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#808080","#D88D2D","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#808080","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#808080","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#FAFA6E","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#FAFA6E","#BD5721","#EDC346","#BD5721","#FAFA6E","#FAFA6E","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#EDC346","#EDC346","#BD5721","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#808080","#EDC346","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#EDC346","#D88D2D","#EDC346","#FAFA6E","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#D88D2D","#D88D2D","#BD5721","#808080","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#808080","#EDC346","#9B1C1C","#BD5721","#EDC346","#BD5721","#9B1C1C","#808080","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#EDC346","#FAFA6E","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#808080","#FAFA6E","#9B1C1C","#808080","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#808080","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#EDC346","#D88D2D","#BD5721","#EDC346","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#EDC346","#FAFA6E","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#808080","#FAFA6E","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#D88D2D","#EDC346","#9B1C1C","#FAFA6E","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#EDC346","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#808080","#D88D2D","#BD5721","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#D88D2D","#EDC346","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#808080","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#808080","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#D88D2D","#EDC346","#EDC346","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#D88D2D","#FAFA6E","#FAFA6E","#D88D2D","#EDC346","#D88D2D","#FAFA6E","#D88D2D","#D88D2D","#808080","#BD5721","#BD5721","#D88D2D","#808080","#FAFA6E","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#808080","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#808080","#FAFA6E","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#EDC346","#BD5721","#808080","#FAFA6E","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#FAFA6E","#808080","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#FAFA6E","#FAFA6E","#BD5721","#FAFA6E","#FAFA6E","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#EDC346","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#EDC346","#EDC346","#BD5721","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#EDC346","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#FAFA6E","#EDC346","#9B1C1C","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#EDC346","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#EDC346","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#EDC346","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#EDC346","#FAFA6E","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#FAFA6E","#FAFA6E","#EDC346","#9B1C1C","#EDC346","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#D88D2D","#EDC346","#D88D2D","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#808080","#BD5721","#9B1C1C","#D88D2D","#808080","#D88D2D","#BD5721","#D88D2D","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#808080","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#808080","#9B1C1C","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#EDC346","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#EDC346","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#9B1C1C","#9B1C1C","#808080","#BD5721","#FAFA6E","#BD5721","#EDC346","#D88D2D","#9B1C1C","#EDC346","#EDC346","#808080","#D88D2D","#808080","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#FAFA6E","#BD5721","#EDC346","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#FAFA6E","#D88D2D","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#EDC346","#D88D2D","#FAFA6E","#EDC346","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#EDC346","#9B1C1C","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#D88D2D","#9B1C1C","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#808080","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#BD5721","#808080","#BD5721","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#808080","#9B1C1C","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#BD5721","#EDC346","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#FAFA6E","#BD5721","#BD5721","#808080","#BD5721","#808080","#D88D2D","#FAFA6E","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#EDC346","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#808080","#EDC346","#9B1C1C","#EDC346","#9B1C1C","#D88D2D","#BD5721","#BD5721","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#808080","#BD5721","#BD5721","#808080","#BD5721","#808080","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#808080","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#FAFA6E","#D88D2D","#BD5721","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#EDC346","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#808080","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#D88D2D","#EDC346","#BD5721","#9B1C1C","#EDC346","#9B1C1C","#808080","#D88D2D","#BD5721","#D88D2D","#BD5721","#9B1C1C","#EDC346","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#D88D2D","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#808080","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#808080","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#9B1C1C","#BD5721","#FAFA6E","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#D88D2D","#808080","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#D88D2D","#BD5721","#FAFA6E","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#EDC346","#BD5721","#D88D2D","#D88D2D","#9B1C1C","#808080","#BD5721","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#BD5721","#808080","#9B1C1C","#FAFA6E","#EDC346","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#FAFA6E","#808080","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#EDC346","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#FAFA6E","#FAFA6E","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#EDC346","#BD5721","#9B1C1C","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#EDC346","#D88D2D","#BD5721","#D88D2D","#EDC346","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#EDC346","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#EDC346","#BD5721","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#EDC346","#EDC346","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#BD5721","#D88D2D","#EDC346","#BD5721","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#EDC346","#808080","#9B1C1C","#D88D2D","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#BD5721","#808080","#BD5721","#EDC346","#BD5721","#EDC346","#D88D2D","#BD5721","#BD5721","#9B1C1C","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#D88D2D","#BD5721","#EDC346","#D88D2D","#EDC346","#D88D2D","#808080","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#EDC346","#EDC346","#D88D2D","#D88D2D","#9B1C1C","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#BD5721","#BD5721","#9B1C1C","#FAFA6E","#808080","#FAFA6E","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#9B1C1C","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#EDC346","#9B1C1C","#9B1C1C","#808080","#BD5721","#BD5721","#9B1C1C","#808080","#D88D2D","#808080","#D88D2D","#BD5721","#EDC346","#EDC346","#D88D2D","#BD5721","#BD5721","#D88D2D","#EDC346","#808080","#D88D2D","#9B1C1C","#BD5721","#EDC346","#BD5721","#FAFA6E","#EDC346","#808080","#EDC346","#EDC346","#BD5721","#D88D2D","#FAFA6E","#EDC346","#BD5721","#BD5721","#808080","#EDC346","#9B1C1C","#EDC346","#BD5721","#9B1C1C","#808080","#D88D2D","#808080","#9B1C1C","#BD5721","#EDC346","#EDC346","#9B1C1C","#BD5721","#BD5721","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#D88D2D","#BD5721","#9B1C1C","#9B1C1C","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#EDC346","#808080","#808080","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#EDC346","#BD5721","#808080","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#EDC346","#BD5721","#BD5721","#808080","#808080","#D88D2D","#BD5721","#9B1C1C","#D88D2D","#BD5721","#D88D2D","#EDC346","#FAFA6E","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#BD5721","#FAFA6E","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#BD5721","#D88D2D","#D88D2D","#D88D2D","#EDC346","#D88D2D","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#808080","#BD5721","#808080","#BD5721","#EDC346","#BD5721","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#BD5721","#FAFA6E","#D88D2D","#BD5721","#808080","#BD5721","#808080","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#EDC346","#808080","#BD5721","#BD5721","#D88D2D","#D88D2D","#D88D2D","#808080","#EDC346","#D88D2D","#808080","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#BD5721","#EDC346","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#808080","#808080","#EDC346","#BD5721","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#9B1C1C","#808080","#BD5721","#D88D2D","#9B1C1C","#EDC346","#D88D2D","#BD5721","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#9B1C1C","#BD5721","#BD5721","#FAFA6E","#BD5721","#BD5721","#BD5721","#BD5721","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#808080","#D88D2D","#BD5721","#808080","#EDC346","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#808080","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#808080","#808080","#BD5721","#BD5721","#EDC346","#BD5721","#EDC346","#9B1C1C","#808080","#D88D2D","#9B1C1C","#BD5721","#D88D2D","#D88D2D","#D88D2D","#BD5721","#D88D2D","#BD5721","#808080","#D88D2D","#D88D2D","#D88D2D","#EDC346","#9B1C1C","#D88D2D","#D88D2D","#808080","#808080","#D88D2D","#BD5721","#EDC346","#EDC346","#808080","#BD5721","#BD5721","#BD5721","#808080","#FAFA6E","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#808080","#808080","#BD5721","#9B1C1C","#BD5721","#9B1C1C","#9B1C1C","#808080","#808080","#9B1C1C","#BD5721","#808080","#FAFA6E","#D88D2D","#FAFA6E","#9B1C1C","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#808080","#9B1C1C","#9B1C1C","#808080","#BD5721","#808080","#808080","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#808080","#D88D2D","#D88D2D","#808080","#D88D2D","#D88D2D","#D88D2D","#BD5721","#BD5721","#BD5721","#D88D2D","#BD5721","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#D88D2D","#9B1C1C","#D88D2D","#808080","#808080","#BD5721","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#808080","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#FAFA6E","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#D88D2D","#BD5721","#EDC346","#808080","#D88D2D","#9B1C1C","#BD5721","#BD5721","#D88D2D","#BD5721","#BD5721","#D88D2D","#FAFA6E","#BD5721","#D88D2D","#808080","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#D88D2D","#9B1C1C","#808080","#D88D2D","#9B1C1C","#9B1C1C","#9B1C1C","#BD5721","#D88D2D","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#BD5721","#808080","#9B1C1C","#FAFA6E","#BD5721","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#BD5721","#9B1C1C","#D88D2D","#FAFA6E","#BD5721","#BD5721","#808080","#9B1C1C","#FAFA6E","#BD5721","#BD5721","#EDC346","#9B1C1C","#BD5721","#BD5721","#BD5721","#D88D2D","#FAFA6E","#D88D2D","#EDC346","#EDC346","#BD5721","#EDC346"],"fillOpacity":0.8},null,null,null,null,["<b>01/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>04/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>09/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/29/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 58","<b>10/02/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>10/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>11/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>01/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>02/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>03/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>04/15/2017<\/b><\/br>Fatality<\/br>pedestrian age: 24","<b>04/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>08/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>02/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>02/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>05/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>05/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>05/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>08/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>11/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>08/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>09/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>10/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>01/24/2017<\/b><\/br>NA<\/br>pedestrian age: 76","<b>03/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>03/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>02/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>09/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>07/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>12/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>10/08/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>06/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>06/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>08/25/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>11/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>01/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>03/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>03/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>04/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>02/17/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>01/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>01/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>03/18/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>03/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>03/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>05/26/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>06/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>07/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>09/21/2017<\/b><\/br>NA<\/br>pedestrian age: 17","<b>01/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>02/17/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>06/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>06/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>01/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>05/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>03/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>07/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>11/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>03/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>02/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>05/25/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>02/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>04/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>02/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>02/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>04/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>07/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>07/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>02/25/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>09/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>09/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>12/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>07/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>04/05/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>11/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>03/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>01/26/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>01/16/2017<\/b><\/br>NA<\/br>pedestrian age: 61","<b>04/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>04/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>09/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>05/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>08/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>09/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>09/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>10/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>07/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>01/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>03/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>02/20/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>05/31/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 83","<b>07/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>01/25/2017<\/b><\/br>NA<\/br>pedestrian age: 21","<b>02/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>05/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>05/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>05/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>11/09/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>11/13/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>12/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>07/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>11/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>05/15/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>05/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>05/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>12/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 86","<b>06/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>07/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>07/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>06/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>06/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>10/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>12/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>08/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>12/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>12/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>08/19/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>11/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>07/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>10/10/2017<\/b><\/br>Fatality<\/br>pedestrian age: 62","<b>12/04/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>05/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>09/30/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>10/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>11/04/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>02/17/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>03/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>03/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>05/23/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>11/17/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 35","<b>01/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>01/09/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 78","<b>08/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>09/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>03/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>05/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>04/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 116","<b>04/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>12/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>06/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>04/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>09/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>09/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>11/28/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>07/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>03/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>05/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>09/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>10/16/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>10/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>02/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>05/05/2017<\/b><\/br>NA<\/br>pedestrian age: 21","<b>06/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>06/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>10/07/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>01/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>02/26/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>04/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>06/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>10/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>04/26/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>10/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>11/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>07/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>08/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>11/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>09/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>10/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>05/13/2017<\/b><\/br>Fatality<\/br>pedestrian age: 30","<b>06/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>08/29/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>05/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>05/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>06/26/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>08/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>06/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>08/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>11/24/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>10/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>12/07/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>06/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>04/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>03/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>09/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>09/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>05/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>11/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>06/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>10/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>01/12/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>08/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>08/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>10/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>02/20/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>03/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>11/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>08/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>10/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>07/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>08/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/03/2017<\/b><\/br>NA<\/br>pedestrian age: 60","<b>10/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>09/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>10/09/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>01/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>04/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>09/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>03/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>10/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>04/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>07/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>08/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>07/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>07/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>09/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>11/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 81","<b>09/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>01/16/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>04/19/2017<\/b><\/br>NA<\/br>pedestrian age: 2","<b>07/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>02/22/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>12/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>08/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>09/08/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 70","<b>09/20/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>09/29/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>10/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>04/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>09/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>06/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>10/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>10/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>04/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>05/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>08/15/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>10/15/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>04/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>08/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>09/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/22/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>07/19/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>09/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>10/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>11/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>05/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>04/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>09/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>10/09/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>08/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>09/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/18/2017<\/b><\/br>Fatality<\/br>pedestrian age: 54","<b>06/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>09/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/14/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>02/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>09/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>03/13/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 50","<b>02/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>07/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>11/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>12/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>01/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>08/08/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 56","<b>08/09/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>08/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>04/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/13/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>10/16/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 9","<b>06/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>08/31/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>09/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>04/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>06/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>09/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>09/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>12/01/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>09/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>10/20/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>10/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>02/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>06/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>08/29/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>10/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 85","<b>12/05/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>09/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>11/29/2017<\/b><\/br>Fatality<\/br>pedestrian age: 54","<b>12/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>04/14/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>05/03/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>07/14/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>08/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>08/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>09/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>10/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>11/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>11/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>07/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>09/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>12/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>04/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>03/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>03/29/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>05/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>06/16/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>10/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>01/04/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>03/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>02/05/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 63","<b>05/22/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>09/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>06/06/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>09/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>10/03/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 73","<b>09/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>10/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/20/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>01/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/03/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>09/17/2017<\/b><\/br>Fatality<\/br>pedestrian age: 29","<b>08/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/04/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>04/11/2017<\/b><\/br>Fatality<\/br>pedestrian age: 38","<b>09/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>09/05/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>12/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>10/12/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 7","<b>08/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>04/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>06/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>09/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>10/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>07/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>08/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>06/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>10/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>05/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>02/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>09/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>02/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>07/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>06/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>07/26/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>09/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>03/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>05/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>05/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>04/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>06/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>02/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>09/12/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>11/11/2017<\/b><\/br>NA<\/br>pedestrian age: 51","<b>12/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>03/22/2017<\/b><\/br>Fatality<\/br>pedestrian age: 40","<b>02/23/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>10/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/26/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 48","<b>08/18/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>08/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>05/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>02/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>06/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>02/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>05/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>09/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>02/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>08/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>05/30/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 9","<b>09/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>03/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>10/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>02/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>07/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>03/03/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 9","<b>12/09/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>08/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>01/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>08/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>03/08/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>04/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>07/27/2017<\/b><\/br>NA<\/br>pedestrian age: 83","<b>09/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>09/03/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>07/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>10/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>11/10/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>09/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>08/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>11/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>07/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>03/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/15/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>05/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>11/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>05/07/2017<\/b><\/br>Fatality<\/br>pedestrian age: 56","<b>08/09/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>06/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/11/2017<\/b><\/br>NA<\/br>pedestrian age: 58","<b>11/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>01/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>01/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 76","<b>02/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>09/19/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>03/12/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/08/2017<\/b><\/br>Fatality<\/br>pedestrian age: 25","<b>12/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>08/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>05/29/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>12/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>11/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>04/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>06/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>08/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>02/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>06/04/2017<\/b><\/br>Fatality<\/br>pedestrian age: 44","<b>08/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>04/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>09/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>09/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>12/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/19/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>11/26/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>07/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>10/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>01/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>07/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>02/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>02/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>08/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>08/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>08/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>11/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>12/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>02/26/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>07/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>09/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/30/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>11/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>05/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>01/25/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 85","<b>07/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>09/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>10/29/2017<\/b><\/br>NA<\/br>pedestrian age: 24","<b>04/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>10/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>10/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>09/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>09/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>10/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>10/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>03/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>05/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>06/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>10/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/09/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>12/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>08/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>12/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>03/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>05/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>08/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>05/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>06/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>07/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>07/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>01/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>04/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>04/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>05/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>06/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>07/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>09/12/2017<\/b><\/br>Fatality<\/br>pedestrian age: 73","<b>11/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>11/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>12/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>01/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>01/31/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>01/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>05/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>07/21/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>08/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>08/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>09/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>09/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>10/09/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: NA","<b>10/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>11/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>11/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>12/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>12/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>03/31/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>05/26/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>11/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>05/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>08/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 101","<b>10/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>01/08/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>09/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 0","<b>10/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>06/26/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: NA","<b>09/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>12/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>07/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>08/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>09/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>07/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>02/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>01/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>03/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>09/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>12/18/2017<\/b><\/br>Fatality<\/br>pedestrian age: 69","<b>06/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>02/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>05/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>04/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>05/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/21/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>09/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>09/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>04/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>10/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>05/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>09/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>12/31/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>06/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>10/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>11/03/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>11/20/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>02/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>08/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>08/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>10/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>11/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>08/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/02/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>02/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>09/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>04/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>06/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>11/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>07/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>05/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>02/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>03/31/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>05/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>05/30/2017<\/b><\/br>Fatality<\/br>pedestrian age: 73","<b>08/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>07/04/2017<\/b><\/br>Fatality<\/br>pedestrian age: 71","<b>04/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/03/2017<\/b><\/br>NA<\/br>pedestrian age: 25","<b>07/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>10/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>10/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>07/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>11/04/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>06/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>07/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>08/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>12/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>06/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>04/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>05/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>09/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>12/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>11/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>07/09/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 3","<b>08/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>08/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>08/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>04/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>08/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>10/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>05/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/02/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>09/16/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>05/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>11/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>12/21/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>06/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>05/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>11/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>09/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>09/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>07/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>09/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>10/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>08/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>08/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>04/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>08/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>01/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>03/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>05/31/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>09/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>12/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>05/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>06/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>06/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>04/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>08/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>01/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>11/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>03/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>09/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>10/14/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>06/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 78","<b>08/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>11/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>08/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>08/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>12/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>07/13/2017<\/b><\/br>NA<\/br>pedestrian age: 54","<b>07/25/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>09/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>12/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>01/20/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>12/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>01/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>09/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>09/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>11/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>07/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>02/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>09/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>04/10/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>07/16/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>09/21/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>10/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>10/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>09/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>04/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>08/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>10/29/2017<\/b><\/br>Fatality<\/br>pedestrian age: 37","<b>11/25/2017<\/b><\/br>NA<\/br>pedestrian age: 64","<b>07/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>07/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/28/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/13/2017<\/b><\/br>Fatality<\/br>pedestrian age: 18","<b>12/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>05/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/03/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 55","<b>06/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>11/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>09/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>10/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>12/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>09/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>11/25/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>02/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>08/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>08/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>10/09/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>03/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>04/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 83","<b>05/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>01/02/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>01/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>09/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>09/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>10/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>12/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>10/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 80","<b>09/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>10/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>07/03/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>07/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>12/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>03/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>05/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 92","<b>06/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>10/09/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>11/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>09/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>03/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>05/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 1","<b>06/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>02/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>05/31/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>08/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>08/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>08/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/17/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>01/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>04/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>05/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>05/25/2017<\/b><\/br>Fatality<\/br>pedestrian age: 80","<b>05/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>07/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 86","<b>07/25/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 72","<b>06/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>02/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 94","<b>12/31/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>03/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>09/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>05/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>06/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>03/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>12/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>10/13/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>01/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>12/15/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 79","<b>09/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>03/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>04/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/10/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>08/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>10/24/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>11/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>02/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/03/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>06/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>11/07/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>04/11/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>04/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>06/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>01/23/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>04/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/19/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>07/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 81","<b>12/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>02/25/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>09/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>05/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>08/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>04/07/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>04/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>07/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>07/01/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>05/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>06/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>08/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>09/22/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 59","<b>11/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 93","<b>05/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>02/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>05/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>11/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>06/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>07/11/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>09/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>12/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>10/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>09/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>12/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>12/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>09/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>10/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/19/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>11/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>12/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>11/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>11/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/08/2017<\/b><\/br>Fatality<\/br>pedestrian age: 48","<b>05/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>09/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>11/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>12/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>05/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>05/17/2017<\/b><\/br>Fatality<\/br>pedestrian age: 26","<b>11/07/2017<\/b><\/br>Fatality<\/br>pedestrian age: 31","<b>10/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>11/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>12/07/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>07/28/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 91","<b>07/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>10/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>06/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/19/2017<\/b><\/br>NA<\/br>pedestrian age: 34","<b>01/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>12/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>09/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>12/01/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/24/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>10/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>10/31/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>06/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>10/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>09/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/28/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>11/30/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>10/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>12/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>03/14/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>08/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>05/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>01/03/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>08/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>05/09/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>08/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>06/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>08/05/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>12/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>08/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>05/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/29/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>06/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>09/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/12/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 2","<b>03/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>10/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>11/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>04/03/2017<\/b><\/br>Fatality<\/br>pedestrian age: 62","<b>04/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>09/24/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>10/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>06/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>10/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>12/06/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>01/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>04/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>08/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>05/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>07/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>07/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>09/15/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>07/22/2017<\/b><\/br>Fatality<\/br>pedestrian age: 74","<b>04/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>07/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>07/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>12/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>06/08/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>07/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>06/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>06/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>09/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>05/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>05/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>05/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>05/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/25/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>07/01/2017<\/b><\/br>Fatality<\/br>pedestrian age: 82","<b>06/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>08/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>09/12/2017<\/b><\/br>NA<\/br>pedestrian age: 20","<b>02/10/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>09/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>12/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>10/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>12/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>05/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>09/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>04/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>04/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>09/09/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>11/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>04/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>08/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>06/21/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 2","<b>07/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>05/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>03/17/2017<\/b><\/br>Fatality<\/br>pedestrian age: 86","<b>03/15/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 52","<b>09/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>07/25/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>07/21/2017<\/b><\/br>Fatality<\/br>pedestrian age: 55","<b>11/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>12/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>02/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>09/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>05/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/08/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>11/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>04/20/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>01/02/2017<\/b><\/br>Fatality<\/br>pedestrian age: 77","<b>08/20/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>07/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>09/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>06/01/2017<\/b><\/br>NA<\/br>pedestrian age: 39","<b>12/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>01/31/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>06/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>06/09/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>07/25/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/28/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>08/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>11/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>04/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>08/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>02/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>02/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>03/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>04/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>06/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/31/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>07/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>08/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 91","<b>10/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>12/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>05/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>06/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>03/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>10/19/2017<\/b><\/br>NA<\/br>pedestrian age: 51","<b>12/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>08/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>08/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 2","<b>08/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>06/20/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>06/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>04/10/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>07/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>04/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>07/17/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 8","<b>06/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>08/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>12/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>10/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>05/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>07/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>07/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>03/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/26/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>09/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>11/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>07/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>06/30/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>07/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>07/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>10/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>11/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>05/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>02/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>07/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>07/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>01/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/28/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>09/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>10/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>03/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>12/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/06/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>08/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>09/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>05/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>05/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>01/10/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>05/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>10/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>05/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>06/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>02/18/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>04/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>06/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>10/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>10/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>09/26/2017<\/b><\/br>Fatality<\/br>pedestrian age: 65","<b>05/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>04/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>04/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>08/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>08/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>09/16/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>06/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>09/12/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>11/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>03/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>09/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>05/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>05/20/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>09/23/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>10/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>01/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>09/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>03/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/07/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 7","<b>06/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>06/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>06/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>06/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>05/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>02/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>03/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>05/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>05/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>06/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>11/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>04/09/2017<\/b><\/br>Fatality<\/br>pedestrian age: 75","<b>05/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>08/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>09/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>10/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>12/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>10/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>08/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>03/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>05/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>04/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/22/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>09/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>01/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>04/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>06/07/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>07/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>03/26/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>07/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>03/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>04/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>09/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>11/15/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>01/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>02/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>04/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>05/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>06/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>06/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>08/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>09/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>11/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>04/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>06/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>05/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>06/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>07/21/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>04/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>08/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>02/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>04/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>12/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>08/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>10/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>01/16/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 42","<b>02/01/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 57","<b>10/17/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>07/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>11/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>09/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>01/31/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>08/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 80","<b>09/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>06/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>09/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>10/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>06/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>05/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>03/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/23/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>02/19/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>08/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>06/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>03/26/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>05/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>10/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>03/08/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>06/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>04/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>08/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>07/09/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>07/08/2017<\/b><\/br>Fatality<\/br>pedestrian age: 23","<b>02/03/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>07/24/2017<\/b><\/br>Fatality<\/br>pedestrian age: 82","<b>06/08/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>04/01/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 57","<b>01/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>09/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>05/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>02/20/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 45","<b>03/25/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 90","<b>10/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>11/02/2017<\/b><\/br>Fatality<\/br>pedestrian age: 59","<b>07/10/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>01/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>06/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>05/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>05/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>11/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>11/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>09/09/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>05/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/22/2017<\/b><\/br>NA<\/br>pedestrian age: 55","<b>06/15/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>04/22/2017<\/b><\/br>Fatality<\/br>pedestrian age: 30","<b>07/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>10/04/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>10/21/2017<\/b><\/br>Fatality<\/br>pedestrian age: 28","<b>02/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>08/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>05/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/05/2017<\/b><\/br>NA<\/br>pedestrian age: 78","<b>09/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>01/09/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 52","<b>05/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/15/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>07/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>05/28/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>12/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>01/03/2017<\/b><\/br>NA<\/br>pedestrian age: 67","<b>06/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>08/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>07/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>07/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>05/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>06/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>12/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>03/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>05/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>09/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>06/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>07/24/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>10/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>09/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>07/08/2017<\/b><\/br>NA<\/br>pedestrian age: 30","<b>04/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>10/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/24/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 69","<b>08/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>08/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>08/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>08/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>12/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>10/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>09/16/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>05/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>05/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>08/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>06/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>06/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>07/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>12/11/2017<\/b><\/br>Fatality<\/br>pedestrian age: 78","<b>08/17/2017<\/b><\/br>Fatality<\/br>pedestrian age: 44","<b>08/24/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 53","<b>01/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>04/28/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>02/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>06/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>08/11/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 5","<b>08/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>02/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>08/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>08/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>08/16/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>08/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>05/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>12/31/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>04/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>07/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>06/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>10/03/2017<\/b><\/br>Fatality<\/br>pedestrian age: 10","<b>12/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>12/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 76","<b>08/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>09/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>03/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>08/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>11/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>10/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/15/2017<\/b><\/br>NA<\/br>pedestrian age: 22","<b>10/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>03/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>08/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>12/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>07/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>06/07/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>08/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>11/06/2017<\/b><\/br>Fatality<\/br>pedestrian age: 74","<b>10/12/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>04/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>09/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>05/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>08/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>10/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>06/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>05/11/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 75","<b>09/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>11/28/2017<\/b><\/br>Fatality<\/br>pedestrian age: 90","<b>01/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>02/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>04/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>11/04/2017<\/b><\/br>NA<\/br>pedestrian age: 40","<b>10/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>01/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>06/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>10/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>12/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>04/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>01/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>02/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>02/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>08/10/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>10/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>10/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>04/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>08/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>09/19/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>10/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>08/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>07/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>11/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>04/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 7","<b>04/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>08/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>10/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 76","<b>02/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>08/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>12/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>11/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>12/21/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>05/20/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>02/26/2017<\/b><\/br>Fatality<\/br>pedestrian age: 23","<b>09/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>05/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>03/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>08/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/09/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>03/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>03/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>01/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>05/07/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>06/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>09/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>05/31/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>08/31/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>11/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>04/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>02/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>01/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>05/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 88","<b>09/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>08/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>12/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>10/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>06/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>05/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>06/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>08/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>06/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>07/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/31/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>09/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>04/20/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>06/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>07/25/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>08/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>05/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 83","<b>11/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>05/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 87","<b>10/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>12/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>04/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>10/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>10/10/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>11/09/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>08/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>09/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>07/08/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>05/10/2017<\/b><\/br>NA<\/br>pedestrian age: 61","<b>07/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>09/09/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>04/10/2017<\/b><\/br>NA<\/br>pedestrian age: 37","<b>07/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>10/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>03/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>06/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>01/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>07/03/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 52","<b>06/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>08/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>06/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 2","<b>02/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>09/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/18/2017<\/b><\/br>Fatality<\/br>pedestrian age: 50","<b>09/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>11/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>05/30/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 31","<b>04/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>11/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>11/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>10/09/2017<\/b><\/br>Fatality<\/br>pedestrian age: 69","<b>05/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>07/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>07/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>07/30/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 8","<b>05/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>08/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>09/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>03/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>08/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>04/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>06/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>10/30/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>12/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>02/06/2017<\/b><\/br>NA<\/br>pedestrian age: 53","<b>03/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>10/04/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 52","<b>08/17/2017<\/b><\/br>Fatality<\/br>pedestrian age: 37","<b>08/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>03/13/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>10/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>09/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>11/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>09/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>10/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>11/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>10/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>02/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>02/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>07/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>07/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>06/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>05/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>10/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>03/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>04/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>08/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>01/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>03/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>04/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>03/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>04/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>05/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>05/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>05/22/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>06/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>06/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>12/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>02/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>05/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>05/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>05/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>02/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>06/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>07/03/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>02/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>03/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>04/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>01/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>01/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/30/2017<\/b><\/br>Fatality<\/br>pedestrian age: 87","<b>03/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>08/02/2017<\/b><\/br>NA<\/br>pedestrian age: 61","<b>12/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>02/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>03/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>03/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>07/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>10/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>12/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>05/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>09/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>04/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>05/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>06/04/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>05/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>07/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>12/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>06/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>07/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>09/16/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>08/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>10/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>09/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 7","<b>11/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>11/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>11/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>04/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 91","<b>06/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>10/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>07/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>01/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>08/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/10/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>10/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>02/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>05/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>05/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>03/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>06/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>08/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>04/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>06/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>06/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>07/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>08/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>07/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>09/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>09/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>10/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>02/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>05/18/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 49","<b>06/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>09/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>03/04/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>07/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>07/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>05/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>06/04/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>07/28/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 3","<b>08/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>02/12/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>12/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>05/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>04/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>09/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>03/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>07/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>12/07/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 8","<b>07/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 86","<b>04/29/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>04/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>07/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>06/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>08/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>02/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>06/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>08/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>08/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>09/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>05/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>11/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>10/09/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>07/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>09/09/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>11/16/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>05/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>01/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>02/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>08/10/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>06/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>06/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>06/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>06/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>10/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>06/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>10/21/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>08/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>05/03/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>07/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>12/11/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/24/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>04/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>06/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>11/05/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>08/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>05/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>08/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>11/04/2017<\/b><\/br>Fatality<\/br>pedestrian age: 45","<b>07/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>02/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>10/20/2017<\/b><\/br>Fatality<\/br>pedestrian age: 39","<b>05/28/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 7","<b>07/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>09/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>12/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>11/12/2017<\/b><\/br>NA<\/br>pedestrian age: 61","<b>07/05/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>09/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>03/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>05/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 84","<b>06/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>05/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>07/08/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>09/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>11/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>01/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 79","<b>04/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>05/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>05/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>01/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>02/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>10/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>11/05/2017<\/b><\/br>NA<\/br>pedestrian age: 48","<b>07/29/2017<\/b><\/br>NA<\/br>pedestrian age: 17","<b>07/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>02/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 3","<b>11/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>01/01/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>01/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>07/19/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>08/19/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>01/01/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/04/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>10/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>10/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>04/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>04/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>05/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>06/04/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>06/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>01/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 86","<b>09/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>09/06/2017<\/b><\/br>NA<\/br>pedestrian age: 36","<b>04/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>08/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/05/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 54","<b>03/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>05/05/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>12/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 81","<b>08/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>08/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>01/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>10/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>01/25/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>09/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/03/2017<\/b><\/br>NA<\/br>pedestrian age: 19","<b>09/25/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>11/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>03/03/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>02/20/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>02/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>07/24/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>04/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>01/25/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 68","<b>08/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>09/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>10/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>06/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 2","<b>09/26/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>10/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>01/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>05/09/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>05/23/2017<\/b><\/br>NA<\/br>pedestrian age: 19","<b>09/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>08/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>09/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>05/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>07/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>07/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>09/25/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>09/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>11/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>11/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>10/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>10/23/2017<\/b><\/br>NA<\/br>pedestrian age: 18","<b>09/20/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>06/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>11/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>01/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>09/13/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>06/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>03/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>06/10/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>08/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>08/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>06/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>05/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>06/29/2017<\/b><\/br>Fatality<\/br>pedestrian age: 39","<b>08/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>04/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>05/04/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/28/2017<\/b><\/br>Fatality<\/br>pedestrian age: 45","<b>03/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>06/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>12/08/2017<\/b><\/br>Fatality<\/br>pedestrian age: 70","<b>07/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 84","<b>11/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>09/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>09/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>10/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>01/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>10/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>04/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>08/25/2017<\/b><\/br>NA<\/br>pedestrian age: 38","<b>07/27/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>05/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>01/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>06/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>04/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>05/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 0","<b>07/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>12/09/2017<\/b><\/br>Fatality<\/br>pedestrian age: 36","<b>04/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>01/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>04/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>07/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>07/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>10/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>10/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>10/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>04/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>09/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>09/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>02/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>01/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>11/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>11/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>06/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>03/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>11/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/20/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>10/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>12/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>07/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>05/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/12/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>06/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>05/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>05/08/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>10/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>07/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>10/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>01/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/30/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 7","<b>07/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>09/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>02/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>10/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>11/11/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>10/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/25/2017<\/b><\/br>NA<\/br>pedestrian age: 69","<b>07/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>07/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>10/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>11/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>09/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>10/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>11/28/2017<\/b><\/br>NA<\/br>pedestrian age: 73","<b>01/02/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>04/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/09/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>08/28/2017<\/b><\/br>NA<\/br>pedestrian age: 27","<b>12/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>08/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>10/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>05/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/01/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>10/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>10/21/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>01/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>02/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>01/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/01/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 44","<b>09/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>09/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>10/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>04/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>04/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>06/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>06/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>06/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>06/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>10/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>03/11/2017<\/b><\/br>NA<\/br>pedestrian age: 45","<b>07/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>07/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>07/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 80","<b>11/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>07/29/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>08/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>11/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>12/08/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>03/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>03/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>06/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>07/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>04/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>04/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>07/20/2017<\/b><\/br>NA<\/br>pedestrian age: 67","<b>11/29/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>09/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>09/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>12/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/03/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 48","<b>10/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/27/2017<\/b><\/br>NA<\/br>pedestrian age: 33","<b>03/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>01/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>02/16/2017<\/b><\/br>Fatality<\/br>pedestrian age: 87","<b>11/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>02/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>12/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>10/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>06/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 87","<b>11/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>12/21/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>10/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>04/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>04/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>08/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>10/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>08/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>09/13/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>04/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>06/06/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 8","<b>02/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>10/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>11/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>12/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>01/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>06/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>08/17/2017<\/b><\/br>NA<\/br>pedestrian age: 20","<b>08/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>09/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>12/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>03/13/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>12/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>04/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>04/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>07/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>09/09/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>10/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>11/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>02/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>07/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>08/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>08/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>08/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>12/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>12/29/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>02/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>10/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>07/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>07/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>04/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>05/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>12/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>12/12/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>01/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>03/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>05/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>07/03/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 9","<b>09/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>11/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>03/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>03/21/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>06/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>07/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>09/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>09/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>09/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>04/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>06/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>07/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>07/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>09/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>12/23/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>01/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>07/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>10/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>11/01/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>12/04/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>04/15/2017<\/b><\/br>NA<\/br>pedestrian age: 34","<b>06/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>09/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>10/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>11/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>12/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>10/21/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>06/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>06/26/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>07/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>10/03/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>02/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>09/24/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>06/21/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>12/26/2017<\/b><\/br>NA<\/br>pedestrian age: 31","<b>12/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>08/11/2017<\/b><\/br>NA<\/br>pedestrian age: 20","<b>06/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>07/16/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>09/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>09/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>11/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>07/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>08/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>12/22/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>03/10/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>03/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>04/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>05/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>09/22/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>10/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>03/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>06/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>01/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>07/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/07/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>11/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>02/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>03/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>07/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>09/14/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>11/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>03/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>06/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>04/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>01/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>01/22/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 44","<b>02/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/20/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 55","<b>02/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>02/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>05/12/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>07/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>11/12/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>12/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>02/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>07/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>09/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>10/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>01/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>08/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>01/07/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 76","<b>04/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>05/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>08/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>10/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/29/2017<\/b><\/br>NA<\/br>pedestrian age: 54","<b>11/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>06/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>06/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>09/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>07/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>11/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 90","<b>06/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>06/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>07/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>08/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>10/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>07/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>07/14/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>10/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>10/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>09/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>09/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/10/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>03/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>08/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>07/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/25/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>04/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>06/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>10/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>02/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>03/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/31/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>04/09/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>06/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>06/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>04/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>08/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>06/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>04/15/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>05/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>05/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>05/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>06/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>06/17/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>11/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>11/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>11/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>08/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>04/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>05/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>08/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>12/14/2017<\/b><\/br>NA<\/br>pedestrian age: 23","<b>06/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>11/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>11/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>12/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>04/01/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>06/30/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>07/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>11/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>02/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>06/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>07/22/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>11/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>01/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>03/08/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>05/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>04/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>08/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/22/2017<\/b><\/br>NA<\/br>pedestrian age: 47","<b>09/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>09/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>09/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/12/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>05/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>09/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>06/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>02/17/2017<\/b><\/br>Fatality<\/br>pedestrian age: 55","<b>05/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/20/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 31","<b>09/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>03/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>07/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>10/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>02/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>04/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>06/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>06/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>10/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>04/08/2017<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>04/09/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 3","<b>04/09/2017<\/b><\/br>Fatality<\/br>pedestrian age: 54","<b>06/05/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>07/29/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 46","<b>10/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>10/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>03/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>07/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>09/09/2017<\/b><\/br>NA<\/br>pedestrian age: 44","<b>12/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>12/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/30/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>10/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>01/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>01/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>01/20/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 57","<b>04/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>10/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>05/09/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>05/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>06/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>01/18/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>09/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>03/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>04/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>08/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>02/21/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>04/09/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>08/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>02/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>03/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>03/16/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>12/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>05/07/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>06/29/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>06/16/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>01/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>02/18/2017<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>06/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>09/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>01/30/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>02/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>03/25/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>11/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>02/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>03/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>09/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>04/18/2017<\/b><\/br>Fatality<\/br>pedestrian age: 62","<b>04/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>02/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>02/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>10/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>03/18/2017<\/b><\/br>NA<\/br>pedestrian age: 29","<b>05/07/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>10/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>10/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>03/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>03/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>05/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>05/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: NA","<b>08/07/2017<\/b><\/br>NA<\/br>pedestrian age: 17","<b>08/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>08/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>08/30/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>04/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>06/12/2017<\/b><\/br>Fatality<\/br>pedestrian age: 36","<b>08/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>12/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>07/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>08/23/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 52","<b>03/07/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>03/01/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>03/10/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>08/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/04/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>04/26/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>07/15/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>07/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>04/08/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 8","<b>07/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/11/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>10/01/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>06/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>01/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>06/09/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>12/01/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>05/02/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>02/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>06/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>04/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>06/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>04/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>11/15/2017<\/b><\/br>NA<\/br>pedestrian age: 19","<b>09/21/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 54","<b>12/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>12/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>01/27/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>03/15/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>10/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>11/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>02/01/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>02/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>07/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>10/18/2017<\/b><\/br>Fatality<\/br>pedestrian age: 83","<b>01/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>03/28/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>05/04/2017<\/b><\/br>Fatality<\/br>pedestrian age: 51","<b>06/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>08/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/27/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 7","<b>07/10/2017<\/b><\/br>Fatality<\/br>pedestrian age: 45","<b>01/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>04/21/2017<\/b><\/br>Fatality<\/br>pedestrian age: 29","<b>04/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>04/28/2017<\/b><\/br>Fatality<\/br>pedestrian age: 23","<b>10/25/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>03/17/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>05/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>03/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>05/15/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>08/04/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>10/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>01/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>02/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>06/12/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>12/14/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/06/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>10/10/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>09/22/2017<\/b><\/br>Fatality<\/br>pedestrian age: 45","<b>09/23/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>11/21/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>12/04/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>12/26/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>01/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>05/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>12/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>03/22/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>02/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>06/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>09/11/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>01/09/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>04/18/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>01/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>01/26/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>06/17/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>09/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>01/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>03/04/2017<\/b><\/br>NA<\/br>pedestrian age: 30","<b>05/10/2017<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>04/06/2017<\/b><\/br>NA<\/br>pedestrian age: 28","<b>05/10/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>07/31/2017<\/b><\/br>Fatality<\/br>pedestrian age: 63","<b>11/05/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>11/10/2017<\/b><\/br>Fatality<\/br>pedestrian age: 71","<b>11/15/2017<\/b><\/br>Fatality<\/br>pedestrian age: 56","<b>01/15/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>03/15/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/19/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>01/31/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>08/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>05/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>02/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>08/29/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>04/02/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>04/19/2017<\/b><\/br>NA<\/br>pedestrian age: 54","<b>07/03/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>08/02/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>10/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>09/11/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>10/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>03/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/17/2017<\/b><\/br>Fatality<\/br>pedestrian age: 68","<b>05/13/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>05/23/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>06/13/2017<\/b><\/br>NA<\/br>pedestrian age: 22","<b>06/18/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>12/23/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>03/04/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>09/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>01/19/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>02/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>05/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>11/24/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>11/29/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>07/13/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 31","<b>07/27/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>07/26/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>12/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>12/09/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>02/03/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>03/28/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/06/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>09/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>11/13/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>07/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>08/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>10/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>01/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>01/25/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 54","<b>06/10/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>02/12/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>01/20/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>03/06/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>05/26/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>09/07/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>02/24/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>06/16/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>08/31/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>05/08/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>09/29/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>04/21/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 5","<b>12/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>09/22/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/23/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/01/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>05/08/2017<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>05/05/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>10/31/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>08/05/2017<\/b><\/br>NA<\/br>pedestrian age: 36","<b>02/05/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>01/16/2017<\/b><\/br>NA<\/br>pedestrian age: 51","<b>03/21/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>07/09/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>07/09/2017<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>12/20/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/13/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/04/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>07/14/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>09/22/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>07/19/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>06/02/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>10/21/2017<\/b><\/br>NA<\/br>pedestrian age: 69","<b>07/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/21/2017<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>09/08/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>09/25/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>10/07/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>10/17/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>09/27/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>12/08/2017<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>09/17/2017<\/b><\/br>No apparent injury<\/br>pedestrian age: 65","<b>10/13/2017<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>02/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>02/18/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>10/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>12/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>11/25/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>05/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>06/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>09/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>11/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>05/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>01/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>10/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>04/27/2018<\/b><\/br>Fatality<\/br>pedestrian age: 72","<b>07/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>11/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>11/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>05/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>07/13/2018<\/b><\/br>Fatality<\/br>pedestrian age: 5","<b>09/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>11/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>03/16/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>04/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/05/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>01/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/13/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>01/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>04/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>05/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/29/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>09/17/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>03/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>11/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>12/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>02/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>02/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>02/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>05/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>12/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>01/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>03/13/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>07/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>09/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>09/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>03/25/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 1","<b>09/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>02/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>06/12/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>05/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>11/25/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>07/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>10/02/2018<\/b><\/br>NA<\/br>pedestrian age: 39","<b>11/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>02/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>04/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>03/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>05/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>10/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>05/31/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>07/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>06/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>07/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>08/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>02/19/2018<\/b><\/br>Fatality<\/br>pedestrian age: 53","<b>07/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>11/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>07/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/01/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>10/20/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>06/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>01/22/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>03/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>07/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>07/19/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>06/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>10/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>11/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>04/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>09/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>10/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>03/21/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>04/15/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>06/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>11/27/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 46","<b>02/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>04/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>06/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>08/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>08/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>08/31/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>03/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>07/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>12/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>11/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>01/04/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>03/14/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>03/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>05/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/23/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>12/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>01/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>01/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>08/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>09/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>11/28/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 57","<b>07/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>02/01/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>06/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>09/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>12/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>04/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>09/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>09/07/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>10/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>11/17/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>08/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>04/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>07/22/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>09/17/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 76","<b>09/23/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>09/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>04/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>09/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>10/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>12/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>07/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>08/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>08/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>08/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>12/06/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>08/10/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>09/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>09/18/2018<\/b><\/br>NA<\/br>pedestrian age: 21","<b>10/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>11/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>10/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>04/02/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>05/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/02/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>07/26/2018<\/b><\/br>NA<\/br>pedestrian age: 23","<b>10/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>11/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>12/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>12/27/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>03/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>06/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/26/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>10/21/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>10/07/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>05/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>09/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>03/10/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>03/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>05/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>05/23/2018<\/b><\/br>Fatality<\/br>pedestrian age: 61","<b>07/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>02/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>03/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>07/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/19/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>09/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>11/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>03/25/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>04/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>09/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>12/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>02/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>04/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>05/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>07/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>08/08/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>11/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>12/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>06/13/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>08/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>12/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>04/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>09/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/10/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>07/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>02/08/2018<\/b><\/br>Fatality<\/br>pedestrian age: 30","<b>03/29/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>06/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/13/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>07/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>10/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>02/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>01/25/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>03/27/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 49","<b>06/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>01/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>07/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>04/16/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>04/28/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>11/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>02/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>03/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>05/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>06/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>03/25/2018<\/b><\/br>Fatality<\/br>pedestrian age: 47","<b>03/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 82","<b>08/28/2018<\/b><\/br>Fatality<\/br>pedestrian age: 29","<b>08/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>08/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>11/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>08/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>03/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>10/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>04/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>10/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>01/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>09/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>05/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>10/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>03/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>10/04/2018<\/b><\/br>Fatality<\/br>pedestrian age: 36","<b>10/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>09/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>01/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>04/28/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>06/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>05/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>12/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>07/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>12/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>08/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>03/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>05/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>09/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>09/06/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>08/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>12/12/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>05/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 3","<b>07/28/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>09/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>10/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>09/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>01/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 90","<b>05/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>04/02/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>08/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>09/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>05/22/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 56","<b>08/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>12/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>03/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>08/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>11/21/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>02/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>07/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/27/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>10/15/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>10/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>11/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>11/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>04/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>05/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>05/03/2018<\/b><\/br>NA<\/br>pedestrian age: 17","<b>05/07/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>06/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 78","<b>11/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>12/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>01/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>02/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>03/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>12/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>06/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/17/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>11/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>09/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>12/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>01/14/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>05/25/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>10/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>01/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>08/19/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>01/15/2018<\/b><\/br>NA<\/br>pedestrian age: 43","<b>08/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>10/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>03/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>04/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>06/27/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>08/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>09/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>09/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>11/24/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>11/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>02/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>08/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>11/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/14/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>05/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/27/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 54","<b>05/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>05/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>07/11/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>09/12/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>10/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>12/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>01/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>07/16/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>07/30/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>11/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>12/14/2018<\/b><\/br>Fatality<\/br>pedestrian age: 71","<b>05/15/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>06/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/12/2018<\/b><\/br>NA<\/br>pedestrian age: 22","<b>09/10/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>09/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>05/24/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 85","<b>08/19/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 7","<b>09/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>04/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/08/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>09/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>12/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>07/15/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>06/25/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>02/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>02/14/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>05/06/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>06/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/28/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>07/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>10/24/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>11/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>06/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>05/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>08/28/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>10/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>10/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>12/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>10/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>01/16/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>05/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>07/08/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>07/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>09/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>04/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>09/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/03/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>12/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>07/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>07/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>10/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>01/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>03/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>03/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>05/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>08/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>08/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>07/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>07/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>10/29/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>07/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>12/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/22/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>10/21/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>11/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>10/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/31/2018<\/b><\/br>NA<\/br>pedestrian age: 21","<b>06/28/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>05/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>03/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>08/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>08/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>04/27/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>04/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>07/13/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>10/15/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>05/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>09/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 2","<b>11/07/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 83","<b>11/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>10/08/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>09/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>11/03/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>04/28/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>09/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>10/10/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>04/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>05/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>04/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>09/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>05/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>12/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>10/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>07/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>10/12/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>09/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>06/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>10/12/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>04/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>06/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>07/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>07/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>09/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>07/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>01/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>04/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>06/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>07/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>04/18/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>04/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>06/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>09/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>10/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>08/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>09/12/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>12/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>11/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 91","<b>09/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>02/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>01/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>06/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>12/05/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 40","<b>02/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>05/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>01/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>02/08/2018<\/b><\/br>Fatality<\/br>pedestrian age: 57","<b>10/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>04/15/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>05/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>09/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>06/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>06/08/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>06/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>05/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/11/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>03/13/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>07/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>08/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>10/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 94","<b>10/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>05/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>07/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>10/09/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>07/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>12/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>07/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>12/31/2018<\/b><\/br>Fatality<\/br>pedestrian age: 46","<b>05/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>05/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>01/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/02/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 76","<b>08/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>07/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>01/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>02/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>05/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>10/03/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>11/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>05/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>06/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>02/18/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>04/13/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>05/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>08/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>10/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>06/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>08/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>08/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>02/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 81","<b>08/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>09/06/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>01/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>02/24/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>06/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/18/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>10/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>09/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>01/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>01/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>05/24/2018<\/b><\/br>NA<\/br>pedestrian age: 21","<b>05/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>08/29/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>12/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>03/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>04/18/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>05/15/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>05/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>06/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>06/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>07/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>07/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>07/11/2018<\/b><\/br>Fatality<\/br>pedestrian age: 64","<b>07/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>08/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>09/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>09/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/22/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>10/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>06/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>10/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>02/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>04/14/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>07/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>08/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>04/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>07/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>10/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>12/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>08/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>12/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>06/28/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 91","<b>04/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>01/02/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 68","<b>01/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>01/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>04/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>06/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>08/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/13/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>06/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>07/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>08/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>10/11/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>01/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>11/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>08/28/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>10/10/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 31","<b>02/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>02/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>03/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>02/22/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>07/03/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>09/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>04/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>05/25/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>07/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>05/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>09/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>07/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>03/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>12/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>08/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>10/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>08/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>10/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>09/14/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>06/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>10/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>09/06/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>04/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>11/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>12/28/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>01/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>03/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>11/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>07/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>08/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>04/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>04/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>07/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>04/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>06/29/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 44","<b>07/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>01/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>07/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>10/26/2018<\/b><\/br>Fatality<\/br>pedestrian age: 81","<b>05/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>05/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>03/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>05/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>06/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>10/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/23/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>10/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>10/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>04/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>05/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>07/10/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>09/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>02/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>03/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>03/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>08/19/2018<\/b><\/br>NA<\/br>pedestrian age: 87","<b>07/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>11/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 87","<b>07/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>08/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>08/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>09/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>08/16/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>08/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/12/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>06/17/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 59","<b>05/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>12/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>02/16/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>06/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>06/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>01/02/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>09/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>10/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>07/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>08/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/23/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>09/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>05/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>07/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>10/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>07/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>07/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>09/24/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>10/18/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>09/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>09/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>06/03/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>08/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>12/17/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>02/12/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>11/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>05/25/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>08/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>09/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>05/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 85","<b>10/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>07/28/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>07/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>01/31/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 71","<b>12/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>02/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>04/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 86","<b>01/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>11/07/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>08/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>10/15/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>10/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>12/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/28/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 8","<b>06/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>11/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>09/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>10/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>07/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>06/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>07/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>07/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/08/2018<\/b><\/br>NA<\/br>pedestrian age: 60","<b>04/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 79","<b>08/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>09/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 87","<b>09/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>07/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>02/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>03/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>04/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>07/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>04/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>05/02/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>05/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>04/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>10/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>08/19/2018<\/b><\/br>Fatality<\/br>pedestrian age: 86","<b>10/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/14/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>06/09/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>04/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>05/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/06/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>07/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>01/22/2018<\/b><\/br>Fatality<\/br>pedestrian age: 74","<b>05/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>09/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>06/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>06/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 81","<b>06/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>12/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>02/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>04/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>01/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>07/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>04/21/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 65","<b>05/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>06/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>07/15/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 2","<b>07/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>01/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>08/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>09/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>04/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>11/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>09/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>09/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>01/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>10/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>02/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>05/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>07/14/2018<\/b><\/br>Fatality<\/br>pedestrian age: 6","<b>10/16/2018<\/b><\/br>Fatality<\/br>pedestrian age: 50","<b>08/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>09/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>10/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>12/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>05/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>02/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>03/17/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>09/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>12/28/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>02/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>05/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>08/28/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>05/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>08/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 75","<b>05/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/25/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>08/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>01/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>09/27/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>06/14/2018<\/b><\/br>Fatality<\/br>pedestrian age: 57","<b>06/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>07/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>10/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>08/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>12/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>02/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>02/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>04/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>05/07/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>06/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>06/03/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 54","<b>05/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>01/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>03/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>09/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>07/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>11/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>10/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>05/06/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>02/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>04/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>10/08/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>07/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>06/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>12/28/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>01/08/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>07/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>05/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>06/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>08/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>08/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>07/24/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>08/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>11/18/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>06/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>09/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>08/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>04/10/2018<\/b><\/br>NA<\/br>pedestrian age: 7","<b>11/02/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>10/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>06/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>01/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>09/07/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>10/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>09/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>11/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/26/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>07/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>06/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>10/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>06/16/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>09/02/2018<\/b><\/br>Fatality<\/br>pedestrian age: 56","<b>05/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/11/2018<\/b><\/br>Fatality<\/br>pedestrian age: 66","<b>07/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>03/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>06/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>05/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>09/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>05/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>10/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>06/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>06/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>06/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>08/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>09/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>06/21/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 8","<b>07/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 8","<b>07/19/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>08/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>07/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>04/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>12/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>06/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>02/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>10/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>08/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>12/20/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 45","<b>05/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>01/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>11/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/07/2018<\/b><\/br>Fatality<\/br>pedestrian age: 92","<b>07/10/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>07/28/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>06/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>06/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>08/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>08/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>05/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>12/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>07/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>07/28/2018<\/b><\/br>Fatality<\/br>pedestrian age: 18","<b>08/09/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>09/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>11/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>09/02/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>12/16/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/02/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>10/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>05/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>10/14/2018<\/b><\/br>Fatality<\/br>pedestrian age: 34","<b>06/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>09/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>12/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>11/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>08/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>08/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>02/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>07/14/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>04/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>09/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>10/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>04/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 2","<b>05/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>05/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>05/29/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>12/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>05/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>06/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>11/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>05/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>01/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>06/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>02/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>11/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 80","<b>11/12/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>05/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>09/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>01/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>01/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>01/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>02/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>03/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>06/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>05/08/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>10/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>06/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>11/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>04/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>01/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>06/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>07/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>04/14/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>06/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>07/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>09/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>09/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>10/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>05/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>05/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>11/05/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 72","<b>08/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>04/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>08/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>12/06/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>12/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>05/16/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>12/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>01/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>05/03/2018<\/b><\/br>Fatality<\/br>pedestrian age: 4","<b>05/07/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>06/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>07/09/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 7","<b>05/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>01/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>04/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>06/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>07/21/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>05/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>06/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>09/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>06/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>10/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>07/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>07/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>05/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>07/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>08/27/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>10/12/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>04/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>05/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>07/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>05/12/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>05/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>04/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>06/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>06/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>07/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>08/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>12/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>07/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>02/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>03/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>10/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>04/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>04/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>05/16/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>07/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>03/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>12/13/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>05/23/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 50","<b>07/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>03/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/16/2018<\/b><\/br>NA<\/br>pedestrian age: 21","<b>08/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/02/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>07/18/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>09/10/2018<\/b><\/br>Fatality<\/br>pedestrian age: 86","<b>12/03/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>11/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>03/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>06/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>10/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>03/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>04/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>06/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>10/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>01/16/2018<\/b><\/br>Fatality<\/br>pedestrian age: 58","<b>07/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>09/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>06/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>07/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>10/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>02/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>06/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>03/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>03/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>03/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>04/26/2018<\/b><\/br>Fatality<\/br>pedestrian age: 19","<b>05/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>06/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>11/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>03/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>08/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>02/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>06/13/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>11/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>01/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>11/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>01/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>05/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>05/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>10/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>02/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>06/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>09/17/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>12/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>09/07/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>11/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>12/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>04/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>09/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>09/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>09/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>07/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>08/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>04/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>06/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>11/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>10/12/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 46","<b>09/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>05/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 75","<b>12/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>08/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>02/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>10/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>02/08/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>11/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>03/23/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>07/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>06/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>07/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>08/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>12/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/27/2018<\/b><\/br>Fatality<\/br>pedestrian age: 61","<b>02/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>10/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>06/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>12/15/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>12/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>01/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>11/17/2018<\/b><\/br>Fatality<\/br>pedestrian age: 21","<b>12/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>08/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>01/01/2018<\/b><\/br>Fatality<\/br>pedestrian age: 23","<b>07/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>02/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>04/10/2018<\/b><\/br>NA<\/br>pedestrian age: 18","<b>06/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>04/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>10/16/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>12/27/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>02/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>05/22/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>03/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>07/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>10/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>10/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>09/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>10/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>02/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>09/02/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>07/16/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 44","<b>02/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>03/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>01/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/14/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>10/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>02/28/2018<\/b><\/br>Fatality<\/br>pedestrian age: 69","<b>04/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>05/22/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 58","<b>11/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>12/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>06/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>07/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>09/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>12/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>04/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>07/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>03/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>01/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>09/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>07/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>12/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>08/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>06/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>01/13/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>02/17/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>07/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/28/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>03/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>05/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>06/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>07/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>08/25/2018<\/b><\/br>NA<\/br>pedestrian age: 26","<b>05/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>06/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>10/12/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>04/13/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>05/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>06/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>07/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>06/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>09/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>12/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>02/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>02/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>08/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 76","<b>06/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>09/18/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>08/06/2018<\/b><\/br>NA<\/br>pedestrian age: 29","<b>07/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>12/19/2018<\/b><\/br>Fatality<\/br>pedestrian age: 67","<b>12/28/2018<\/b><\/br>Fatality<\/br>pedestrian age: 56","<b>04/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>10/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>07/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>06/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>05/21/2018<\/b><\/br>NA<\/br>pedestrian age: 73","<b>12/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>12/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>01/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>03/28/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 75","<b>06/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>03/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>06/23/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>10/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>10/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>05/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/26/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>02/23/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>07/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>08/30/2018<\/b><\/br>NA<\/br>pedestrian age: 42","<b>09/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>11/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/14/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>09/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>09/24/2018<\/b><\/br>NA<\/br>pedestrian age: 57","<b>02/09/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>06/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>08/27/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 78","<b>09/24/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>05/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>11/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>11/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>07/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>03/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>10/23/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 76","<b>07/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>03/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>11/02/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>01/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>05/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>02/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>05/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>06/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>10/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>11/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>10/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>02/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>11/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>08/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>12/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>09/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>03/17/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>04/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>05/08/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>05/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>12/27/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>08/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/22/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>04/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>03/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>07/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>01/09/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>11/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>08/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>05/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>12/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>08/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>08/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>02/16/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>08/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>09/17/2018<\/b><\/br>Fatality<\/br>pedestrian age: 61","<b>11/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>11/01/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>02/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>08/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>03/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>04/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>10/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>06/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/16/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>07/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>02/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>06/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>05/13/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>02/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>06/12/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>02/09/2018<\/b><\/br>Fatality<\/br>pedestrian age: 50","<b>04/08/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>05/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/07/2018<\/b><\/br>Fatality<\/br>pedestrian age: 3","<b>08/13/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>05/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>07/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>02/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>06/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/18/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>06/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>05/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>05/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>06/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>10/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>03/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>04/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>06/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>06/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>02/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>05/29/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>05/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>05/18/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>06/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>08/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>09/23/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>07/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>07/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>08/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>06/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>05/18/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>11/28/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>10/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>08/13/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>08/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/18/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>10/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>09/15/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>03/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/03/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>06/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>07/21/2018<\/b><\/br>Fatality<\/br>pedestrian age: 25","<b>08/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>08/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/13/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>07/22/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>01/26/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>10/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>07/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/22/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>07/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>05/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>05/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>12/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>05/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>11/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>07/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>04/22/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>09/21/2018<\/b><\/br>Fatality<\/br>pedestrian age: 1","<b>03/31/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>05/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>10/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>10/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>10/18/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 47","<b>08/12/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 9","<b>09/13/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>11/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>06/05/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>03/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>04/01/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 46","<b>04/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>08/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>10/10/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 49","<b>10/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>10/22/2018<\/b><\/br>NA<\/br>pedestrian age: 3","<b>10/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>02/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>04/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>01/08/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>04/26/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>10/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>10/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>12/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 87","<b>01/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>01/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>02/26/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>12/13/2018<\/b><\/br>NA<\/br>pedestrian age: 37","<b>08/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>05/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>01/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>02/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>06/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>06/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>08/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>02/14/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/17/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>02/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>02/19/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>06/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>07/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>08/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>11/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>09/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>02/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>03/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>04/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>06/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>08/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>08/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>10/12/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>04/28/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>05/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>04/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>04/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>07/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>05/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>09/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>08/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 87","<b>09/07/2018<\/b><\/br>NA<\/br>pedestrian age: 33","<b>09/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>10/29/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 53","<b>10/22/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>11/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>12/15/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>12/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>04/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>06/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>12/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>07/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>08/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>05/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>07/03/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>04/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/24/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>07/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>12/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>10/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>01/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>12/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>05/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>08/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>09/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>06/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>11/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>11/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>06/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/13/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>09/12/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>10/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>10/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>06/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>02/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>04/23/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 84","<b>08/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>10/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>05/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>06/29/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>07/13/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>01/28/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>02/26/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>03/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>05/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>08/28/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>05/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>11/28/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>06/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>05/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 81","<b>10/31/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>11/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>11/17/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>06/03/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>07/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>04/17/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>07/25/2018<\/b><\/br>NA<\/br>pedestrian age: 22","<b>09/19/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>07/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>08/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>02/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>11/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>11/04/2018<\/b><\/br>Fatality<\/br>pedestrian age: 47","<b>11/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>09/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>04/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/20/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>09/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>10/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>04/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>05/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>03/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>10/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>09/07/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>09/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>07/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>02/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>05/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>01/08/2018<\/b><\/br>NA<\/br>pedestrian age: 54","<b>06/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>11/08/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>05/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>11/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>06/22/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>06/27/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 7","<b>12/18/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>10/01/2018<\/b><\/br>Fatality<\/br>pedestrian age: 88","<b>12/30/2018<\/b><\/br>NA<\/br>pedestrian age: 22","<b>05/26/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>06/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>11/09/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 89","<b>11/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>06/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>08/06/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>08/12/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>08/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>10/17/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>01/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>10/08/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>07/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>07/11/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>07/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>06/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>06/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>05/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>05/15/2018<\/b><\/br>NA<\/br>pedestrian age: 29","<b>02/24/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>01/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>06/28/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>10/04/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>09/24/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>11/21/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>12/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>06/01/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>10/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>06/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>12/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 88","<b>05/10/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 8","<b>01/02/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>05/28/2018<\/b><\/br>NA<\/br>pedestrian age: 31","<b>02/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>05/04/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>12/13/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 76","<b>04/24/2018<\/b><\/br>NA<\/br>pedestrian age: 75","<b>07/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>02/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>05/07/2018<\/b><\/br>NA<\/br>pedestrian age: 23","<b>09/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>11/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>05/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>02/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>03/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 93","<b>06/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>07/04/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>03/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/01/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 50","<b>03/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>05/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>06/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>06/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>05/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>08/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>06/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>02/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>07/06/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>07/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>10/24/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>12/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>08/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>02/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>05/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>09/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>04/06/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>09/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>07/13/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>07/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>03/14/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>05/29/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: NA","<b>06/28/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>04/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>01/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>10/18/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>07/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>06/29/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>12/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>05/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>02/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 75","<b>09/08/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>03/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>09/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>07/13/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 7","<b>10/12/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>12/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>09/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>05/19/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 87","<b>09/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>11/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>12/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>04/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>06/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>09/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>10/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>07/17/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>07/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>08/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>08/28/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>07/16/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>09/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>03/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>02/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>02/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>01/08/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>05/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>08/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>10/24/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>04/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>04/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>06/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>11/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>03/22/2018<\/b><\/br>NA<\/br>pedestrian age: 57","<b>06/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>06/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>05/15/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: NA","<b>06/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>02/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>08/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>10/11/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>10/27/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>12/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>06/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>02/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>09/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>01/09/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>10/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>05/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>07/06/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 52","<b>11/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>08/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>09/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>09/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>02/08/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>07/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>04/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>05/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>02/14/2018<\/b><\/br>Fatality<\/br>pedestrian age: 78","<b>01/26/2018<\/b><\/br>Fatality<\/br>pedestrian age: 86","<b>06/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>03/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>03/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>06/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>06/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>02/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/22/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>05/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/04/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 57","<b>07/03/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>11/03/2018<\/b><\/br>Fatality<\/br>pedestrian age: 9","<b>02/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/23/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>09/16/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>08/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>01/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>05/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>06/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>11/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>10/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>11/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>10/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>12/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>01/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>09/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>08/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>01/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>01/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>04/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>05/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>03/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>09/07/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>08/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>10/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>12/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>02/12/2018<\/b><\/br>NA<\/br>pedestrian age: 35","<b>06/10/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>07/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>08/26/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>07/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>08/18/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>08/31/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>09/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>06/16/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>10/06/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 42","<b>04/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>11/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>12/24/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>09/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>10/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>07/01/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>05/12/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>10/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>12/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>02/27/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>02/15/2018<\/b><\/br>Fatality<\/br>pedestrian age: 65","<b>06/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>11/15/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>03/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>12/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>01/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>08/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>10/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/21/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 4","<b>05/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>07/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>07/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/28/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 8","<b>10/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/10/2018<\/b><\/br>NA<\/br>pedestrian age: 66","<b>04/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>07/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>07/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>05/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>05/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>08/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>06/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>10/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 88","<b>09/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>08/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>08/22/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>01/28/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>04/03/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>06/14/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>07/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>08/09/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>07/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>12/06/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>12/08/2018<\/b><\/br>Fatality<\/br>pedestrian age: 79","<b>04/24/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>07/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>03/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>01/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/09/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>08/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>10/03/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>09/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/24/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 8","<b>05/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>01/31/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>05/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>06/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>07/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>03/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>02/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>02/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>02/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>10/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>09/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>09/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>12/06/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>02/13/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>04/12/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>07/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>10/07/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>10/04/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>06/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>03/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>05/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>05/28/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>02/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>04/11/2018<\/b><\/br>Fatality<\/br>pedestrian age: 64","<b>05/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>10/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>04/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>03/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>11/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 82","<b>12/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>09/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>05/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>09/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>10/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>11/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>11/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>01/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>01/29/2018<\/b><\/br>NA<\/br>pedestrian age: 27","<b>02/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>07/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>09/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>02/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>11/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>12/31/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 5","<b>10/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>11/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>02/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>06/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>08/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>02/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>08/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>02/03/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>03/26/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>05/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>06/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/02/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 59","<b>01/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>05/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>06/01/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>07/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>01/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>01/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>02/12/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>05/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>01/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>01/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>02/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>09/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>12/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>01/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>05/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>05/07/2018<\/b><\/br>NA<\/br>pedestrian age: 59","<b>07/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>06/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>07/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>09/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>11/03/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 52","<b>01/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>01/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>05/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>10/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>01/13/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>10/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>01/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>02/08/2018<\/b><\/br>NA<\/br>pedestrian age: 48","<b>05/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>10/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>10/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>02/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>02/05/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>11/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>02/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>04/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>01/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>05/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/10/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>07/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>07/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>07/21/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>01/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>05/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>11/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>07/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/28/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>03/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>06/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>07/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>03/06/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>04/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>04/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>05/02/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>12/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>10/04/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 55","<b>03/28/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>05/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>06/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>08/26/2018<\/b><\/br>NA<\/br>pedestrian age: 19","<b>12/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>01/28/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>11/19/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 46","<b>06/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>04/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>07/09/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>08/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>08/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>08/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>08/19/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>03/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>04/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>04/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>06/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>10/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/22/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>06/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>08/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>02/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>05/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>09/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>11/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>12/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>12/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>02/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>04/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>05/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>08/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>02/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>07/13/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>05/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>08/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>12/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>09/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>10/03/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>06/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>01/15/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>01/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>03/12/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>12/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>05/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>03/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>05/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>06/22/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>09/04/2018<\/b><\/br>Fatality<\/br>pedestrian age: 35","<b>10/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>02/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>04/14/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>05/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>06/23/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 45","<b>07/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>09/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>10/10/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>07/26/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>04/30/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>09/05/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>08/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/13/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>03/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>04/19/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>04/26/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>05/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>06/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/26/2018<\/b><\/br>NA<\/br>pedestrian age: 42","<b>08/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>08/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>10/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>11/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>11/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>12/21/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 44","<b>12/28/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>06/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>07/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>10/03/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>02/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>08/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>08/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>08/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>01/09/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>01/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/12/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 49","<b>03/18/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>04/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>06/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>07/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>10/22/2018<\/b><\/br>Fatality<\/br>pedestrian age: 36","<b>10/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>05/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>07/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>09/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>09/27/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>10/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>10/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>10/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>12/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>12/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>04/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>04/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>05/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>06/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>11/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>12/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>12/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>07/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>04/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>05/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>07/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>07/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>10/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>05/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>08/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>11/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>05/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>08/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>12/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/14/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 89","<b>10/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>09/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>01/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>04/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>04/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>04/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>06/13/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>01/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>05/25/2018<\/b><\/br>NA<\/br>pedestrian age: 51","<b>06/08/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>10/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>10/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>03/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>04/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>04/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/29/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>09/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>09/26/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>10/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>10/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>11/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>11/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>05/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>07/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>09/21/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>01/28/2018<\/b><\/br>Fatality<\/br>pedestrian age: 64","<b>06/11/2018<\/b><\/br>Fatality<\/br>pedestrian age: 74","<b>05/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>06/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>07/28/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>10/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>04/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/15/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>06/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>06/20/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>07/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>10/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>06/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>10/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>09/29/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>03/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>05/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>05/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>08/21/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>04/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>10/18/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>11/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>11/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>11/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>11/26/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>11/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>12/07/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>12/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>01/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>08/12/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>06/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>09/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>10/28/2018<\/b><\/br>NA<\/br>pedestrian age: 39","<b>11/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>12/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>12/17/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>12/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>12/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>12/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>03/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>05/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>07/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>09/26/2018<\/b><\/br>NA<\/br>pedestrian age: 75","<b>12/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>01/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>02/10/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>02/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>03/14/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>03/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>04/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>06/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>07/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>09/10/2018<\/b><\/br>Fatality<\/br>pedestrian age: 69","<b>09/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>11/30/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>12/17/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>12/23/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>12/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>10/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>05/10/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>05/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>08/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>02/20/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>04/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 8","<b>05/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>07/13/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>12/04/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 4","<b>12/28/2018<\/b><\/br>Fatality<\/br>pedestrian age: 68","<b>03/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>05/18/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>11/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>07/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>10/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>10/08/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>10/09/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>04/05/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>03/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>04/24/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>05/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>05/01/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>01/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>04/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>07/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>10/12/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>06/03/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>08/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>02/06/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>01/12/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 58","<b>07/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/31/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>02/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>03/28/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>01/19/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>11/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>06/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>05/22/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>06/12/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>06/08/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>02/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/21/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>10/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>11/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>06/27/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>06/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>09/12/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>01/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>02/17/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>08/26/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>08/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>01/17/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 1","<b>01/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>11/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>05/12/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>07/22/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>03/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>12/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>07/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>10/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>06/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>08/22/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>12/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>07/25/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>02/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>02/25/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>11/14/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>08/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>11/01/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>05/27/2018<\/b><\/br>Fatality<\/br>pedestrian age: 63","<b>07/19/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>08/25/2018<\/b><\/br>Fatality<\/br>pedestrian age: 73","<b>04/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/18/2018<\/b><\/br>Fatality<\/br>pedestrian age: 64","<b>01/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>08/31/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>11/19/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>12/06/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>09/15/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>12/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>02/25/2018<\/b><\/br>Fatality<\/br>pedestrian age: 53","<b>07/08/2018<\/b><\/br>NA<\/br>pedestrian age: 24","<b>04/30/2018<\/b><\/br>Fatality<\/br>pedestrian age: 32","<b>05/16/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>04/18/2018<\/b><\/br>Fatality<\/br>pedestrian age: 25","<b>02/14/2018<\/b><\/br>Fatality<\/br>pedestrian age: 44","<b>02/20/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>09/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>07/14/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>07/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>12/06/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 47","<b>06/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>12/28/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>05/20/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>03/08/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/04/2018<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>03/20/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>02/28/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>03/19/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>07/07/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>08/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>12/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>01/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>07/02/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>01/10/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>05/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>06/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/18/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/02/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/04/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>03/16/2018<\/b><\/br>NA<\/br>pedestrian age: 22","<b>04/13/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>12/21/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>07/06/2018<\/b><\/br>NA<\/br>pedestrian age: 26","<b>05/06/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>07/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>11/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>07/16/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>03/26/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>02/03/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>11/07/2018<\/b><\/br>Fatality<\/br>pedestrian age: 59","<b>01/14/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>06/17/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>09/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>06/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>09/04/2018<\/b><\/br>NA<\/br>pedestrian age: 53","<b>05/09/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>10/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>07/07/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>02/16/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>03/26/2018<\/b><\/br>Fatality<\/br>pedestrian age: 35","<b>03/10/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>10/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/03/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>08/09/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>08/11/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>08/12/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>08/04/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/08/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>07/24/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>05/11/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>08/14/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>09/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>09/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>11/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>07/07/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>11/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>12/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>09/08/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>08/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>05/03/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>06/29/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/05/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>09/07/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>06/03/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>08/04/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>10/01/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>10/02/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>10/15/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>10/31/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>12/11/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>07/29/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>11/11/2018<\/b><\/br>Fatality<\/br>pedestrian age: 23","<b>08/29/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>01/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>11/30/2018<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>10/30/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/02/2018<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>12/01/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>12/05/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>07/13/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 2","<b>01/27/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>12/13/2018<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>05/23/2018<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>09/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>10/15/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>12/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>08/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>09/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>10/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>01/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>06/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>10/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>11/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>10/30/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>11/14/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>12/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>08/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>10/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>08/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>09/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>10/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>11/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>07/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>09/11/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>10/21/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>09/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>09/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>03/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>06/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>07/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>07/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>07/11/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>11/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>01/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>03/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>04/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>06/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>09/04/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 48","<b>05/24/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>08/31/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>10/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>10/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>10/23/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>11/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>12/09/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 57","<b>07/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>11/04/2019<\/b><\/br>Fatality<\/br>pedestrian age: 35","<b>05/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>10/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>09/13/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>04/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>08/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>09/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>10/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>09/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>08/28/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>02/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>06/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>04/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>10/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>03/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>08/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>07/28/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 40","<b>04/10/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 53","<b>08/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>07/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>06/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>06/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>08/29/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>09/12/2019<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>09/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>12/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>12/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>08/11/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>09/29/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>01/17/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>12/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>10/28/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>07/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>12/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>12/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>07/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>01/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>09/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>05/27/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>07/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>05/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>03/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>04/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/08/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>06/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>08/02/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>09/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>10/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/17/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>06/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>01/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>07/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>10/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>10/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>01/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>01/31/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>05/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>04/20/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>09/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>04/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>06/19/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>07/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>08/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>11/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>12/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 82","<b>06/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>07/17/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 66","<b>07/19/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>04/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>04/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>05/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>09/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>11/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>11/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>03/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>06/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>10/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>10/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>03/19/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>06/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>10/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>07/01/2019<\/b><\/br>NA<\/br>pedestrian age: 71","<b>03/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>05/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>06/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>04/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>04/11/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>06/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>10/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>12/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>07/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>09/01/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>09/06/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>09/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>12/25/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>11/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>01/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>01/28/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>04/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>04/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>04/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>08/31/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>09/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>11/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>12/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>12/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>12/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>05/17/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>03/29/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>04/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>02/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>06/09/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>06/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>06/09/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 62","<b>08/10/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>04/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>07/03/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>05/23/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>10/10/2019<\/b><\/br>Fatality<\/br>pedestrian age: 32","<b>03/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>06/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>05/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>06/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>09/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>04/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/22/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 35","<b>07/21/2019<\/b><\/br>Fatality<\/br>pedestrian age: 56","<b>04/24/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>09/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>02/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>07/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>07/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>09/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>02/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>12/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>03/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>01/01/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>07/31/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>08/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>07/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>02/26/2019<\/b><\/br>NA<\/br>pedestrian age: 35","<b>10/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>12/08/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>05/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>03/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>06/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>09/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>05/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>10/29/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>05/14/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>11/06/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>10/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>08/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>08/13/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>11/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>10/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>10/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>07/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>09/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>10/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>07/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>05/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>08/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>09/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>07/11/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>04/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>04/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>12/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>01/09/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>05/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>04/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>07/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>02/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>04/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>08/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>09/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>05/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>03/01/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>10/06/2019<\/b><\/br>Fatality<\/br>pedestrian age: 2","<b>09/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 1","<b>10/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>09/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/02/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>10/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>09/02/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>08/19/2019<\/b><\/br>Fatality<\/br>pedestrian age: 70","<b>10/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>11/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>12/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>12/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>03/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>09/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>07/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>09/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/26/2019<\/b><\/br>NA<\/br>pedestrian age: 36","<b>07/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>10/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>10/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>12/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>07/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>09/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>06/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>03/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>04/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>01/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/10/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>08/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>04/23/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>09/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>09/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>11/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>07/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>07/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>09/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/17/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>04/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>07/09/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>11/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>05/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>07/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>09/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>08/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>09/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/22/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>11/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>04/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>05/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>06/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>07/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>05/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>06/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>09/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>10/17/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>01/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>05/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>12/22/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>06/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>08/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>11/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>12/11/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>03/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/02/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>07/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>07/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>10/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>11/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>12/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>12/26/2019<\/b><\/br>NA<\/br>pedestrian age: 63","<b>01/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>04/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>05/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>09/06/2019<\/b><\/br>NA<\/br>pedestrian age: 66","<b>12/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>01/22/2019<\/b><\/br>NA<\/br>pedestrian age: 75","<b>04/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>06/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>11/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>12/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>03/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>09/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>02/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>09/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>03/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>04/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>07/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>08/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>02/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>03/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>12/01/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>08/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>09/02/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/01/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>10/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>01/12/2019<\/b><\/br>Fatality<\/br>pedestrian age: 51","<b>10/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>05/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>12/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>10/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>08/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>11/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>08/02/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>06/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>04/25/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>05/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>05/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 1","<b>12/16/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 4","<b>01/11/2019<\/b><\/br>Fatality<\/br>pedestrian age: 31","<b>05/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/23/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>10/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>01/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>09/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>09/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>09/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>11/29/2019<\/b><\/br>Fatality<\/br>pedestrian age: 43","<b>01/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>04/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>06/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>01/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>07/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>07/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>08/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>09/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>02/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>05/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>03/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>08/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>09/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 89","<b>06/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>05/16/2019<\/b><\/br>Fatality<\/br>pedestrian age: 85","<b>03/12/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>05/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>03/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/09/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>09/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>08/17/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>10/15/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>09/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>11/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>08/29/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>09/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>07/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>05/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>05/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>05/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>05/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>10/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>12/16/2019<\/b><\/br>NA<\/br>pedestrian age: 20","<b>03/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>05/25/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>04/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>09/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>08/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>02/25/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 67","<b>04/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>02/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>02/02/2019<\/b><\/br>NA<\/br>pedestrian age: 51","<b>01/25/2019<\/b><\/br>Fatality<\/br>pedestrian age: 33","<b>10/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>08/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>07/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>10/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>03/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>08/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>10/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>10/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>05/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>08/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>06/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>11/28/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>07/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>12/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>02/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>06/02/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>07/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>11/20/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>12/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>02/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>10/14/2019<\/b><\/br>NA<\/br>pedestrian age: 35","<b>06/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>12/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>03/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>02/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>05/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>07/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>08/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>08/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>09/14/2019<\/b><\/br>Fatality<\/br>pedestrian age: 58","<b>12/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>01/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>03/18/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>05/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>05/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>08/18/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>04/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>08/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>03/14/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>01/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>02/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>11/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>08/09/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/20/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>08/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>09/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>08/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>12/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>08/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>06/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>04/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>01/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>01/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>05/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>05/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>06/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>07/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/11/2019<\/b><\/br>Fatality<\/br>pedestrian age: 51","<b>03/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>07/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>07/12/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>08/02/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>09/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>09/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>11/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>12/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>12/21/2019<\/b><\/br>Fatality<\/br>pedestrian age: 87","<b>09/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>04/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>03/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>07/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>07/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>12/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>03/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>03/29/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>04/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>10/28/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>02/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>04/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>08/25/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>03/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>07/29/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>09/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>10/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>10/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>01/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>07/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>09/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>12/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>04/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>12/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>06/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>10/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>06/28/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>07/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>06/01/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 62","<b>06/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>10/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>12/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>01/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>03/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>12/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/20/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>04/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>11/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/21/2019<\/b><\/br>NA<\/br>pedestrian age: 65","<b>07/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>08/27/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>08/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>09/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>09/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>09/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>04/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>10/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>06/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 3","<b>12/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>10/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>09/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>06/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>06/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>09/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>06/09/2019<\/b><\/br>Fatality<\/br>pedestrian age: 24","<b>08/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>08/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>06/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>04/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>12/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/08/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>10/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>10/23/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>04/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>09/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>10/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>04/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>06/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>01/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>03/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>11/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>11/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>09/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>04/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/17/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>09/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>10/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>12/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>07/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>04/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>06/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>10/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>11/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/31/2019<\/b><\/br>NA<\/br>pedestrian age: 32","<b>07/16/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>06/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>07/02/2019<\/b><\/br>NA<\/br>pedestrian age: 12","<b>07/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>10/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>10/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>10/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>10/12/2019<\/b><\/br>NA<\/br>pedestrian age: 47","<b>11/14/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>04/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>06/27/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>07/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>09/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>11/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/10/2019<\/b><\/br>NA<\/br>pedestrian age: 5","<b>05/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>04/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>07/11/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>09/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>01/22/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>09/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>06/30/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>05/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>09/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 87","<b>10/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>02/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>01/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>02/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>04/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>01/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>06/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>01/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>06/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>08/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>07/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>05/19/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>10/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>05/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>04/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>05/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>06/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>07/30/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>08/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>08/31/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>10/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>09/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>10/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>05/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>07/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>05/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>08/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>06/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>06/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>11/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>03/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>09/28/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>07/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>08/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>08/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>06/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>10/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>08/31/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>12/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>09/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/17/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 87","<b>05/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>02/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 82","<b>06/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>09/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>05/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/31/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>10/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>06/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>07/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>12/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>07/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>02/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>05/13/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>02/28/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>06/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>12/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>12/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>01/29/2019<\/b><\/br>NA<\/br>pedestrian age: 53","<b>06/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>12/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>07/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>12/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>07/23/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>12/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>05/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>06/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>09/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>11/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>04/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>08/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>08/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>10/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>12/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>12/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>01/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>02/11/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>07/28/2019<\/b><\/br>NA<\/br>pedestrian age: 2","<b>04/11/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>05/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/15/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>05/14/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>08/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>10/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>12/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>10/27/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 59","<b>07/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>08/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/29/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>03/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>11/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>12/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>12/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>05/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/29/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/28/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>03/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>10/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 79","<b>11/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>11/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>08/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>08/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>08/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>10/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>05/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>02/08/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>08/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>05/10/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>09/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/08/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>02/24/2019<\/b><\/br>Fatality<\/br>pedestrian age: 71","<b>01/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>05/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/28/2019<\/b><\/br>Fatality<\/br>pedestrian age: 89","<b>12/18/2019<\/b><\/br>Fatality<\/br>pedestrian age: 46","<b>09/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>09/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>08/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>04/09/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>06/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/01/2019<\/b><\/br>NA<\/br>pedestrian age: 16","<b>09/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/22/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>02/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>11/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>02/02/2019<\/b><\/br>Fatality<\/br>pedestrian age: 70","<b>04/08/2019<\/b><\/br>Fatality<\/br>pedestrian age: 68","<b>07/14/2019<\/b><\/br>Fatality<\/br>pedestrian age: 31","<b>12/08/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/31/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>07/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>07/31/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>09/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>08/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>09/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>11/08/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>10/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>11/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>07/29/2019<\/b><\/br>Fatality<\/br>pedestrian age: 72","<b>10/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>01/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>08/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>09/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/20/2019<\/b><\/br>Fatality<\/br>pedestrian age: 64","<b>07/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>04/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>06/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>09/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>07/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>10/23/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>05/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>12/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>02/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>10/29/2019<\/b><\/br>Fatality<\/br>pedestrian age: 65","<b>01/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>10/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>12/22/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 102","<b>05/25/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>06/03/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>01/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>12/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>09/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>11/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>10/31/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>08/06/2019<\/b><\/br>NA<\/br>pedestrian age: 21","<b>10/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>10/18/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>04/28/2019<\/b><\/br>NA<\/br>pedestrian age: 63","<b>10/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>09/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>12/06/2019<\/b><\/br>Fatality<\/br>pedestrian age: 64","<b>07/14/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>01/03/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>05/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/10/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>09/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>01/12/2019<\/b><\/br>Fatality<\/br>pedestrian age: 82","<b>09/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>03/04/2019<\/b><\/br>NA<\/br>pedestrian age: 45","<b>05/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>06/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>08/30/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>09/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>05/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>06/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>04/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>09/25/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>07/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>07/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>09/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>03/14/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>02/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>08/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>07/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>09/18/2019<\/b><\/br>Fatality<\/br>pedestrian age: 79","<b>01/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>03/07/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>08/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>08/06/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 71","<b>04/27/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>07/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>06/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>10/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>07/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>06/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/09/2019<\/b><\/br>Fatality<\/br>pedestrian age: 51","<b>09/15/2019<\/b><\/br>Fatality<\/br>pedestrian age: 49","<b>07/28/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>08/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>01/28/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 45","<b>09/11/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>08/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>12/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>07/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>07/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/06/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>12/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>07/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>07/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>09/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>03/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>04/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>07/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/29/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>07/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>08/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/06/2019<\/b><\/br>Fatality<\/br>pedestrian age: 66","<b>07/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>12/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>03/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>09/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>01/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>05/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>12/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>10/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>01/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>05/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>04/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>05/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>08/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>08/11/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>03/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>09/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>07/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>08/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>08/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>06/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>05/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>06/20/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>07/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>03/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>04/09/2019<\/b><\/br>NA<\/br>pedestrian age: 48","<b>02/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>10/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>05/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>05/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>11/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>11/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>11/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>11/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>08/10/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>08/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>07/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>10/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>03/25/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>07/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>11/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>11/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>12/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>04/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>04/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/09/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>04/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>07/27/2019<\/b><\/br>NA<\/br>pedestrian age: 46","<b>02/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>07/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>09/30/2019<\/b><\/br>NA<\/br>pedestrian age: 67","<b>11/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>12/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>12/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>12/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>08/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>09/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>03/31/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>06/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>07/08/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>08/20/2019<\/b><\/br>Fatality<\/br>pedestrian age: 77","<b>11/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>02/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>03/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>06/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>10/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>09/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>01/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>08/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>11/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>09/15/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/01/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>12/19/2019<\/b><\/br>Fatality<\/br>pedestrian age: 16","<b>09/23/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 63","<b>07/09/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>06/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>10/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>03/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>07/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>01/13/2019<\/b><\/br>Fatality<\/br>pedestrian age: 36","<b>06/20/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>12/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>04/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>07/09/2019<\/b><\/br>NA<\/br>pedestrian age: 74","<b>02/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>10/18/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>05/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>08/04/2019<\/b><\/br>Fatality<\/br>pedestrian age: 43","<b>03/23/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>05/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>05/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>02/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>03/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>07/10/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>03/18/2019<\/b><\/br>Fatality<\/br>pedestrian age: 29","<b>05/19/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>08/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 8","<b>10/11/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>10/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>10/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/02/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>03/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>06/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>05/20/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>10/18/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>01/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>05/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>10/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>03/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>07/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>11/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>09/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>03/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>06/10/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>11/04/2019<\/b><\/br>Fatality<\/br>pedestrian age: 25","<b>06/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 76","<b>12/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>08/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>06/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 95","<b>08/07/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>08/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>08/18/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 8","<b>11/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>02/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>05/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>08/23/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>09/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>11/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>12/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/26/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>11/30/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>06/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>09/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>09/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>10/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>10/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>11/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>06/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>07/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>07/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>10/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>12/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>01/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>06/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>02/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/14/2019<\/b><\/br>NA<\/br>pedestrian age: 58","<b>01/21/2019<\/b><\/br>Fatality<\/br>pedestrian age: 53","<b>05/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>02/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>06/15/2019<\/b><\/br>Fatality<\/br>pedestrian age: 72","<b>07/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/17/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>07/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>04/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>10/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>11/29/2019<\/b><\/br>NA<\/br>pedestrian age: 41","<b>09/24/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>07/28/2019<\/b><\/br>Fatality<\/br>pedestrian age: 7","<b>05/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>06/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>06/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>07/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>08/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/12/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>09/16/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>12/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>01/31/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>06/12/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>08/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>11/01/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>07/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>07/19/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>11/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>06/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>01/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>07/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 88","<b>06/29/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>10/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/30/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 75","<b>10/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>08/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>02/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>06/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>07/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>10/20/2019<\/b><\/br>Fatality<\/br>pedestrian age: 71","<b>07/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>09/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>09/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>04/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>09/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>09/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>04/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>09/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>04/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>07/27/2019<\/b><\/br>Fatality<\/br>pedestrian age: 10","<b>07/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>08/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>09/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>08/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>12/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>05/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>06/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/18/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>01/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>09/25/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>05/23/2019<\/b><\/br>Fatality<\/br>pedestrian age: 52","<b>03/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>05/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>05/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>07/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>11/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>06/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>01/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>04/01/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>07/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>07/28/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>09/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>09/30/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>03/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>05/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>09/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>09/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/28/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>07/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>06/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>08/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>03/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>12/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>08/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 1","<b>12/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>03/30/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>08/11/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>07/15/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>08/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>10/13/2019<\/b><\/br>Fatality<\/br>pedestrian age: 58","<b>05/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>09/15/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 3","<b>06/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>08/12/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>09/19/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>11/22/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>03/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>06/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>07/23/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 53","<b>12/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>07/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>12/24/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 41","<b>07/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>11/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>12/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>03/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>10/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>10/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>08/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 3","<b>11/22/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>11/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>04/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>09/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/12/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>04/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>09/17/2019<\/b><\/br>Fatality<\/br>pedestrian age: 35","<b>09/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>02/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>03/28/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>08/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/04/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/31/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>07/13/2019<\/b><\/br>Fatality<\/br>pedestrian age: 39","<b>09/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>04/08/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 83","<b>10/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>11/11/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>08/17/2019<\/b><\/br>Fatality<\/br>pedestrian age: 50","<b>11/12/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>08/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>09/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>07/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>02/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>02/11/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>03/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>04/15/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>09/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>04/11/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>11/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>06/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>11/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>08/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>08/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>02/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>01/05/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 59","<b>10/26/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 70","<b>09/22/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>10/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>01/16/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>05/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>07/15/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>08/12/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>08/28/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>05/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>07/11/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 68","<b>05/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>05/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>04/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>09/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>11/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>12/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>05/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>02/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>01/07/2019<\/b><\/br>Fatality<\/br>pedestrian age: 18","<b>05/31/2019<\/b><\/br>NA<\/br>pedestrian age: 18","<b>09/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>12/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>08/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>09/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>07/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>10/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>09/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>12/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>12/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>08/13/2019<\/b><\/br>Fatality<\/br>pedestrian age: 50","<b>08/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>09/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>09/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>05/15/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 59","<b>06/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>11/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>01/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 83","<b>10/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>08/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>01/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 84","<b>08/31/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>11/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>10/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>06/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>12/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>03/09/2019<\/b><\/br>NA<\/br>pedestrian age: 58","<b>11/21/2019<\/b><\/br>Fatality<\/br>pedestrian age: 63","<b>06/19/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>01/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>02/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>12/17/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 76","<b>04/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>01/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>11/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>07/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>08/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>11/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>07/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>04/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>12/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>06/22/2019<\/b><\/br>Fatality<\/br>pedestrian age: 65","<b>05/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>07/11/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 81","<b>04/11/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>09/17/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>07/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>08/01/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>08/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>09/08/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/12/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/02/2019<\/b><\/br>NA<\/br>pedestrian age: 51","<b>08/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>10/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>01/22/2019<\/b><\/br>NA<\/br>pedestrian age: 29","<b>01/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>01/19/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>05/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>10/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>04/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>08/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>08/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>09/26/2019<\/b><\/br>Fatality<\/br>pedestrian age: 15","<b>11/23/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>07/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>09/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>09/01/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>09/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>12/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>03/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>03/28/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>05/23/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>08/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>03/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>03/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>09/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>06/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>10/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>10/11/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>03/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>05/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>11/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>08/21/2019<\/b><\/br>NA<\/br>pedestrian age: 5","<b>07/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>03/11/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>05/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>03/10/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>01/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>07/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>10/02/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>09/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 7","<b>07/03/2019<\/b><\/br>Fatality<\/br>pedestrian age: 45","<b>08/23/2019<\/b><\/br>Fatality<\/br>pedestrian age: 38","<b>02/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>07/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>08/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>05/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/30/2019<\/b><\/br>Fatality<\/br>pedestrian age: 64","<b>01/15/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>09/11/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>09/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>01/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>09/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>01/28/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>07/24/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>09/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>09/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>05/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>11/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>10/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>03/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>04/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>07/23/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>08/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>08/07/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>11/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>06/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>10/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>02/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>03/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>06/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 3","<b>05/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>09/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>10/30/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>04/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>05/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>07/12/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>06/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>08/13/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>05/14/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>08/17/2019<\/b><\/br>NA<\/br>pedestrian age: 22","<b>11/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>08/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>09/28/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>07/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>03/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>08/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>01/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>07/30/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>09/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>04/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>02/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>12/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>05/28/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>12/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>01/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>01/15/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>01/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>02/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>05/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>09/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>01/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>04/11/2019<\/b><\/br>NA<\/br>pedestrian age: 5","<b>09/28/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>09/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>03/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>06/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>08/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>07/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>09/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>04/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/09/2019<\/b><\/br>Fatality<\/br>pedestrian age: 45","<b>10/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>11/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>08/26/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>06/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>02/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>11/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>04/19/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>01/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>08/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>01/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>07/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>09/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>07/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>04/17/2019<\/b><\/br>NA<\/br>pedestrian age: 71","<b>06/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>08/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>06/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 75","<b>07/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>09/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>12/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>11/19/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>10/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>07/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>10/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>10/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>08/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>03/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>12/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>07/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>04/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>09/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>09/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 2","<b>08/28/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>07/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>07/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>06/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>10/08/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>11/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>12/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>06/29/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>11/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>01/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>08/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>01/28/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>09/04/2019<\/b><\/br>Fatality<\/br>pedestrian age: 1","<b>03/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>08/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>03/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>07/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>01/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>06/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>05/30/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>06/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>08/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>05/06/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>07/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>08/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>10/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>12/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>02/11/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>08/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/06/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>10/10/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 89","<b>06/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>07/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 3","<b>09/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>06/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>11/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>07/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>07/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>10/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>08/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>09/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>07/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>12/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>06/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>07/04/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>09/04/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>10/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>09/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>10/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>08/02/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>08/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>04/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>03/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 88","<b>01/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>09/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>07/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>03/25/2019<\/b><\/br>Fatality<\/br>pedestrian age: 61","<b>05/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/11/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>12/30/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 59","<b>10/12/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>12/12/2019<\/b><\/br>Fatality<\/br>pedestrian age: 89","<b>07/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>10/27/2019<\/b><\/br>NA<\/br>pedestrian age: 82","<b>05/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>12/09/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>09/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>03/18/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>03/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>06/22/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>08/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>06/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>09/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>04/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>05/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 0","<b>10/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>11/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/25/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>01/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/18/2019<\/b><\/br>Fatality<\/br>pedestrian age: 49","<b>09/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 82","<b>12/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>09/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>01/10/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>04/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>03/19/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>05/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>02/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 79","<b>02/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>04/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 75","<b>07/29/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>11/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>09/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>06/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>06/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>12/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>01/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>06/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>11/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>05/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 86","<b>06/07/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>09/04/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>02/13/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>02/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>03/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>08/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>05/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>10/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: NA","<b>11/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>04/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>08/29/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 79","<b>06/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>09/30/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 63","<b>06/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>04/25/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>09/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>07/17/2019<\/b><\/br>Fatality<\/br>pedestrian age: 39","<b>01/20/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>04/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>08/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>10/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>10/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>02/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>03/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>07/05/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>08/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>08/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>11/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>02/07/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>01/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>10/02/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>09/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>02/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>03/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>11/11/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 8","<b>11/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/27/2019<\/b><\/br>Fatality<\/br>pedestrian age: 84","<b>03/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>10/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>09/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>05/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>12/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>05/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>08/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>02/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>06/08/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>09/07/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>02/01/2019<\/b><\/br>NA<\/br>pedestrian age: 62","<b>06/09/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/22/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>06/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>02/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>02/08/2019<\/b><\/br>Fatality<\/br>pedestrian age: 54","<b>02/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>03/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>06/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/29/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>10/11/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>10/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>12/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>07/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>06/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>07/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>08/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>09/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>12/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>07/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>01/18/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>05/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>09/04/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>09/21/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>02/09/2019<\/b><\/br>NA<\/br>pedestrian age: 24","<b>02/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>02/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>11/28/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>07/02/2019<\/b><\/br>NA<\/br>pedestrian age: 32","<b>07/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>02/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>02/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>04/17/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 45","<b>09/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>10/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>03/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>05/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>10/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>03/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>04/23/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>07/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>08/24/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>12/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 84","<b>01/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>01/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>03/03/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>03/30/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>04/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>04/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>11/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>11/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>11/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>11/19/2019<\/b><\/br>NA<\/br>pedestrian age: 53","<b>11/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>11/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>11/29/2019<\/b><\/br>NA<\/br>pedestrian age: 29","<b>12/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>12/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>07/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>07/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>05/06/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>04/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>08/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/04/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>09/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>11/19/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>11/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>07/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>08/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/14/2019<\/b><\/br>NA<\/br>pedestrian age: 31","<b>01/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>06/23/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>07/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>05/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>07/04/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>08/10/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>01/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>01/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>04/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>11/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>07/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>08/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>08/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>04/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>04/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>02/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>03/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>04/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>02/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>07/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>01/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>02/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>09/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>03/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>04/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>05/15/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>04/21/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/07/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>08/10/2019<\/b><\/br>NA<\/br>pedestrian age: 34","<b>09/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>12/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>05/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>07/14/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>08/03/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>09/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>12/28/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>03/11/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>06/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>07/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>09/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>02/11/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>02/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>09/27/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 55","<b>01/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>01/26/2019<\/b><\/br>NA<\/br>pedestrian age: 40","<b>07/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>07/31/2019<\/b><\/br>NA<\/br>pedestrian age: 42","<b>08/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>09/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>03/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>07/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>08/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>09/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>09/15/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>09/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>10/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>10/30/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>12/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>03/15/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 45","<b>03/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>01/12/2019<\/b><\/br>NA<\/br>pedestrian age: 21","<b>06/19/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>08/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>05/16/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>05/18/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>07/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>08/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>08/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>08/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>08/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>07/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>05/15/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>05/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>04/05/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>01/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>07/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>09/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>10/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>01/02/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>01/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>02/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>03/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>11/14/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>07/22/2019<\/b><\/br>NA<\/br>pedestrian age: 40","<b>07/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>08/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>02/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>04/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>06/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>06/14/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>08/28/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>08/28/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>08/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>06/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/20/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>10/26/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>11/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>06/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>08/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>08/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>09/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>09/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>12/02/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>10/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>12/09/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>12/22/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>12/31/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>01/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>03/01/2019<\/b><\/br>NA<\/br>pedestrian age: 78","<b>03/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>03/23/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>06/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>06/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>08/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>09/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>09/09/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>08/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>02/04/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>05/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>01/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>04/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>08/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>03/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>07/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>09/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>09/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>06/24/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>06/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>07/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>08/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>07/09/2019<\/b><\/br>Fatality<\/br>pedestrian age: 33","<b>03/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>12/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>06/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>05/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>08/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>10/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>08/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>11/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>01/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>05/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 2","<b>05/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>05/24/2019<\/b><\/br>Fatality<\/br>pedestrian age: 55","<b>06/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>06/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>08/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>09/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>10/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>08/02/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 49","<b>05/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>06/04/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>06/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>06/12/2019<\/b><\/br>NA<\/br>pedestrian age: 29","<b>03/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>07/10/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>07/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>08/12/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>09/09/2019<\/b><\/br>NA<\/br>pedestrian age: 17","<b>10/01/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>04/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>05/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>05/30/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 64","<b>08/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>08/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>01/01/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>03/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>12/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>03/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>07/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>01/08/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>01/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>03/20/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>03/22/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>04/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>04/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>04/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>04/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>05/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>07/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>07/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>08/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>09/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>01/10/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 94","<b>07/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>06/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>07/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>01/16/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>02/16/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>02/19/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>07/18/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>08/01/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 43","<b>08/01/2019<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>08/07/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>10/23/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>10/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>11/01/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>01/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>01/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>02/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>01/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>10/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>08/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/07/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 73","<b>09/05/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 35","<b>11/18/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>04/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>11/08/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>09/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/13/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/22/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>01/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>09/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>09/08/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>10/14/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>06/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>06/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>07/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>09/28/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>02/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>05/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>07/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>05/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>08/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>03/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>08/29/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>09/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>10/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/16/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/24/2019<\/b><\/br>Fatality<\/br>pedestrian age: 25","<b>06/25/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>08/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>12/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>08/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>01/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>01/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>12/01/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>02/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>06/07/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>10/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>07/20/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>03/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 0","<b>09/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>08/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>10/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>03/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>05/18/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>10/24/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>04/25/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>03/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>05/02/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>04/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/02/2019<\/b><\/br>NA<\/br>pedestrian age: 27","<b>09/21/2019<\/b><\/br>NA<\/br>pedestrian age: 20","<b>11/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>08/06/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>09/13/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>12/28/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 59","<b>09/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>07/02/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>06/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>07/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>11/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>12/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>10/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>06/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>06/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>07/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>07/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>08/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>08/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>09/30/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>10/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>09/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>07/11/2019<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>06/11/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>06/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/15/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>11/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>09/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>08/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>09/25/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 56","<b>12/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>11/23/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>11/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>07/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/01/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>09/13/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>08/22/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>12/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>08/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>12/19/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>08/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>10/30/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>09/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>09/30/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>09/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/23/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>11/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>12/14/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>12/29/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>08/17/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>10/27/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>10/21/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>11/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>09/13/2019<\/b><\/br>NA<\/br>pedestrian age: 17","<b>08/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>11/03/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>12/20/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>12/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>10/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>11/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>11/20/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>08/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>12/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>11/16/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 74","<b>11/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>12/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>10/23/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>12/24/2019<\/b><\/br>Fatality<\/br>pedestrian age: 36","<b>12/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/14/2019<\/b><\/br>NA<\/br>pedestrian age: 49","<b>12/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>11/14/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>12/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>05/27/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>09/25/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>07/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/14/2019<\/b><\/br>NA<\/br>pedestrian age: 20","<b>08/26/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>06/20/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>10/09/2019<\/b><\/br>Fatality<\/br>pedestrian age: 9","<b>12/23/2019<\/b><\/br>NA<\/br>pedestrian age: 26","<b>12/10/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>10/04/2019<\/b><\/br>NA<\/br>pedestrian age: 35","<b>02/07/2019<\/b><\/br>NA<\/br>pedestrian age: 35","<b>05/22/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>03/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>05/12/2019<\/b><\/br>NA<\/br>pedestrian age: 28","<b>01/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/15/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>04/07/2019<\/b><\/br>NA<\/br>pedestrian age: 20","<b>10/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/14/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>09/15/2019<\/b><\/br>NA<\/br>pedestrian age: 12","<b>02/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>02/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>03/01/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>03/08/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>03/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>11/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>04/24/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/11/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>06/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>05/07/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>01/02/2019<\/b><\/br>NA<\/br>pedestrian age: 33","<b>07/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>08/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>09/06/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>10/27/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>11/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>12/10/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>12/22/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>03/25/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>09/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>11/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>08/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>09/14/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>08/07/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>12/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>12/16/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>12/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>04/30/2019<\/b><\/br>NA<\/br>pedestrian age: 58","<b>08/05/2019<\/b><\/br>NA<\/br>pedestrian age: 74","<b>10/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>10/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>10/11/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>07/31/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/09/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>10/16/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>12/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>09/08/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>04/03/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>04/23/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/25/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>07/15/2019<\/b><\/br>Fatality<\/br>pedestrian age: 69","<b>09/30/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>11/04/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 8","<b>05/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>07/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>03/21/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>04/11/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>09/30/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 7","<b>11/16/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>11/25/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>06/12/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>04/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>05/07/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/06/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>06/08/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>09/17/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>09/19/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/17/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>06/17/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>05/19/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>06/25/2019<\/b><\/br>NA<\/br>pedestrian age: 45","<b>09/03/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>04/20/2019<\/b><\/br>NA<\/br>pedestrian age: 43","<b>07/01/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>07/25/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>05/26/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>09/05/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>10/29/2019<\/b><\/br>NA<\/br>pedestrian age: 31","<b>12/13/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>10/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/11/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>12/12/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>09/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>09/14/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>12/28/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>12/30/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>03/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>04/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>09/11/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>09/11/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>10/07/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/08/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>10/29/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>11/04/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>07/15/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>10/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>06/18/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>11/17/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>12/24/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>03/09/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 58","<b>06/18/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 35","<b>11/03/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>02/02/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>05/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>05/26/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 41","<b>05/31/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/05/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/07/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>09/26/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>05/10/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>03/21/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>06/18/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>11/09/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 1","<b>07/07/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>07/27/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>10/04/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: 48","<b>05/09/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>05/10/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>08/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/30/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>02/11/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>07/30/2019<\/b><\/br>NA<\/br>pedestrian age: 40","<b>07/30/2019<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>05/15/2019<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>10/19/2019<\/b><\/br>Fatality<\/br>pedestrian age: 68","<b>09/30/2019<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>11/19/2019<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>05/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>01/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>01/31/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>02/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/17/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>02/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>04/18/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>11/21/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>06/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>06/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>08/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>09/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>09/06/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>04/13/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>07/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>09/18/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>10/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>02/04/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/01/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>07/16/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>06/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>06/19/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>09/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>09/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>09/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>08/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>09/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>02/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>02/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>10/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>10/24/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/13/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>04/04/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>06/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/21/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>06/22/2020<\/b><\/br>Fatality<\/br>pedestrian age: 29","<b>02/15/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 2","<b>07/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>04/30/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>09/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>11/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>11/12/2020<\/b><\/br>NA<\/br>pedestrian age: 43","<b>07/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>08/20/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>08/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>05/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>06/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>01/03/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>10/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>11/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>11/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>11/19/2020<\/b><\/br>NA<\/br>pedestrian age: 46","<b>11/06/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>10/03/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>02/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>04/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>08/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>08/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>09/14/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>05/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>06/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>11/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/21/2020<\/b><\/br>Fatality<\/br>pedestrian age: 46","<b>09/06/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>12/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>04/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>11/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>01/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>06/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>09/18/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>09/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>11/12/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>05/30/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>02/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>05/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>03/29/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>06/21/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>07/15/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>08/19/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>09/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>11/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>04/16/2020<\/b><\/br>Fatality<\/br>pedestrian age: 21","<b>01/09/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>02/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>06/12/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>09/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>11/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>06/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>02/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>10/06/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>10/07/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>02/18/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>03/10/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>05/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>09/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>06/10/2020<\/b><\/br>NA<\/br>pedestrian age: 35","<b>05/31/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>06/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>07/31/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>06/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>07/14/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>10/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>11/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>08/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>11/03/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>11/09/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>06/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>03/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>04/14/2020<\/b><\/br>Fatality<\/br>pedestrian age: 46","<b>06/25/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>02/10/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>11/23/2020<\/b><\/br>NA<\/br>pedestrian age: 34","<b>02/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>08/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>10/05/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>06/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>10/21/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>10/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>02/03/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>06/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>10/16/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>09/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>10/24/2020<\/b><\/br>Fatality<\/br>pedestrian age: 34","<b>06/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>07/07/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>03/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>09/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>02/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>10/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>12/05/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>07/19/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>11/17/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>10/22/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>08/29/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>09/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>12/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>06/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>06/16/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>09/09/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>10/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>06/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>07/15/2020<\/b><\/br>Fatality<\/br>pedestrian age: 25","<b>07/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>08/27/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>04/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>03/22/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>06/27/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>08/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>11/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>06/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>09/20/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>11/27/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>03/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>07/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>07/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>09/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/08/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>10/04/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>05/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/02/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>06/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>06/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>08/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>10/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>08/18/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>05/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>07/17/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>07/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>06/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/25/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>12/02/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 64","<b>10/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>06/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>05/13/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 31","<b>08/20/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>12/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>11/04/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>10/20/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>08/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>04/02/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>07/14/2020<\/b><\/br>Fatality<\/br>pedestrian age: 5","<b>08/12/2020<\/b><\/br>NA<\/br>pedestrian age: 61","<b>10/10/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>12/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>10/27/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>01/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>01/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/17/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>09/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>12/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/06/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 55","<b>12/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/28/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>09/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>05/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>02/20/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>10/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>11/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>11/03/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>08/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>11/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>06/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>07/07/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>07/19/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>08/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/31/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>10/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/07/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 64","<b>01/31/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>05/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>01/04/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>10/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>10/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>11/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>12/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>12/29/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 85","<b>02/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>01/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>12/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>05/12/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>06/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>07/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>10/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>05/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>11/20/2020<\/b><\/br>Fatality<\/br>pedestrian age: 21","<b>11/23/2020<\/b><\/br>NA<\/br>pedestrian age: 9","<b>08/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>09/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/01/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>06/29/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>09/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>11/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>10/11/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>11/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>12/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>08/05/2020<\/b><\/br>NA<\/br>pedestrian age: 62","<b>05/02/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>01/03/2020<\/b><\/br>Fatality<\/br>pedestrian age: 38","<b>04/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>07/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>07/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/30/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>07/13/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>05/18/2020<\/b><\/br>NA<\/br>pedestrian age: 38","<b>08/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/18/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>11/16/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>05/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/28/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>09/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>09/13/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>02/21/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>02/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/26/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>06/09/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>12/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>03/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/05/2020<\/b><\/br>Fatality<\/br>pedestrian age: 42","<b>04/20/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>06/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 3","<b>08/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>10/18/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>05/19/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>06/14/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>01/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>03/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>12/23/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>08/13/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>01/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 96","<b>08/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>01/03/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>01/03/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/04/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>07/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/08/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>07/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>09/02/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>11/05/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>03/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>06/11/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 6","<b>09/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>06/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>08/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>06/08/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>06/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>03/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>08/06/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>07/09/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>07/28/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>05/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>10/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>11/06/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>01/30/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>04/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>01/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>10/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>06/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>01/18/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>04/05/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>10/23/2020<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>06/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/18/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>11/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>07/05/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>07/04/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>07/16/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>09/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>08/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/06/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 35","<b>10/23/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>03/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>06/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/05/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>10/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 90","<b>10/18/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>05/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>12/02/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>05/08/2020<\/b><\/br>NA<\/br>pedestrian age: 27","<b>10/19/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>06/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>08/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/15/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>10/22/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 86","<b>11/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>01/19/2020<\/b><\/br>NA<\/br>pedestrian age: 63","<b>08/25/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>08/08/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>08/03/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>01/17/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>05/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>09/12/2020<\/b><\/br>NA<\/br>pedestrian age: 47","<b>07/23/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>10/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>12/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>09/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 85","<b>03/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>10/09/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>08/18/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>05/30/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>09/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>08/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>08/04/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>01/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>01/03/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>03/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>04/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>06/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>11/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>12/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>07/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>11/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>03/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>09/11/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>05/26/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 79","<b>06/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>06/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>07/20/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>01/05/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>03/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/14/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>01/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>05/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>06/27/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>02/12/2020<\/b><\/br>NA<\/br>pedestrian age: 39","<b>03/17/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>08/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>09/30/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>10/07/2020<\/b><\/br>Fatality<\/br>pedestrian age: 69","<b>11/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>01/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>01/07/2020<\/b><\/br>NA<\/br>pedestrian age: 32","<b>02/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>03/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/25/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>08/13/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>09/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>09/14/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>09/16/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>10/05/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>10/29/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>05/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>11/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>06/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>01/22/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>07/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>05/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>06/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>08/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>10/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>09/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>12/05/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>10/02/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>07/09/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>12/09/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>10/02/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>05/12/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 88","<b>07/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>12/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>12/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>09/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/27/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>06/23/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 83","<b>10/02/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>04/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>01/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>03/01/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>06/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>09/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>03/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>07/05/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>08/08/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>09/17/2020<\/b><\/br>Fatality<\/br>pedestrian age: 17","<b>11/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>02/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>09/09/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>07/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>12/02/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>03/10/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/27/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>09/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>07/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>07/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>08/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>12/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>07/27/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>04/02/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>05/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>09/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>06/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>08/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>04/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>08/12/2020<\/b><\/br>Fatality<\/br>pedestrian age: 92","<b>06/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>05/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>05/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>09/25/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>11/06/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>05/19/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>06/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>11/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>09/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/01/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>04/08/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>06/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>06/02/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>11/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>12/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>08/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>11/06/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>07/31/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>06/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/08/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 65","<b>05/22/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 88","<b>05/31/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>07/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>07/19/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>12/04/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/28/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>07/11/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>05/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>08/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>10/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>05/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>08/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>11/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>08/07/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>04/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>08/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>06/06/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>05/12/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 69","<b>07/04/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>10/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>11/12/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>07/03/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>07/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>08/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>08/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>06/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>07/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>04/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>08/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>08/20/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>06/26/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>08/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>10/16/2020<\/b><\/br>Fatality<\/br>pedestrian age: 59","<b>08/21/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>08/28/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>07/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>10/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/08/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>08/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>01/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/31/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>05/31/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>01/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>06/14/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 1","<b>08/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>07/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>02/07/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>06/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>02/12/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>04/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>06/03/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>06/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>11/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/28/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>07/01/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>08/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>08/19/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>10/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>12/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>03/02/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>03/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>02/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>08/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>10/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>09/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>08/14/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>06/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>10/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>09/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>09/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>09/13/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>08/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>01/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>10/20/2020<\/b><\/br>Fatality<\/br>pedestrian age: 69","<b>02/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>10/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>01/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>02/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>02/26/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>04/09/2020<\/b><\/br>NA<\/br>pedestrian age: 34","<b>12/10/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>04/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>08/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/23/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>07/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>10/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>08/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>08/08/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>03/20/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>02/27/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>01/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>09/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>08/13/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>07/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 89","<b>09/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>07/19/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>08/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>10/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>10/02/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>10/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>11/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/06/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>12/04/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>10/22/2020<\/b><\/br>NA<\/br>pedestrian age: 35","<b>09/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>09/24/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>12/18/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>06/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>10/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>02/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>06/03/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>02/16/2020<\/b><\/br>Fatality<\/br>pedestrian age: 31","<b>04/17/2020<\/b><\/br>NA<\/br>pedestrian age: 39","<b>12/04/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>07/30/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>06/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>09/16/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>09/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>02/04/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>11/17/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>09/22/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>10/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>10/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 88","<b>05/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>12/23/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>02/19/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>06/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>10/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>04/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>07/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>04/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>06/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>09/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>08/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>04/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>02/13/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>07/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>08/15/2020<\/b><\/br>Fatality<\/br>pedestrian age: 35","<b>11/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>11/14/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>10/20/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/30/2020<\/b><\/br>NA<\/br>pedestrian age: 38","<b>02/26/2020<\/b><\/br>NA<\/br>pedestrian age: 17","<b>07/30/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>11/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>08/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>02/20/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>03/10/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 6","<b>06/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>11/14/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>10/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/18/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>10/23/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/26/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>10/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/18/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>06/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/23/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>07/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>09/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>11/03/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>10/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>08/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>04/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/29/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>09/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>01/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/04/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>10/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>09/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>11/20/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>03/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>01/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>02/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>05/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>07/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>11/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>08/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/31/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>08/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>02/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>09/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/27/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>01/25/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>08/28/2020<\/b><\/br>Fatality<\/br>pedestrian age: 70","<b>07/12/2020<\/b><\/br>Fatality<\/br>pedestrian age: 58","<b>07/13/2020<\/b><\/br>Fatality<\/br>pedestrian age: 29","<b>02/22/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>07/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>11/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/13/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>11/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>05/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>07/16/2020<\/b><\/br>Fatality<\/br>pedestrian age: 67","<b>11/03/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>11/10/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>04/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/18/2020<\/b><\/br>Fatality<\/br>pedestrian age: 49","<b>12/04/2020<\/b><\/br>NA<\/br>pedestrian age: 69","<b>03/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>08/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>06/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>11/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>09/19/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>12/27/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>06/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>02/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>07/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/22/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>04/27/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>05/28/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>06/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>08/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>08/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>10/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>06/13/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>10/05/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>04/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/31/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>01/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>01/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>01/23/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>07/31/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>11/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>11/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>06/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>08/02/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>10/20/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>12/09/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 76","<b>07/14/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>06/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>06/23/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>10/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/24/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>06/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>07/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>04/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>12/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>06/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>09/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>07/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>04/09/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>07/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/21/2020<\/b><\/br>Fatality<\/br>pedestrian age: 86","<b>06/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>03/09/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>03/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>11/07/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>08/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/10/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>08/04/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>08/30/2020<\/b><\/br>NA<\/br>pedestrian age: 18","<b>08/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/20/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>01/02/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>05/05/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>05/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>09/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>08/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>10/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>09/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>11/07/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>11/22/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>05/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>02/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>09/08/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>09/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>07/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>12/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>01/29/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>12/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>05/01/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>06/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>12/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>09/19/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>07/07/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>08/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>04/05/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>08/20/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>08/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>05/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>03/12/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>05/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>12/07/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>07/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>04/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>05/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>03/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>09/09/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>06/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>06/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>09/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>10/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>03/06/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>04/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>03/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>06/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>09/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>10/26/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>05/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/31/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>06/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 89","<b>08/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>08/21/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>08/31/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>07/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>11/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/04/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>08/11/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>06/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>09/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/15/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>01/22/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>09/10/2020<\/b><\/br>Fatality<\/br>pedestrian age: 26","<b>09/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>08/14/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>04/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>04/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/15/2020<\/b><\/br>Fatality<\/br>pedestrian age: 41","<b>05/16/2020<\/b><\/br>Fatality<\/br>pedestrian age: 83","<b>04/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>08/18/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>06/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/01/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>02/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>02/14/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>12/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>02/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>01/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>02/11/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>02/28/2020<\/b><\/br>Fatality<\/br>pedestrian age: 59","<b>09/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>05/07/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>12/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>04/26/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>10/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>02/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>08/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>05/25/2020<\/b><\/br>NA<\/br>pedestrian age: 46","<b>08/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/19/2020<\/b><\/br>Fatality<\/br>pedestrian age: 35","<b>03/03/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>01/25/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>07/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/12/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>06/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>07/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 0","<b>07/08/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>01/25/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>06/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/10/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 7","<b>08/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>09/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>10/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>02/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>03/25/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>11/28/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>12/02/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>07/29/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>08/29/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>11/25/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>05/31/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/26/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>06/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>10/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>07/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>12/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>03/30/2020<\/b><\/br>Fatality<\/br>pedestrian age: 91","<b>09/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>06/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>01/26/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>01/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>06/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>06/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/04/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>06/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>09/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>11/11/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>01/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/26/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>01/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>07/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>09/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>12/21/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 84","<b>10/06/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>11/17/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 91","<b>09/05/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>02/21/2020<\/b><\/br>NA<\/br>pedestrian age: 67","<b>09/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>05/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>05/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>08/04/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>07/15/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>09/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>06/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/22/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>08/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>08/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>12/22/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>06/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>06/14/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>05/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 96","<b>03/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>09/20/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 58","<b>07/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>08/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>08/01/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>04/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>07/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>04/14/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>08/20/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>08/28/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>07/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>09/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>05/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>08/14/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 58","<b>09/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>12/28/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 97","<b>09/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>07/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>10/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>09/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>04/01/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>09/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>10/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/07/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>01/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>02/27/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>08/31/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>08/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>03/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>12/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>06/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>10/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>09/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>11/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>06/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>07/31/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>03/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 90","<b>07/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>01/31/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>06/18/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>08/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>11/25/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>09/05/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>05/06/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>06/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/03/2020<\/b><\/br>Fatality<\/br>pedestrian age: 53","<b>09/30/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>12/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>04/01/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>06/30/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 43","<b>01/03/2020<\/b><\/br>NA<\/br>pedestrian age: 32","<b>03/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>10/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>09/17/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>09/17/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>08/20/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>01/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>08/11/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>12/09/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>12/09/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>08/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>09/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>05/29/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>06/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>03/12/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>07/05/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>08/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>07/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>06/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>06/11/2020<\/b><\/br>NA<\/br>pedestrian age: 36","<b>12/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>07/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>10/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>02/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>11/30/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>03/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/23/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>04/23/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 48","<b>09/02/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>08/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>10/09/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>10/03/2020<\/b><\/br>Fatality<\/br>pedestrian age: 69","<b>08/21/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>09/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/26/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/26/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>02/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>01/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>07/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>08/01/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>10/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/28/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>08/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>07/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/11/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>08/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>10/01/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 84","<b>08/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>05/02/2020<\/b><\/br>NA<\/br>pedestrian age: 31","<b>06/05/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>06/11/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>09/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>01/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>01/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>01/23/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>06/11/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>10/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>07/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/09/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>08/16/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 67","<b>10/20/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>08/14/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>12/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>07/12/2020<\/b><\/br>NA<\/br>pedestrian age: 38","<b>11/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>07/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>06/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>04/25/2020<\/b><\/br>NA<\/br>pedestrian age: 35","<b>01/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/31/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>09/04/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>09/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>07/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 84","<b>04/17/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>05/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>11/28/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>05/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/19/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>08/31/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>11/17/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 81","<b>06/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>04/20/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>07/20/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/31/2020<\/b><\/br>NA<\/br>pedestrian age: 71","<b>07/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>08/09/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>09/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>06/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>08/12/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>11/25/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>07/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>10/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/15/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>09/17/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>07/23/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>08/11/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>09/18/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>11/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>11/24/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>10/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>10/20/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/28/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>03/17/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>06/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/12/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>09/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>03/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>07/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>08/23/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>12/22/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>08/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>09/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>05/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>07/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>11/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>07/20/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>08/08/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>09/08/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>12/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>02/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>01/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/27/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>05/17/2020<\/b><\/br>Fatality<\/br>pedestrian age: 18","<b>07/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>12/16/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>03/05/2020<\/b><\/br>Fatality<\/br>pedestrian age: 76","<b>07/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>09/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 93","<b>10/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>10/10/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>10/31/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>01/01/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>08/26/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>08/14/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 1","<b>09/05/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 79","<b>07/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>08/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/19/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>11/23/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>08/04/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>12/23/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>03/08/2020<\/b><\/br>Fatality<\/br>pedestrian age: 68","<b>05/20/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>02/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>04/05/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>04/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>05/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/03/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>06/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/16/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 1","<b>03/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>10/18/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>11/20/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>09/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>03/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>01/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>08/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/26/2020<\/b><\/br>Fatality<\/br>pedestrian age: 76","<b>12/11/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>02/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 91","<b>09/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>03/29/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>01/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>08/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/31/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>07/29/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>11/23/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>01/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>02/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>12/30/2020<\/b><\/br>NA<\/br>pedestrian age: 51","<b>07/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>01/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>01/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>06/18/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>02/10/2020<\/b><\/br>NA<\/br>pedestrian age: 33","<b>01/09/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>07/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>12/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>09/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/06/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>07/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>03/23/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>05/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>10/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>07/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>10/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>10/27/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>05/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>01/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>08/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>02/07/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 81","<b>05/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>09/12/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 49","<b>11/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>09/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>08/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>11/09/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>08/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>09/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>10/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>11/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>01/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>10/31/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>11/16/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>02/29/2020<\/b><\/br>NA<\/br>pedestrian age: 57","<b>11/03/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>02/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>06/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>09/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>09/13/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>08/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>09/04/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>09/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/08/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>09/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>01/02/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>03/19/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>07/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/31/2020<\/b><\/br>Fatality<\/br>pedestrian age: 59","<b>09/04/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>09/17/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>04/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>06/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>07/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>09/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/13/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 43","<b>05/24/2020<\/b><\/br>NA<\/br>pedestrian age: 32","<b>02/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>04/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>04/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>06/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/18/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>10/17/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>07/03/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>06/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>06/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 91","<b>07/15/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>11/13/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>12/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>09/11/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>07/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>12/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>12/23/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>09/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/20/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>11/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>04/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>12/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>09/15/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>07/02/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>08/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>09/21/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>02/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>08/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>08/14/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>10/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/08/2020<\/b><\/br>Fatality<\/br>pedestrian age: 78","<b>05/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>07/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>11/07/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>10/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>03/05/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>04/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>05/23/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 3","<b>11/18/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>06/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/05/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>01/15/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>09/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/30/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>07/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>08/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/28/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>12/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>07/29/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>09/03/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>09/11/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>10/20/2020<\/b><\/br>Fatality<\/br>pedestrian age: 26","<b>11/14/2020<\/b><\/br>Fatality<\/br>pedestrian age: 59","<b>04/07/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 1","<b>08/08/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>06/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>05/25/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>07/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/16/2020<\/b><\/br>Fatality<\/br>pedestrian age: 63","<b>08/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>06/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>07/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>01/31/2020<\/b><\/br>NA<\/br>pedestrian age: 46","<b>08/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/09/2020<\/b><\/br>Fatality<\/br>pedestrian age: 12","<b>05/02/2020<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>07/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>03/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>09/18/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>01/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/20/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>07/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>07/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>06/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>01/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>02/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>06/18/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>03/12/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>06/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>08/14/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>06/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>03/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 80","<b>05/23/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>03/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>09/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>10/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>08/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>07/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/15/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>09/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/09/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 49","<b>01/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>01/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>01/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>12/16/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>05/04/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>06/19/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>06/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>01/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>02/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>06/19/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 56","<b>08/09/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>08/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>09/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>06/05/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>06/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/25/2020<\/b><\/br>NA<\/br>pedestrian age: 27","<b>09/03/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>09/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>08/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>10/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>10/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>11/14/2020<\/b><\/br>NA<\/br>pedestrian age: 19","<b>02/25/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>08/22/2020<\/b><\/br>Fatality<\/br>pedestrian age: 20","<b>02/19/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>08/15/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>08/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>02/20/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>05/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>08/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>05/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>07/29/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>08/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>03/11/2020<\/b><\/br>Fatality<\/br>pedestrian age: 68","<b>02/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/10/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>01/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/09/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>04/16/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>05/06/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>09/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>09/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>07/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>01/02/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>03/01/2020<\/b><\/br>Fatality<\/br>pedestrian age: 36","<b>09/09/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>06/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>06/29/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>04/14/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>07/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>11/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>01/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 3","<b>03/01/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>08/28/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>02/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>05/07/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 49","<b>10/27/2020<\/b><\/br>Fatality<\/br>pedestrian age: 86","<b>05/02/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>06/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>02/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>06/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>09/05/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 76","<b>05/25/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>01/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>02/11/2020<\/b><\/br>Fatality<\/br>pedestrian age: 37","<b>08/25/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>08/30/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/08/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>08/29/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 5","<b>02/11/2020<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>02/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>03/13/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>07/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>07/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>12/31/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>02/15/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>04/27/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>07/27/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>08/25/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>10/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>01/02/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>04/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>05/15/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>05/27/2020<\/b><\/br>NA<\/br>pedestrian age: 20","<b>12/21/2020<\/b><\/br>NA<\/br>pedestrian age: 24","<b>10/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>02/12/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>08/22/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>01/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>11/25/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>01/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/09/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>06/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>03/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>08/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>03/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>06/04/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>01/07/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>05/02/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>05/05/2020<\/b><\/br>Fatality<\/br>pedestrian age: 45","<b>06/19/2020<\/b><\/br>Fatality<\/br>pedestrian age: 44","<b>10/03/2020<\/b><\/br>Fatality<\/br>pedestrian age: 23","<b>11/25/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>07/23/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>08/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>09/30/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>08/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>05/21/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>06/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>02/03/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>02/03/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>02/14/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>02/22/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>11/10/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>11/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>12/21/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>12/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>10/11/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>01/02/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>08/29/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>12/15/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>01/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>10/31/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>10/19/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>11/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>08/22/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>01/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 1","<b>07/09/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>09/06/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>10/09/2020<\/b><\/br>NA<\/br>pedestrian age: 24","<b>02/05/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>09/23/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>11/04/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>02/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>06/30/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>09/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>10/26/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>01/04/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>07/08/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>08/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/22/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 56","<b>08/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>11/13/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>07/05/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>06/22/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>04/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>12/23/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>11/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>08/07/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>08/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>08/02/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>06/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>09/23/2020<\/b><\/br>NA<\/br>pedestrian age: 26","<b>08/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>07/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>05/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>10/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>09/02/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>06/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>06/19/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>06/29/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>11/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>12/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>07/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>07/03/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>01/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>06/03/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 35","<b>08/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>06/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>08/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>02/14/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>03/06/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>06/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/29/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>08/02/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>05/02/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 6","<b>07/01/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>11/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>11/17/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>11/23/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>11/26/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>12/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>06/16/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>07/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>03/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>06/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/22/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>06/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>06/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/09/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>02/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>03/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>03/10/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 64","<b>06/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>10/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>02/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>12/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>10/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>11/22/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>08/29/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>07/25/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>11/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>02/15/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>03/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>11/06/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>01/08/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>01/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 76","<b>03/02/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>11/17/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>03/02/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>03/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/11/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>09/03/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>10/05/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>06/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>08/02/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>12/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>02/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/14/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>06/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>12/18/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>10/15/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>12/05/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>12/28/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>07/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>07/24/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/08/2020<\/b><\/br>Fatality<\/br>pedestrian age: 52","<b>08/17/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>05/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>06/08/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>02/18/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>10/25/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>07/02/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>11/16/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>10/30/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>12/03/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>01/31/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 1","<b>06/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>10/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>10/31/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 79","<b>05/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>07/15/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>07/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>08/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>10/18/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>03/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>03/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>11/18/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 82","<b>12/25/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>06/17/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>09/06/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 54","<b>06/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/31/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 3","<b>08/08/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>10/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/29/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>12/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>10/21/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>10/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/14/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>06/28/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 6","<b>11/25/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>10/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>11/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>12/14/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>12/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>10/31/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>07/30/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>11/04/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>12/18/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>10/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>12/19/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 50","<b>10/30/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>12/28/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>07/25/2020<\/b><\/br>Fatality<\/br>pedestrian age: 54","<b>09/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>10/03/2020<\/b><\/br>NA<\/br>pedestrian age: 40","<b>10/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/04/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>07/06/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>09/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>09/27/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>12/31/2020<\/b><\/br>NA<\/br>pedestrian age: 68","<b>10/13/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>12/01/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>08/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>07/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/22/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>05/29/2020<\/b><\/br>Fatality<\/br>pedestrian age: 25","<b>12/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>08/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>10/31/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>09/16/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>11/12/2020<\/b><\/br>NA<\/br>pedestrian age: 69","<b>12/26/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>08/04/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>12/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>11/27/2020<\/b><\/br>NA<\/br>pedestrian age: 21","<b>08/07/2020<\/b><\/br>NA<\/br>pedestrian age: 17","<b>08/17/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>06/12/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/12/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/21/2020<\/b><\/br>Fatality<\/br>pedestrian age: 67","<b>09/24/2020<\/b><\/br>Fatality<\/br>pedestrian age: 39","<b>11/02/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>12/17/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>07/13/2020<\/b><\/br>NA<\/br>pedestrian age: 53","<b>02/09/2020<\/b><\/br>NA<\/br>pedestrian age: 38","<b>08/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>02/12/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 42","<b>02/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>08/05/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>01/11/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>02/14/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>08/23/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>01/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>10/06/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 40","<b>01/22/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>06/26/2020<\/b><\/br>NA<\/br>pedestrian age: 52","<b>07/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/12/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>09/17/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>11/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>01/31/2020<\/b><\/br>Fatality<\/br>pedestrian age: 57","<b>02/25/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>02/16/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>03/04/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>07/19/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>07/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>02/10/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>02/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>09/03/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>09/03/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>05/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>07/27/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>09/06/2020<\/b><\/br>NA<\/br>pedestrian age: 16","<b>08/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>10/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 84","<b>11/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>05/25/2020<\/b><\/br>NA<\/br>pedestrian age: 12","<b>05/25/2020<\/b><\/br>NA<\/br>pedestrian age: 12","<b>05/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>03/17/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>03/18/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>05/14/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>06/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/31/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>03/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>03/10/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>06/16/2020<\/b><\/br>NA<\/br>pedestrian age: 32","<b>10/26/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>01/09/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>08/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>04/11/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>07/02/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>01/07/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>01/15/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>02/03/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>04/20/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>08/27/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>09/05/2020<\/b><\/br>NA<\/br>pedestrian age: 19","<b>07/29/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>09/04/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>07/31/2020<\/b><\/br>Fatality<\/br>pedestrian age: 49","<b>08/01/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>06/07/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>07/08/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>06/21/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>04/24/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>09/17/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>05/09/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>08/19/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>09/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>11/11/2020<\/b><\/br>No apparent injury<\/br>pedestrian age: 43","<b>11/30/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>01/26/2020<\/b><\/br>Fatality<\/br>pedestrian age: 53","<b>08/17/2020<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/27/2020<\/b><\/br>Fatality<\/br>pedestrian age: 79","<b>09/01/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>09/02/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>09/10/2020<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/21/2020<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>02/19/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>03/24/2020<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>06/03/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>06/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/26/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>10/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>04/03/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>09/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>05/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>12/13/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>01/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>01/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>03/20/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>04/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>04/11/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>04/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>08/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>04/29/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>05/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>06/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>08/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>12/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>01/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>07/17/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 0","<b>09/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>09/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>11/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>06/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>10/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/03/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 41","<b>10/13/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>11/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>08/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>08/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>10/13/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>07/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>03/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>10/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>11/10/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>11/15/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>10/25/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>08/10/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>09/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>06/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>08/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>08/23/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 90","<b>06/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>05/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/08/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/13/2021<\/b><\/br>NA<\/br>pedestrian age: 24","<b>06/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>10/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>01/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>07/03/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>12/13/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>05/22/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>10/21/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/02/2021<\/b><\/br>Fatality<\/br>pedestrian age: 57","<b>01/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>08/18/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>02/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>10/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>10/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>11/03/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>11/17/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>11/29/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>07/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/14/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>09/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>11/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>05/22/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>06/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>06/26/2021<\/b><\/br>Fatality<\/br>pedestrian age: 30","<b>05/31/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>04/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>08/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>04/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>06/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>07/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>04/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>11/04/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>05/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/30/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>12/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>04/17/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>09/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>04/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>12/01/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>06/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>09/20/2021<\/b><\/br>Fatality<\/br>pedestrian age: 62","<b>07/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>09/15/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>06/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>03/03/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>09/16/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>10/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>08/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/04/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>10/17/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>04/24/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>05/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>06/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>08/20/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>09/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>11/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>11/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>12/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>03/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/14/2021<\/b><\/br>Fatality<\/br>pedestrian age: 36","<b>05/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>08/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/13/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>10/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>11/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>11/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>12/10/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>12/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>12/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>03/28/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 71","<b>04/26/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>05/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>04/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/09/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>08/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>12/13/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>12/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>03/19/2021<\/b><\/br>NA<\/br>pedestrian age: 57","<b>09/11/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>03/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>05/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>06/26/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 40","<b>08/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>09/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>12/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>04/03/2021<\/b><\/br>Fatality<\/br>pedestrian age: 37","<b>08/14/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>05/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>07/09/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>07/14/2021<\/b><\/br>Fatality<\/br>pedestrian age: 26","<b>08/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>07/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>08/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>10/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>10/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 83","<b>12/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>10/12/2021<\/b><\/br>Fatality<\/br>pedestrian age: 33","<b>05/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>09/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>02/24/2021<\/b><\/br>Fatality<\/br>pedestrian age: 45","<b>01/30/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>09/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>12/02/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>06/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>07/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>08/20/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>08/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>11/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>10/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>09/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>11/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>07/26/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 3","<b>01/06/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>09/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>10/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/08/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>10/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>04/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>07/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>01/13/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: NA","<b>09/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>10/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>03/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>08/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>09/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>04/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>10/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>01/20/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>08/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>11/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>12/31/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>05/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>09/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>05/21/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>03/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>09/10/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>10/11/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>11/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>01/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>08/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>09/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>01/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>10/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>04/03/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>06/03/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>11/22/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>07/29/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>08/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>09/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>03/08/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>05/22/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>08/07/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>09/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>06/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>06/23/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>03/13/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>08/13/2021<\/b><\/br>NA<\/br>pedestrian age: 23","<b>09/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>08/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>01/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>07/13/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>07/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>06/17/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>09/06/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 57","<b>02/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>10/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>07/24/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>11/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>05/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>07/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>04/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>12/27/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/25/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>03/18/2021<\/b><\/br>Fatality<\/br>pedestrian age: 28","<b>04/04/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/06/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>07/15/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>02/23/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 44","<b>06/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>08/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>03/23/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>02/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/06/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>06/03/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>01/10/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>06/14/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>06/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>08/27/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>09/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>04/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/08/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>03/06/2021<\/b><\/br>NA<\/br>pedestrian age: 26","<b>11/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/26/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>07/06/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>06/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>12/22/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 40","<b>09/18/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>01/04/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>10/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>10/19/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>11/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>05/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>10/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>09/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>05/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>01/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>05/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/07/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 8","<b>07/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>10/30/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 45","<b>06/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>12/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>12/22/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>06/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>01/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>08/06/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>12/13/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>05/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>09/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/06/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>02/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>02/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>04/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>07/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>06/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>10/26/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>05/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>06/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/27/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>01/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>08/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>09/07/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>11/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>05/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>09/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>07/16/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>03/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>03/27/2021<\/b><\/br>NA<\/br>pedestrian age: 23","<b>06/14/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>09/27/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>09/23/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>10/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>12/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 86","<b>06/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>10/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>04/27/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>04/30/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>05/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>09/20/2021<\/b><\/br>NA<\/br>pedestrian age: 64","<b>10/02/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 3","<b>01/05/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 69","<b>07/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>09/16/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>09/20/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>09/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>10/26/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>11/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>08/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>09/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>09/27/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>02/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>10/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/16/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>10/25/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>12/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>03/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>12/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>08/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>08/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>06/23/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>02/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>05/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>09/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>10/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>08/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>12/16/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>10/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>10/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>05/21/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>01/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>05/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>04/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>10/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>01/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>09/05/2021<\/b><\/br>NA<\/br>pedestrian age: 28","<b>03/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>11/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>02/08/2021<\/b><\/br>Fatality<\/br>pedestrian age: 34","<b>07/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/28/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>04/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>06/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>07/21/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 50","<b>05/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>06/17/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>11/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>12/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>12/10/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 62","<b>07/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>12/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>01/13/2021<\/b><\/br>NA<\/br>pedestrian age: 18","<b>09/16/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>08/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>08/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>09/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>09/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>03/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>12/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>03/20/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>09/11/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>10/26/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>06/03/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>12/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>04/10/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 41","<b>08/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>01/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>08/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>07/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>07/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 83","<b>10/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>05/25/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 93","<b>09/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>09/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>03/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>12/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>05/20/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>03/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>08/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>12/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>02/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>06/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>05/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>04/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>07/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>07/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/27/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>11/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>01/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>06/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>09/21/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>12/02/2021<\/b><\/br>Fatality<\/br>pedestrian age: 77","<b>09/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/15/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>10/03/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>11/17/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>07/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/25/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>04/27/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>09/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>06/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>06/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>09/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 88","<b>05/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>01/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>07/29/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>03/11/2021<\/b><\/br>Fatality<\/br>pedestrian age: 35","<b>07/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/18/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>02/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>07/06/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>08/31/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>11/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>11/29/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>12/09/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>10/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>09/16/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>09/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>05/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/09/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>10/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>12/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>04/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>11/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>11/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>01/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>03/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>04/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>08/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>09/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>10/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/05/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>12/10/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>12/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>12/17/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>12/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>09/16/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>11/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>05/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>09/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>03/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>04/12/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>08/17/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>09/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>06/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>02/25/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/23/2021<\/b><\/br>Fatality<\/br>pedestrian age: 44","<b>11/23/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>09/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/14/2021<\/b><\/br>Fatality<\/br>pedestrian age: 47","<b>11/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>04/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>10/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>11/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>01/24/2021<\/b><\/br>Fatality<\/br>pedestrian age: 36","<b>05/07/2021<\/b><\/br>Fatality<\/br>pedestrian age: 76","<b>08/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>12/20/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 83","<b>01/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>04/29/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 7","<b>05/28/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>06/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>06/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/11/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>06/16/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>07/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/28/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>11/17/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>12/10/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 79","<b>07/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>09/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>03/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>08/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/14/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>10/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>05/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>05/26/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>07/21/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>08/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>08/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>01/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>11/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>07/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>10/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>10/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>04/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>03/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>08/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>02/20/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>08/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/23/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>08/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>12/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>09/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/19/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>02/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>10/01/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>10/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>06/11/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>11/23/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>05/04/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>10/03/2021<\/b><\/br>Fatality<\/br>pedestrian age: 70","<b>03/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>05/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>07/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>05/04/2021<\/b><\/br>NA<\/br>pedestrian age: 13","<b>12/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>11/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>09/15/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 81","<b>10/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>11/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>01/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>09/16/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>09/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>02/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>08/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 83","<b>11/23/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>09/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>04/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>08/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>02/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>06/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>09/09/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>11/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/17/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>06/23/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>08/13/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>08/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>04/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 83","<b>06/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>07/25/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>07/13/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>07/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>03/03/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>07/14/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 4","<b>09/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>09/01/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>10/13/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>02/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>06/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>01/20/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>04/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>11/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>11/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>06/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>06/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>08/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/14/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>10/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>02/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>06/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>11/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>05/10/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>05/28/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>08/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>08/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>09/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/25/2021<\/b><\/br>NA<\/br>pedestrian age: 62","<b>10/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>06/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>06/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>04/22/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>08/08/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>09/17/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>09/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>07/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>09/07/2021<\/b><\/br>NA<\/br>pedestrian age: 71","<b>12/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>09/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>09/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/06/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 73","<b>12/15/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>09/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>03/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>07/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>05/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>09/26/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 35","<b>10/05/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 67","<b>07/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>06/11/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>06/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>08/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>10/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>12/11/2021<\/b><\/br>Fatality<\/br>pedestrian age: 51","<b>10/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>08/24/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 48","<b>08/03/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>12/02/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>08/28/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>03/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>06/23/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>10/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/17/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>09/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>05/02/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>08/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/04/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>09/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>07/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>07/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/26/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>12/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>04/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>11/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>08/21/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>09/17/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>12/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>08/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>04/30/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>04/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>04/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>09/16/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>10/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 76","<b>06/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>08/04/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>07/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>09/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>11/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>08/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>05/09/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>04/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>08/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>12/07/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>06/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>02/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>02/06/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>03/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>03/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>09/10/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>06/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>08/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>07/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>01/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>03/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>04/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>06/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>11/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>10/09/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>10/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>09/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>01/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>01/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>11/21/2021<\/b><\/br>Fatality<\/br>pedestrian age: 52","<b>08/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>09/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>02/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>10/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>11/26/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 41","<b>12/03/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>06/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>04/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>01/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>06/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>05/02/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>05/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>08/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>11/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/23/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 31","<b>05/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>04/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>10/16/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>04/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>01/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>02/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>05/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>09/10/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>12/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>08/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>09/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>09/25/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>09/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>07/18/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>12/26/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>04/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>05/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>08/04/2021<\/b><\/br>NA<\/br>pedestrian age: 65","<b>10/09/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 82","<b>10/13/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>05/09/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>09/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>02/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>05/17/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>06/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>09/02/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>02/12/2021<\/b><\/br>Fatality<\/br>pedestrian age: 59","<b>01/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>11/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>07/10/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/17/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 46","<b>10/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>05/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>05/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>11/17/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>01/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>09/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>09/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/21/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>02/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>12/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>02/16/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>07/07/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>07/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>09/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>03/25/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>11/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>10/03/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>11/11/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>04/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>02/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>10/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>06/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>10/06/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>09/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>11/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/14/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>09/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>11/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>02/17/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 52","<b>08/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/31/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>09/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>09/08/2021<\/b><\/br>NA<\/br>pedestrian age: 74","<b>09/11/2021<\/b><\/br>NA<\/br>pedestrian age: 36","<b>10/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>10/23/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>11/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>10/08/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>09/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>03/02/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>02/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>10/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>02/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>09/24/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>03/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>09/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>09/03/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>09/10/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>04/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>04/17/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>09/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>08/18/2021<\/b><\/br>NA<\/br>pedestrian age: 65","<b>12/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 91","<b>01/07/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>03/26/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>01/04/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>09/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>11/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>10/30/2021<\/b><\/br>Fatality<\/br>pedestrian age: 35","<b>11/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>07/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>04/01/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>01/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>04/01/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>01/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 86","<b>06/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>09/22/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>08/19/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>08/25/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>10/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>12/03/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/20/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>06/14/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 82","<b>09/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>10/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>09/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>10/15/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>05/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>06/09/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>07/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>03/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>07/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>04/03/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>08/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>06/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>10/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>06/12/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 48","<b>08/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>10/20/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>04/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>08/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>10/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>04/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>09/10/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>11/09/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>05/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>07/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>05/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 89","<b>09/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>11/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 86","<b>04/08/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>05/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 84","<b>07/07/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>12/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>03/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>07/13/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>07/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>07/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/10/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>09/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>11/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>02/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>04/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>08/10/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>05/31/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/03/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>02/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>05/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>04/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>11/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 92","<b>12/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>06/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>11/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>02/25/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>06/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>11/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/16/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>07/24/2021<\/b><\/br>Fatality<\/br>pedestrian age: 38","<b>11/15/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>08/08/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>04/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>11/21/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>05/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>10/28/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>08/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>10/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>05/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>04/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>09/17/2021<\/b><\/br>Fatality<\/br>pedestrian age: 56","<b>12/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>08/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>05/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>01/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>10/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>05/29/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>03/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 1","<b>06/01/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>01/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>01/14/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>10/21/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 65","<b>02/10/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>07/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>08/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>03/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>10/24/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>01/15/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>04/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>06/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>10/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>05/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 0","<b>07/06/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>12/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/07/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>07/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>12/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>03/03/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>06/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>07/04/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>09/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>02/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>06/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>02/18/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 82","<b>08/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>06/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>07/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/13/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>06/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>08/01/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>09/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/21/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>10/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>12/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>09/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>12/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>02/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>10/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>04/26/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>06/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>05/17/2021<\/b><\/br>Fatality<\/br>pedestrian age: 72","<b>05/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>02/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>10/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>07/20/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>05/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>06/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>07/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>09/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>02/05/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/09/2021<\/b><\/br>Fatality<\/br>pedestrian age: 57","<b>03/25/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>06/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>12/03/2021<\/b><\/br>NA<\/br>pedestrian age: 17","<b>10/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>12/20/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>01/23/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>04/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>09/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>09/29/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>11/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>07/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>11/20/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>04/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>01/20/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>09/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>03/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>05/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/08/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 52","<b>10/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>12/08/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>05/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>12/01/2021<\/b><\/br>Fatality<\/br>pedestrian age: 90","<b>03/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>10/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/02/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 63","<b>07/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>11/08/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>04/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>06/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>11/10/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>07/13/2021<\/b><\/br>NA<\/br>pedestrian age: 60","<b>04/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>06/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/22/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>08/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>12/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>10/16/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>08/21/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>04/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>05/26/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>06/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/27/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>07/29/2021<\/b><\/br>NA<\/br>pedestrian age: 59","<b>10/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>11/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>10/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>12/20/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>11/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 89","<b>01/09/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>06/11/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>12/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 2","<b>04/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>08/04/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>08/06/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 1","<b>04/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>12/27/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>12/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>06/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>09/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>02/09/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>08/13/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>03/06/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>11/09/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>07/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>06/17/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>10/04/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>11/13/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>09/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>07/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/29/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 7","<b>05/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>01/20/2021<\/b><\/br>Fatality<\/br>pedestrian age: 49","<b>09/17/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>10/04/2021<\/b><\/br>NA<\/br>pedestrian age: 95","<b>02/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>09/14/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>05/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>02/08/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>05/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>11/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>11/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>04/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>01/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>12/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>02/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>07/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/26/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>08/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>01/09/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>03/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>11/06/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>11/21/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>03/01/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>10/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>06/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/06/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>06/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>02/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>04/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>09/14/2021<\/b><\/br>NA<\/br>pedestrian age: 11","<b>12/07/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>02/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>10/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>07/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/17/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>01/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>07/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>01/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>03/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>10/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>07/26/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>06/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>08/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>02/11/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>05/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>09/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>05/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>06/06/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>08/06/2021<\/b><\/br>NA<\/br>pedestrian age: 85","<b>09/23/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>06/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>07/08/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 71","<b>12/22/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>09/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>10/21/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>01/08/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>08/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>10/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>09/29/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>03/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>02/02/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 76","<b>05/29/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>11/16/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>03/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>10/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>12/07/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>01/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>09/02/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>09/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>09/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>01/26/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>09/22/2021<\/b><\/br>NA<\/br>pedestrian age: 21","<b>06/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>09/01/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>05/03/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>07/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/12/2021<\/b><\/br>NA<\/br>pedestrian age: 17","<b>08/24/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>10/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>11/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>07/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>06/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>11/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>10/01/2021<\/b><\/br>Fatality<\/br>pedestrian age: 84","<b>11/28/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>09/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>08/16/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>07/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>06/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>07/24/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>08/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>08/21/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>06/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>09/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>07/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>02/04/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 50","<b>05/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>02/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>09/06/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 47","<b>03/05/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>09/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/03/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>11/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>10/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>08/23/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>08/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>12/31/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>09/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>04/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>08/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>04/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>03/18/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 43","<b>10/27/2021<\/b><\/br>Fatality<\/br>pedestrian age: 72","<b>03/20/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>10/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>08/16/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>04/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>01/27/2021<\/b><\/br>NA<\/br>pedestrian age: 16","<b>05/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/11/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>06/16/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>07/10/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>06/07/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>09/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>10/25/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 52","<b>07/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>05/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>08/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>12/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>11/22/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>12/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>07/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>09/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>06/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>07/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>05/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>10/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>09/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>07/10/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>08/22/2021<\/b><\/br>Fatality<\/br>pedestrian age: 88","<b>09/25/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>09/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>06/09/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>09/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>09/29/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>05/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>05/04/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 9","<b>08/18/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>10/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>06/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>02/23/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 81","<b>02/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>08/15/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>05/26/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>06/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>01/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>03/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>11/03/2021<\/b><\/br>NA<\/br>pedestrian age: 42","<b>02/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>09/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>04/11/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>06/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>05/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>05/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>09/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>11/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>01/21/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>03/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>08/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>10/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>11/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>03/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>08/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>02/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>06/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>04/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>06/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>05/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>02/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>03/20/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>07/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>05/10/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>06/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>07/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/22/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>07/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>06/14/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>07/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>05/06/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>10/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/14/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>10/21/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>09/18/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>04/07/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>06/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>06/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/15/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>08/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/13/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>09/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>11/22/2021<\/b><\/br>NA<\/br>pedestrian age: 37","<b>10/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>09/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>04/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>02/16/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>05/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>04/03/2021<\/b><\/br>NA<\/br>pedestrian age: 81","<b>07/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>01/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>05/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>07/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>09/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/23/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>10/21/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>10/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>03/10/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>09/24/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>11/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>12/09/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 79","<b>09/24/2021<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>09/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>02/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>09/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>08/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>05/04/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>07/09/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>09/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>03/25/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>05/26/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>07/21/2021<\/b><\/br>NA<\/br>pedestrian age: 65","<b>10/28/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>04/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>01/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>06/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>01/03/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/26/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>05/06/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 35","<b>05/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>12/15/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>07/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>09/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>02/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>06/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>06/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/07/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>10/11/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>05/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>08/16/2021<\/b><\/br>NA<\/br>pedestrian age: 13","<b>08/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>02/03/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 40","<b>09/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>12/10/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>11/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>06/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>03/25/2021<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>03/06/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>12/04/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>11/20/2021<\/b><\/br>NA<\/br>pedestrian age: 73","<b>05/03/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>12/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>04/17/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>08/26/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>08/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>12/02/2021<\/b><\/br>NA<\/br>pedestrian age: 55","<b>08/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>08/13/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>08/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 86","<b>08/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>01/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>05/24/2021<\/b><\/br>NA<\/br>pedestrian age: 20","<b>06/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>05/25/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>11/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>02/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>03/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>09/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>02/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>06/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>08/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>06/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/23/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>07/24/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>11/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>04/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>09/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>09/02/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>09/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>10/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>05/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>01/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>11/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>09/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>02/26/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>10/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>09/28/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>06/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>01/30/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>10/04/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>07/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>08/20/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/25/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>12/08/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>05/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>05/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>12/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>06/18/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 89","<b>09/09/2021<\/b><\/br>NA<\/br>pedestrian age: 45","<b>09/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>01/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>10/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/06/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>10/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>10/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>06/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>06/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>10/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>03/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>04/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>05/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>07/24/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/14/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>09/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>11/02/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>11/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>08/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>08/10/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>09/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/01/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>10/23/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>08/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>09/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>07/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>07/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>09/10/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>07/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>11/17/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>12/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>09/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/18/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>11/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>10/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>01/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/31/2021<\/b><\/br>Fatality<\/br>pedestrian age: 54","<b>10/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>10/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>06/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>05/04/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>12/21/2021<\/b><\/br>Fatality<\/br>pedestrian age: 42","<b>09/15/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>01/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>04/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>07/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>04/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/26/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>07/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>08/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>10/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>11/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>10/09/2021<\/b><\/br>Fatality<\/br>pedestrian age: 66","<b>04/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>07/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>03/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>09/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>11/17/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>04/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>06/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>11/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>10/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>07/17/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>09/11/2021<\/b><\/br>Fatality<\/br>pedestrian age: 15","<b>06/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>10/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>07/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>02/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>01/07/2021<\/b><\/br>Fatality<\/br>pedestrian age: 71","<b>07/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>05/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>08/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>09/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>04/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/24/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>06/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>09/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>10/31/2021<\/b><\/br>Fatality<\/br>pedestrian age: 27","<b>06/30/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>02/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>02/14/2021<\/b><\/br>Fatality<\/br>pedestrian age: 16","<b>01/28/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>10/18/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>04/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>08/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>08/13/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>11/08/2021<\/b><\/br>NA<\/br>pedestrian age: 73","<b>03/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>05/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>05/31/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/03/2021<\/b><\/br>Fatality<\/br>pedestrian age: 61","<b>10/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/08/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 91","<b>07/02/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>07/10/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>07/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>07/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>05/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>07/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>06/18/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>06/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>04/29/2021<\/b><\/br>NA<\/br>pedestrian age: 22","<b>04/06/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>04/09/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>05/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>06/16/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>08/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>05/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>06/02/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 49","<b>09/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>06/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>06/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 1","<b>07/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>11/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>11/17/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>06/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>04/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>11/21/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>01/21/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>08/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>08/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>09/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>10/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>11/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>10/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>08/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>10/18/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>03/06/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>03/27/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>04/07/2021<\/b><\/br>Fatality<\/br>pedestrian age: 55","<b>04/09/2021<\/b><\/br>NA<\/br>pedestrian age: 43","<b>04/23/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>05/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>06/20/2021<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>02/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>04/04/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>05/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>06/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>07/27/2021<\/b><\/br>NA<\/br>pedestrian age: 32","<b>02/13/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>02/27/2021<\/b><\/br>Fatality<\/br>pedestrian age: 57","<b>05/09/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>09/20/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>09/26/2021<\/b><\/br>Fatality<\/br>pedestrian age: 35","<b>01/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>02/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>02/15/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/26/2021<\/b><\/br>NA<\/br>pedestrian age: 29","<b>09/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>09/09/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>06/16/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>10/13/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 8","<b>06/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>03/05/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 58","<b>09/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>03/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>09/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>11/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>05/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>07/30/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 49","<b>01/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>04/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>09/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/02/2021<\/b><\/br>NA<\/br>pedestrian age: 41","<b>08/10/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>08/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>11/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>07/17/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: NA","<b>09/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>07/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>07/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>07/23/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>08/17/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>07/17/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>10/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>10/20/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 41","<b>10/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>08/11/2021<\/b><\/br>NA<\/br>pedestrian age: 44","<b>10/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>12/18/2021<\/b><\/br>NA<\/br>pedestrian age: 31","<b>12/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>07/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>11/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>08/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>11/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>08/15/2021<\/b><\/br>NA<\/br>pedestrian age: 41","<b>12/31/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>09/07/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 56","<b>10/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>09/21/2021<\/b><\/br>Fatality<\/br>pedestrian age: 18","<b>12/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>07/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>08/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>01/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>04/07/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>02/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>05/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>07/14/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>01/24/2021<\/b><\/br>Fatality<\/br>pedestrian age: 56","<b>03/06/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>03/07/2021<\/b><\/br>Fatality<\/br>pedestrian age: 64","<b>09/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>03/23/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>07/01/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 55","<b>07/06/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>08/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>05/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>07/31/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>09/11/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 54","<b>06/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>03/10/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>08/06/2021<\/b><\/br>NA<\/br>pedestrian age: 24","<b>06/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>08/21/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>09/26/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/07/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>11/16/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>03/06/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 31","<b>05/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>06/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>05/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>08/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>07/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>09/10/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>09/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>09/20/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>04/25/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>10/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>05/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>07/10/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>10/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>06/11/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>01/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>09/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/09/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>06/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>07/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>09/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>11/13/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>03/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>04/21/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>05/20/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>11/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>08/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>06/18/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>08/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>09/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>10/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>04/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>11/15/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>11/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>03/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>05/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/23/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>04/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>03/15/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>03/08/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>05/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>10/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>12/09/2021<\/b><\/br>Fatality<\/br>pedestrian age: 41","<b>02/14/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>04/03/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/12/2021<\/b><\/br>NA<\/br>pedestrian age: 32","<b>03/06/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>08/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>08/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>05/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>06/06/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>08/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>05/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>02/23/2021<\/b><\/br>Fatality<\/br>pedestrian age: 27","<b>02/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>10/04/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>07/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>08/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>08/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>08/07/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>09/22/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>09/23/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 42","<b>02/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>05/18/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>05/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>06/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>07/16/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>10/28/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>10/14/2021<\/b><\/br>NA<\/br>pedestrian age: 65","<b>12/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>04/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>01/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>07/27/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>11/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>07/04/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>06/19/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>07/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>01/31/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>03/18/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>09/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>08/21/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>01/12/2021<\/b><\/br>Fatality<\/br>pedestrian age: 43","<b>06/13/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>02/04/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>04/07/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/28/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>12/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>01/20/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>04/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>06/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>07/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>11/07/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 56","<b>07/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/17/2021<\/b><\/br>Fatality<\/br>pedestrian age: 50","<b>05/06/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>08/07/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>12/06/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>05/13/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>06/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>01/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>04/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>04/26/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>07/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>07/18/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>06/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/28/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>04/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>04/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>02/09/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>07/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>04/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>08/21/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>10/18/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>06/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>04/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>05/11/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>07/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>09/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>11/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/05/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>12/16/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>12/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>04/02/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>06/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/26/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>03/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>07/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>01/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>03/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>03/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>04/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>04/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>03/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>02/02/2021<\/b><\/br>NA<\/br>pedestrian age: 54","<b>08/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>07/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/13/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>07/11/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 57","<b>11/13/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>07/24/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>03/19/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>05/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>05/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>06/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>07/30/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>08/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>09/13/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>07/24/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>08/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>09/14/2021<\/b><\/br>NA<\/br>pedestrian age: 10","<b>10/29/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>12/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>12/31/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>09/01/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>05/18/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>07/20/2021<\/b><\/br>NA<\/br>pedestrian age: 29","<b>07/02/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>10/14/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>07/09/2021<\/b><\/br>NA<\/br>pedestrian age: 24","<b>08/22/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/15/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>09/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>10/08/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>10/20/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 59","<b>12/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>12/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>10/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>12/17/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>12/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>08/05/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>10/10/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>10/09/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 53","<b>01/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>08/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>12/03/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>09/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/08/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/29/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>10/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>09/08/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>01/06/2021<\/b><\/br>Fatality<\/br>pedestrian age: 61","<b>05/09/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 2","<b>09/30/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>10/28/2021<\/b><\/br>Fatality<\/br>pedestrian age: 37","<b>12/28/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>04/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>04/29/2021<\/b><\/br>NA<\/br>pedestrian age: 44","<b>08/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>07/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>08/19/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>09/25/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>09/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>10/11/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>11/14/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>11/27/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>02/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>08/05/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>09/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>09/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>10/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>11/07/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/13/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>12/17/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 52","<b>04/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>05/31/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>06/15/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>12/16/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>03/04/2021<\/b><\/br>NA<\/br>pedestrian age: 31","<b>04/10/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>05/24/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>06/02/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>06/20/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>06/21/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 2","<b>10/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>10/10/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>12/10/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>12/20/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>03/26/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>01/15/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>10/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>10/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>11/08/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>11/11/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>04/18/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>06/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>06/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>11/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>12/02/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>10/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>07/13/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>10/25/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>11/14/2021<\/b><\/br>Fatality<\/br>pedestrian age: 57","<b>12/08/2021<\/b><\/br>NA<\/br>pedestrian age: 22","<b>04/03/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>05/07/2021<\/b><\/br>Fatality<\/br>pedestrian age: 42","<b>08/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>03/30/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>10/18/2021<\/b><\/br>Fatality<\/br>pedestrian age: 85","<b>08/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>07/03/2021<\/b><\/br>Fatality<\/br>pedestrian age: 42","<b>04/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>05/22/2021<\/b><\/br>NA<\/br>pedestrian age: 19","<b>06/15/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>07/17/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>07/30/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>08/13/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>02/01/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>09/10/2021<\/b><\/br>Fatality<\/br>pedestrian age: 20","<b>09/28/2021<\/b><\/br>Fatality<\/br>pedestrian age: 32","<b>03/08/2021<\/b><\/br>Fatality<\/br>pedestrian age: 6","<b>08/25/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>07/14/2021<\/b><\/br>Fatality<\/br>pedestrian age: 36","<b>08/06/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>08/03/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>10/16/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>06/06/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>03/05/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>01/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/28/2021<\/b><\/br>NA<\/br>pedestrian age: 57","<b>01/23/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>03/29/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>04/10/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>05/29/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>04/27/2021<\/b><\/br>NA<\/br>pedestrian age: 22","<b>01/17/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>01/21/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>08/27/2021<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/04/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/09/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>04/15/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>05/18/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>03/12/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>10/10/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>10/12/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>05/19/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>10/06/2021<\/b><\/br>Fatality<\/br>pedestrian age: 34","<b>01/20/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>08/24/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/27/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>11/22/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>02/21/2021<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>08/07/2021<\/b><\/br>Fatality<\/br>pedestrian age: 50","<b>03/25/2021<\/b><\/br>Fatality<\/br>pedestrian age: 49","<b>03/01/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>03/20/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>03/20/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>09/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/01/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>09/13/2021<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>10/12/2021<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>09/28/2021<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>02/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>03/28/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>08/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>11/13/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>05/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/17/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>02/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/09/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>09/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>11/18/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 41","<b>07/18/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>12/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>05/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>05/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/07/2022<\/b><\/br>Fatality<\/br>pedestrian age: 29","<b>04/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>10/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>04/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>04/18/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>08/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>08/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>10/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>11/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>12/01/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>12/02/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>04/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>02/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>09/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>01/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>09/11/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>11/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>05/12/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>10/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>03/04/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>03/24/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>04/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>09/17/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>01/26/2022<\/b><\/br>Fatality<\/br>pedestrian age: 62","<b>08/13/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>08/06/2022<\/b><\/br>Fatality<\/br>pedestrian age: 40","<b>08/31/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/31/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>03/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>10/26/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>02/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>04/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>04/06/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>02/07/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>06/09/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 57","<b>11/01/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>01/22/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 88","<b>09/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>08/01/2022<\/b><\/br>Fatality<\/br>pedestrian age: 79","<b>09/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>12/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>11/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>11/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>09/13/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>04/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>08/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>03/17/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>09/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>11/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>08/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>09/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>02/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>02/21/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>07/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>10/04/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>01/11/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 46","<b>05/18/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>10/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>09/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>10/11/2022<\/b><\/br>Fatality<\/br>pedestrian age: 68","<b>11/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>10/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>07/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>12/14/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>10/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>06/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>01/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>06/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>08/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>03/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>04/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/31/2022<\/b><\/br>NA<\/br>pedestrian age: 47","<b>10/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>08/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>08/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>09/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>09/21/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>07/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>07/12/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>10/31/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 84","<b>02/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/06/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 47","<b>09/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>06/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>06/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>09/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>11/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>12/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>12/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/29/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>08/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 2","<b>11/21/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>10/27/2022<\/b><\/br>Fatality<\/br>pedestrian age: 71","<b>11/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>12/14/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>10/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>06/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/02/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>10/13/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>08/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>09/15/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>10/28/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>07/12/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>12/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>09/05/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>09/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/07/2022<\/b><\/br>Fatality<\/br>pedestrian age: 30","<b>05/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>08/11/2022<\/b><\/br>NA<\/br>pedestrian age: 28","<b>09/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>10/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>12/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>01/16/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>10/28/2022<\/b><\/br>NA<\/br>pedestrian age: 17","<b>07/02/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 46","<b>12/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/02/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>09/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/10/2022<\/b><\/br>NA<\/br>pedestrian age: 63","<b>08/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>05/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>11/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>10/25/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>04/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>06/02/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>07/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>05/30/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>04/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>08/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>11/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>07/25/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>08/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>07/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>08/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/22/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>01/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>04/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 81","<b>08/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 1","<b>10/16/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>04/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/13/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>08/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>10/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>09/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>08/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>07/24/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>11/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>08/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>02/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>09/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>09/25/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>10/27/2022<\/b><\/br>Fatality<\/br>pedestrian age: 70","<b>09/11/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>11/05/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>01/28/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>05/04/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>11/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>12/02/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>11/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>12/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>10/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>07/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>04/23/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>03/26/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>08/28/2022<\/b><\/br>Fatality<\/br>pedestrian age: 23","<b>12/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>05/03/2022<\/b><\/br>NA<\/br>pedestrian age: 27","<b>09/07/2022<\/b><\/br>Fatality<\/br>pedestrian age: 23","<b>10/12/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>10/22/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 43","<b>03/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>09/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>10/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>10/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>04/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/14/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>06/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>06/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>05/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>05/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>01/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>07/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/25/2022<\/b><\/br>Fatality<\/br>pedestrian age: 65","<b>09/22/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>03/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>09/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>10/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>10/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>09/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/02/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>09/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>05/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>07/06/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>07/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>06/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>10/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>03/17/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>06/21/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>09/26/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>01/05/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>11/05/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 0","<b>12/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>09/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>11/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>11/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/26/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>12/19/2022<\/b><\/br>NA<\/br>pedestrian age: 79","<b>07/13/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>05/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>08/15/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>04/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>03/28/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>06/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>02/18/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/16/2022<\/b><\/br>NA<\/br>pedestrian age: 50","<b>10/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: NA","<b>05/15/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 69","<b>04/18/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>06/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>06/20/2022<\/b><\/br>Fatality<\/br>pedestrian age: 45","<b>09/06/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>10/10/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>09/19/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>06/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 82","<b>06/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/11/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>09/02/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>01/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>02/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>04/08/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>06/15/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>06/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>03/25/2022<\/b><\/br>NA<\/br>pedestrian age: 44","<b>08/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/16/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>08/18/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>06/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>10/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>02/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>10/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>02/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>12/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>03/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/01/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>09/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 80","<b>05/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>09/22/2022<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>07/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>08/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>09/26/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>10/17/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>12/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>12/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>01/12/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 84","<b>06/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>11/13/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>01/12/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>01/31/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>03/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>11/25/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>03/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>08/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>12/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>03/16/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>09/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>04/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>10/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>12/13/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>09/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>11/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>12/02/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>06/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>04/29/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>05/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>09/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>10/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/13/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>12/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>04/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>11/13/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>03/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>04/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>10/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>09/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>06/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 93","<b>01/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>06/29/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>09/15/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>07/30/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>11/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>06/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>07/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>08/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>05/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>09/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>08/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>12/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>03/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>10/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/14/2022<\/b><\/br>Fatality<\/br>pedestrian age: 9","<b>01/29/2022<\/b><\/br>NA<\/br>pedestrian age: 18","<b>08/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>08/11/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 8","<b>10/20/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>01/21/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>10/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>05/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>07/01/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>12/07/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>12/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>03/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>05/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>08/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>11/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>08/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>06/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>10/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>05/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>09/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>02/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>11/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/14/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>09/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>09/02/2022<\/b><\/br>NA<\/br>pedestrian age: 44","<b>10/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>12/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>04/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>09/30/2022<\/b><\/br>NA<\/br>pedestrian age: 76","<b>06/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>09/28/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>12/09/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>02/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>10/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>01/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>09/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>09/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>06/23/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>10/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>12/29/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>09/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/21/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 47","<b>11/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>05/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 3","<b>08/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>10/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>08/05/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>08/23/2022<\/b><\/br>Fatality<\/br>pedestrian age: 37","<b>10/15/2022<\/b><\/br>Fatality<\/br>pedestrian age: 23","<b>05/30/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>01/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>11/01/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>12/23/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 0","<b>12/24/2022<\/b><\/br>NA<\/br>pedestrian age: 23","<b>07/31/2022<\/b><\/br>Fatality<\/br>pedestrian age: 22","<b>07/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>08/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>08/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>10/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>11/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>06/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>11/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>08/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>02/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 88","<b>01/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>12/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/24/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>12/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>06/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/03/2022<\/b><\/br>Fatality<\/br>pedestrian age: 24","<b>12/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>05/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>03/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>12/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>10/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>04/12/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>04/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>10/31/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>05/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>09/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/16/2022<\/b><\/br>NA<\/br>pedestrian age: 65","<b>08/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>07/03/2022<\/b><\/br>NA<\/br>pedestrian age: 23","<b>01/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>01/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>03/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>05/05/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>09/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>10/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>12/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>04/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>12/31/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>07/08/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>08/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>07/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>11/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>01/11/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>09/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>04/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>01/12/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>10/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>12/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>04/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>07/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>10/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>07/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>04/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>06/13/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>08/06/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>08/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>01/11/2022<\/b><\/br>Fatality<\/br>pedestrian age: 20","<b>03/05/2022<\/b><\/br>Fatality<\/br>pedestrian age: 35","<b>05/13/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>07/13/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>09/02/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>10/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>11/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>02/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>04/14/2022<\/b><\/br>Fatality<\/br>pedestrian age: 65","<b>05/24/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>07/12/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>08/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>10/01/2022<\/b><\/br>Fatality<\/br>pedestrian age: 38","<b>10/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>11/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>12/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>10/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>09/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>09/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>08/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>10/18/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>10/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>09/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>07/12/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>07/13/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>07/03/2022<\/b><\/br>Fatality<\/br>pedestrian age: 29","<b>02/18/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>09/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>07/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>08/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>02/25/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>10/15/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 79","<b>12/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/10/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/07/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>06/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 76","<b>10/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/11/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>09/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>07/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>07/28/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>05/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>05/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>10/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>06/13/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>08/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>06/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>02/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>01/06/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>04/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>06/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>04/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/21/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>08/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>11/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>06/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>08/21/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/01/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>08/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>07/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>08/05/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>08/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>05/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>06/13/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>08/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>08/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>04/14/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>12/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>07/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>01/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>06/14/2022<\/b><\/br>NA<\/br>pedestrian age: 47","<b>05/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>07/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>09/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>05/15/2022<\/b><\/br>Fatality<\/br>pedestrian age: 24","<b>07/25/2022<\/b><\/br>Fatality<\/br>pedestrian age: 0","<b>10/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>04/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>05/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>08/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>10/31/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 85","<b>08/17/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>11/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>06/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>05/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>03/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>09/05/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>03/22/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>03/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>04/29/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 59","<b>05/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/25/2022<\/b><\/br>Fatality<\/br>pedestrian age: 2","<b>06/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/25/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>03/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>07/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>07/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/17/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 81","<b>10/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>06/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/11/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 77","<b>09/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>09/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>10/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>10/22/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>03/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>04/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>09/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>12/22/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>08/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>03/27/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>09/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>09/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>09/18/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 57","<b>06/06/2022<\/b><\/br>Fatality<\/br>pedestrian age: 61","<b>07/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>09/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>07/13/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 54","<b>07/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>10/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>08/16/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>08/23/2022<\/b><\/br>Fatality<\/br>pedestrian age: 93","<b>06/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>10/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>05/11/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 56","<b>02/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>12/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>12/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>05/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>11/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>02/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>06/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>10/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>04/30/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>11/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>07/24/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>09/09/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>10/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>10/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>12/13/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>10/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>09/02/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>06/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>02/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>08/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>08/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>05/06/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>07/01/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>01/20/2022<\/b><\/br>Fatality<\/br>pedestrian age: 70","<b>08/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/20/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>04/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>10/30/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>06/30/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/05/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>11/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>03/17/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>08/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>08/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>05/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>07/02/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>07/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>05/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>11/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>05/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>07/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>11/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>07/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>10/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>09/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/05/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>05/12/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>12/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>08/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>11/24/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>09/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>10/05/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>06/17/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>07/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>02/24/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>04/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>08/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>08/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>06/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>08/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>09/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>08/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/28/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>01/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/02/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>02/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>07/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/13/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/13/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>05/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>11/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>11/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>06/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>05/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 91","<b>06/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>12/29/2022<\/b><\/br>NA<\/br>pedestrian age: 66","<b>05/05/2022<\/b><\/br>NA<\/br>pedestrian age: 40","<b>09/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>11/14/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 65","<b>10/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>04/11/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>08/02/2022<\/b><\/br>NA<\/br>pedestrian age: 40","<b>06/17/2022<\/b><\/br>NA<\/br>pedestrian age: 46","<b>07/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>04/11/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>07/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>07/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>08/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>03/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>09/07/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>07/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>10/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>06/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>09/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>11/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>09/12/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>09/19/2022<\/b><\/br>Fatality<\/br>pedestrian age: 71","<b>08/06/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>09/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>05/11/2022<\/b><\/br>NA<\/br>pedestrian age: 59","<b>11/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>05/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>10/01/2022<\/b><\/br>Fatality<\/br>pedestrian age: 41","<b>08/28/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>11/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>02/18/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>01/08/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>01/10/2022<\/b><\/br>NA<\/br>pedestrian age: 31","<b>10/17/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>04/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>04/24/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 8","<b>09/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>08/21/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>10/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>11/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>11/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>09/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>09/19/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>11/02/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>12/21/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>02/22/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 65","<b>06/04/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>11/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>11/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>04/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>08/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>03/06/2022<\/b><\/br>Fatality<\/br>pedestrian age: 27","<b>07/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>07/16/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>04/15/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>07/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>05/24/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 49","<b>08/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>03/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>04/15/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 3","<b>08/01/2022<\/b><\/br>Fatality<\/br>pedestrian age: 77","<b>04/16/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>06/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>12/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>09/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>05/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>08/18/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>12/23/2022<\/b><\/br>NA<\/br>pedestrian age: 22","<b>06/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>09/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>06/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>09/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>11/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>12/18/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>12/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>02/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/18/2022<\/b><\/br>NA<\/br>pedestrian age: 67","<b>09/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>06/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>07/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>07/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>11/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>12/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>10/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/27/2022<\/b><\/br>Fatality<\/br>pedestrian age: 71","<b>11/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>09/15/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>05/11/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>03/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>11/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>10/31/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>12/20/2022<\/b><\/br>Fatality<\/br>pedestrian age: 73","<b>01/10/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>08/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/05/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>09/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>04/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>12/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>02/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>07/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/25/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>09/01/2022<\/b><\/br>Fatality<\/br>pedestrian age: 12","<b>09/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>06/08/2022<\/b><\/br>Fatality<\/br>pedestrian age: 52","<b>11/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>01/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/01/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>10/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>02/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>09/21/2022<\/b><\/br>Fatality<\/br>pedestrian age: 4","<b>11/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>08/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>06/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>10/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>08/12/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>10/29/2022<\/b><\/br>Fatality<\/br>pedestrian age: 30","<b>02/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>07/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>06/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>06/23/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>02/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>08/01/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>07/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>06/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>12/13/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>07/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/17/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>08/06/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>08/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>12/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>11/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>12/19/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>10/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>03/05/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>03/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>07/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>10/03/2022<\/b><\/br>NA<\/br>pedestrian age: 49","<b>07/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>08/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>01/13/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>03/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>09/22/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>04/09/2022<\/b><\/br>NA<\/br>pedestrian age: 11","<b>06/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/02/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>08/17/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>06/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>09/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>07/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 88","<b>10/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>02/04/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>09/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>08/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>07/16/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>11/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>05/17/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>06/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>06/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>03/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>08/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>11/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>08/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>07/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>10/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>08/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>10/12/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>06/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>03/02/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/29/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 43","<b>09/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>02/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>02/26/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>09/27/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>09/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>10/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>10/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>06/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>07/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>11/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>11/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>10/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/13/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>04/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>06/19/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>05/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>12/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>02/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>10/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/28/2022<\/b><\/br>Fatality<\/br>pedestrian age: 75","<b>12/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>11/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>09/19/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>06/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>05/31/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 76","<b>09/26/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>11/05/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>03/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 84","<b>05/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>05/12/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>06/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>02/12/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>02/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>09/21/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>10/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>04/22/2022<\/b><\/br>NA<\/br>pedestrian age: 3","<b>06/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>08/04/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>02/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>03/29/2022<\/b><\/br>NA<\/br>pedestrian age: 41","<b>11/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>04/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>05/19/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>06/06/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>06/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>08/11/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>07/12/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>01/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>01/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>04/24/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>09/02/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>04/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>11/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>07/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>08/12/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 68","<b>06/06/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 42","<b>04/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>05/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>06/02/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>08/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>09/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>09/18/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>09/18/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>04/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>11/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>08/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>02/02/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>03/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>04/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>06/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>09/14/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>05/05/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>02/03/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>03/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>09/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>10/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>11/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>07/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>07/10/2022<\/b><\/br>Fatality<\/br>pedestrian age: 34","<b>10/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>04/18/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>02/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>07/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/20/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>07/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>11/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>07/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>09/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>11/28/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>03/20/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>11/25/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>01/22/2022<\/b><\/br>Fatality<\/br>pedestrian age: 33","<b>04/16/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>11/28/2022<\/b><\/br>Fatality<\/br>pedestrian age: 31","<b>03/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>03/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/03/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>01/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>10/20/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>05/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>03/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>08/04/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 72","<b>02/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>02/27/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 58","<b>10/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>08/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/20/2022<\/b><\/br>Fatality<\/br>pedestrian age: 59","<b>09/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>08/17/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>09/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>07/14/2022<\/b><\/br>Fatality<\/br>pedestrian age: 65","<b>07/27/2022<\/b><\/br>Fatality<\/br>pedestrian age: 42","<b>10/02/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>05/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>11/22/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>08/11/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 7","<b>02/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>05/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>11/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>01/29/2022<\/b><\/br>Fatality<\/br>pedestrian age: 56","<b>04/17/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>01/25/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>03/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>05/14/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>05/13/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>08/30/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>10/24/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>01/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>05/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>09/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>07/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>08/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>01/20/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 81","<b>09/17/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>12/30/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 83","<b>02/21/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>07/07/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 62","<b>02/19/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>06/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>05/18/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>05/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>07/21/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 74","<b>08/23/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 88","<b>10/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>07/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>11/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>09/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>05/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>05/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>06/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/23/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>07/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/18/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 86","<b>10/24/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>10/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>03/21/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 31","<b>03/02/2022<\/b><\/br>NA<\/br>pedestrian age: 52","<b>09/27/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>05/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 75","<b>07/15/2022<\/b><\/br>NA<\/br>pedestrian age: 24","<b>08/07/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>07/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>03/12/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>04/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>05/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>09/30/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>08/22/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>11/25/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 45","<b>01/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>04/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>05/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/21/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>09/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 87","<b>09/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>04/25/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>09/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>05/09/2022<\/b><\/br>NA<\/br>pedestrian age: 53","<b>09/04/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>02/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>07/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/11/2022<\/b><\/br>Fatality<\/br>pedestrian age: 40","<b>12/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>12/26/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>12/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>02/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>06/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>01/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>07/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>11/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>01/22/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>03/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>07/27/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>05/10/2022<\/b><\/br>Fatality<\/br>pedestrian age: 41","<b>10/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 87","<b>12/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 84","<b>03/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/07/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>10/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/02/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>06/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>03/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>10/31/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>12/20/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>03/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>01/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>02/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>12/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 75","<b>08/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>11/22/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>09/05/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>12/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>09/08/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>09/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>02/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>09/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>09/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>01/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>10/15/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>07/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/25/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 88","<b>08/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>10/01/2022<\/b><\/br>Fatality<\/br>pedestrian age: 66","<b>12/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>06/16/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>08/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>09/29/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>10/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>12/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>03/15/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>09/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>01/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>04/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>11/30/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 65","<b>12/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>04/01/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>10/19/2022<\/b><\/br>Fatality<\/br>pedestrian age: 71","<b>12/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>07/17/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>03/23/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>07/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>10/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>02/01/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>03/04/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>03/28/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>08/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>09/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>11/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>08/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/14/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>08/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>02/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>10/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>04/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>08/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>06/18/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>08/25/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>06/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/15/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>06/17/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>07/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>10/03/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>01/24/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>02/12/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>08/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>11/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>06/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>09/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>12/31/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>06/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>12/25/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>09/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/18/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>11/12/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>02/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>01/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/19/2022<\/b><\/br>NA<\/br>pedestrian age: 46","<b>08/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>02/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 77","<b>06/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>06/22/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>09/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>06/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>04/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>08/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>05/13/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 66","<b>07/02/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>12/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>11/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>10/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>11/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>02/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>07/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>02/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>04/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>05/22/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>03/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>07/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>02/26/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>11/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>07/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/01/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>05/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>04/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>02/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>10/20/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>06/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>07/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>11/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>05/21/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>08/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>01/13/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>11/22/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>08/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>06/28/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/22/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>07/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>01/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>04/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>05/19/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>12/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>02/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>11/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>10/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>07/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>03/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>03/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>05/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>01/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>10/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>02/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>12/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>06/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>09/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/20/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>07/11/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>09/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>05/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>06/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>07/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>12/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 3","<b>12/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>05/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>05/18/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>11/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>03/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>09/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>05/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>04/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>06/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>06/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>05/29/2022<\/b><\/br>NA<\/br>pedestrian age: 44","<b>09/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>11/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>11/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>02/23/2022<\/b><\/br>NA<\/br>pedestrian age: 33","<b>08/02/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>12/22/2022<\/b><\/br>Fatality<\/br>pedestrian age: 69","<b>01/11/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>07/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>10/18/2022<\/b><\/br>Fatality<\/br>pedestrian age: 5","<b>04/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>12/31/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>06/06/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>07/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>08/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>05/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>09/11/2022<\/b><\/br>Fatality<\/br>pedestrian age: 59","<b>08/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>12/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>05/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>08/30/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>10/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>08/21/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>04/07/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>05/05/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>05/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>05/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>05/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>05/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>09/22/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>03/27/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>06/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>09/28/2022<\/b><\/br>Fatality<\/br>pedestrian age: 9","<b>11/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>09/27/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>11/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>04/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>06/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>06/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>08/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>10/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>09/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>09/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/15/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/30/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>12/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>08/15/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>09/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>08/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>06/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>07/19/2022<\/b><\/br>Fatality<\/br>pedestrian age: 81","<b>09/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>10/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>04/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>08/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>05/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>05/26/2022<\/b><\/br>Fatality<\/br>pedestrian age: 86","<b>01/15/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>08/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>10/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>06/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>06/26/2022<\/b><\/br>NA<\/br>pedestrian age: 45","<b>03/22/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 79","<b>04/11/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>04/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>04/29/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>05/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>05/31/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>03/16/2022<\/b><\/br>NA<\/br>pedestrian age: 20","<b>08/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>10/01/2022<\/b><\/br>Fatality<\/br>pedestrian age: 4","<b>10/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>04/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 50","<b>08/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>05/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>06/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 93","<b>07/04/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>08/01/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>10/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>03/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>11/02/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>05/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>11/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>05/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>10/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>01/26/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>07/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>09/08/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>12/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>06/17/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>06/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>07/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>11/12/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>01/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>11/23/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 58","<b>05/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>06/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>07/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>10/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/07/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>01/26/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>05/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/17/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>10/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>11/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>10/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>09/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>10/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>09/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>10/15/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>11/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>07/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>03/11/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>06/26/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>03/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>08/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 76","<b>01/15/2022<\/b><\/br>Fatality<\/br>pedestrian age: 57","<b>08/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>04/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>03/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/29/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 44","<b>09/09/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 50","<b>03/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>08/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>05/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>08/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>09/07/2022<\/b><\/br>NA<\/br>pedestrian age: 75","<b>01/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>02/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>06/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>11/25/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 65","<b>12/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>08/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>03/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>07/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>06/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 3","<b>10/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>11/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>12/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>03/24/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 81","<b>10/27/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>02/18/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 78","<b>09/04/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 64","<b>09/11/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>08/19/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>01/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>05/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>03/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/02/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>12/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>03/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>04/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>09/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>10/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>01/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>02/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>07/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/07/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>08/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>03/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>02/04/2022<\/b><\/br>Fatality<\/br>pedestrian age: 62","<b>04/30/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>11/27/2022<\/b><\/br>Fatality<\/br>pedestrian age: 69","<b>04/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>10/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/06/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>04/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>08/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>10/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>02/26/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>06/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>09/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>10/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/22/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>10/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>01/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>03/08/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 59","<b>09/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>03/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>07/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>08/24/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>11/02/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>06/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>06/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>03/22/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>06/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>08/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>08/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>10/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 87","<b>09/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>05/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>07/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>05/02/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>08/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>02/26/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 87","<b>08/11/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>09/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/25/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>02/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>07/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>10/15/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>11/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>07/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/06/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>06/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>11/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/13/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>10/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>02/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 87","<b>02/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>08/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>10/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>06/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/09/2022<\/b><\/br>NA<\/br>pedestrian age: 55","<b>07/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>06/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>11/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>09/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>12/13/2022<\/b><\/br>NA<\/br>pedestrian age: 24","<b>07/11/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>08/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/15/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>08/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/07/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>10/28/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>06/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>12/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>12/21/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>05/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>07/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>05/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>04/06/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>07/19/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>07/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>09/16/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 63","<b>12/01/2022<\/b><\/br>Fatality<\/br>pedestrian age: 58","<b>06/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>03/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>11/03/2022<\/b><\/br>NA<\/br>pedestrian age: 56","<b>06/13/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>10/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>03/17/2022<\/b><\/br>Fatality<\/br>pedestrian age: 36","<b>06/16/2022<\/b><\/br>Fatality<\/br>pedestrian age: 31","<b>08/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>05/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>10/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/01/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 80","<b>07/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>02/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>07/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>07/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>09/09/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 62","<b>10/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>11/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>07/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>08/16/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 68","<b>10/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>10/24/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/30/2022<\/b><\/br>Fatality<\/br>pedestrian age: 48","<b>12/12/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>06/14/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>11/01/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>04/24/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>09/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>10/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>12/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>03/17/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>07/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>07/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>07/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>09/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>09/01/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>10/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>10/30/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>06/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>05/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>05/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>07/12/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>09/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>11/15/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>01/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>02/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>08/01/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>06/19/2022<\/b><\/br>NA<\/br>pedestrian age: 21","<b>07/28/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>11/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>02/11/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>08/11/2022<\/b><\/br>Fatality<\/br>pedestrian age: 29","<b>09/21/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>06/13/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>07/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>09/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>05/04/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>12/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>01/01/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>01/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>09/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>12/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>03/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/07/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>05/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>07/30/2022<\/b><\/br>NA<\/br>pedestrian age: 50","<b>08/14/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>08/16/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>08/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>11/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>03/09/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>07/25/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 2","<b>07/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>11/25/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>01/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>01/12/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>01/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>03/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>05/25/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>09/11/2022<\/b><\/br>Fatality<\/br>pedestrian age: 32","<b>10/20/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>03/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>03/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>12/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>12/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>12/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>01/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>06/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>07/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>08/05/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>09/02/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>11/11/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>07/08/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>09/10/2022<\/b><\/br>Fatality<\/br>pedestrian age: 36","<b>10/01/2022<\/b><\/br>Fatality<\/br>pedestrian age: 70","<b>10/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>12/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/15/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>09/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>03/30/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>11/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>12/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>09/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>10/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>09/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>01/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>07/18/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>04/30/2022<\/b><\/br>NA<\/br>pedestrian age: 31","<b>06/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>08/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>12/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>10/01/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>02/13/2022<\/b><\/br>Fatality<\/br>pedestrian age: 41","<b>12/25/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/05/2022<\/b><\/br>Fatality<\/br>pedestrian age: 65","<b>05/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/10/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>10/24/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>06/20/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>08/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/28/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/28/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>10/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>07/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>07/15/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>07/15/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>10/29/2022<\/b><\/br>Fatality<\/br>pedestrian age: 34","<b>09/14/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>06/29/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>12/08/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>08/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>05/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>06/10/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>07/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>07/14/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>08/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>06/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>08/21/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>11/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>04/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>05/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/16/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 76","<b>03/17/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>03/23/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>06/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>07/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>01/30/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>04/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>05/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>06/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>07/16/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>07/16/2022<\/b><\/br>NA<\/br>pedestrian age: 54","<b>10/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>08/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>08/20/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>08/26/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 70","<b>05/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>06/27/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>11/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>03/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>12/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>07/06/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>01/07/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>09/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>03/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>06/11/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>12/04/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 48","<b>02/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>01/24/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>07/31/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 7","<b>08/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>01/23/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 23","<b>09/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>11/05/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>12/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>06/23/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>06/26/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>08/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>11/23/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>02/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>07/22/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>07/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>07/20/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>10/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>05/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>06/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>09/03/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>09/04/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>10/25/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>03/02/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>07/21/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>08/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>09/25/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>11/09/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>02/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>03/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>03/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>04/28/2022<\/b><\/br>NA<\/br>pedestrian age: 17","<b>05/02/2022<\/b><\/br>NA<\/br>pedestrian age: 31","<b>04/15/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>12/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>06/19/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/19/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>10/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>11/12/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>05/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>02/17/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>03/08/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>04/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>04/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>12/12/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>11/07/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>11/10/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>12/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>06/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>11/02/2022<\/b><\/br>NA<\/br>pedestrian age: 43","<b>04/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/20/2022<\/b><\/br>NA<\/br>pedestrian age: 68","<b>08/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>07/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>01/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>01/21/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>01/02/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>02/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>12/27/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/30/2022<\/b><\/br>Fatality<\/br>pedestrian age: 55","<b>03/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>12/31/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 52","<b>07/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>09/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>01/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>07/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>12/17/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 76","<b>04/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>06/17/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>07/13/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>10/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/25/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>12/15/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>07/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>09/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>02/13/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>11/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>04/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>12/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>06/16/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>08/26/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>06/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>09/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>07/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/13/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>07/20/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>07/31/2022<\/b><\/br>NA<\/br>pedestrian age: 19","<b>01/11/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>08/30/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>01/21/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>06/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>05/17/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>01/09/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>06/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>02/11/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>10/11/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: NA","<b>01/30/2022<\/b><\/br>Fatality<\/br>pedestrian age: 34","<b>11/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>09/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>03/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>12/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>01/20/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 49","<b>09/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>04/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>05/12/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>06/01/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>07/07/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>07/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>08/11/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/22/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>08/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>09/02/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>09/28/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>10/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>11/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>11/15/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>12/22/2022<\/b><\/br>Fatality<\/br>pedestrian age: 50","<b>06/14/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>10/07/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>10/20/2022<\/b><\/br>Fatality<\/br>pedestrian age: 40","<b>02/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>04/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>09/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>02/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>12/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>12/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>12/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 75","<b>05/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>07/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>08/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>09/26/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>01/30/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>07/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>08/30/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>09/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>09/29/2022<\/b><\/br>Fatality<\/br>pedestrian age: 94","<b>10/09/2022<\/b><\/br>Fatality<\/br>pedestrian age: 46","<b>05/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/30/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>10/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>01/14/2022<\/b><\/br>Fatality<\/br>pedestrian age: 74","<b>01/27/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>03/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>05/09/2022<\/b><\/br>NA<\/br>pedestrian age: 43","<b>09/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>09/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>01/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>01/31/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/11/2022<\/b><\/br>Fatality<\/br>pedestrian age: 48","<b>07/31/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>09/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>12/23/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>01/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>02/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>02/26/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/08/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>10/27/2022<\/b><\/br>Fatality<\/br>pedestrian age: 80","<b>12/19/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>01/20/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>08/29/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>09/02/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>10/23/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>11/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>10/04/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>02/05/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>02/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>03/19/2022<\/b><\/br>NA<\/br>pedestrian age: 20","<b>05/27/2022<\/b><\/br>Fatality<\/br>pedestrian age: 46","<b>07/18/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>08/06/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/23/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>10/29/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>11/09/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/13/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>02/12/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>03/08/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 3","<b>06/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>07/26/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>01/31/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 63","<b>05/31/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>08/12/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>09/23/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>10/03/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>10/10/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/22/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>11/22/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>11/28/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>06/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>07/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>07/31/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>08/11/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>10/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>04/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/10/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>08/05/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>08/16/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>07/17/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 74","<b>09/18/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>10/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>08/14/2022<\/b><\/br>NA<\/br>pedestrian age: 69","<b>09/29/2022<\/b><\/br>Fatality<\/br>pedestrian age: 55","<b>11/17/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>09/25/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>10/04/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>10/08/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>12/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>12/17/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>02/24/2022<\/b><\/br>Fatality<\/br>pedestrian age: 18","<b>07/30/2022<\/b><\/br>NA<\/br>pedestrian age: NA","<b>02/19/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>05/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>04/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>03/04/2022<\/b><\/br>Fatality<\/br>pedestrian age: 71","<b>09/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>06/21/2022<\/b><\/br>Fatality<\/br>pedestrian age: 59","<b>10/01/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>06/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>06/08/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>05/01/2022<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>06/15/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>09/19/2022<\/b><\/br>Fatality<\/br>pedestrian age: 29","<b>03/26/2022<\/b><\/br>Fatality<\/br>pedestrian age: 65","<b>05/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>09/11/2022<\/b><\/br>Fatality<\/br>pedestrian age: 45","<b>01/10/2022<\/b><\/br>Fatality<\/br>pedestrian age: 73","<b>08/19/2022<\/b><\/br>NA<\/br>pedestrian age: 32","<b>08/03/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>11/05/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>08/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>05/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>12/14/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 64","<b>04/08/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>04/15/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>12/14/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>04/21/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>05/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>02/07/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>07/23/2022<\/b><\/br>NA<\/br>pedestrian age: 33","<b>07/28/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>08/16/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>08/30/2022<\/b><\/br>No apparent injury<\/br>pedestrian age: 31","<b>10/22/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>10/24/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>10/24/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>01/18/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>07/24/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>05/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>03/25/2022<\/b><\/br>Fatality<\/br>pedestrian age: 41","<b>12/13/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>02/22/2022<\/b><\/br>Fatality<\/br>pedestrian age: 42","<b>10/06/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>07/11/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>09/20/2022<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>04/02/2022<\/b><\/br>Fatality<\/br>pedestrian age: 2","<b>02/04/2022<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>08/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>12/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>01/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 90","<b>07/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>11/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/17/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 64","<b>08/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>08/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>09/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>04/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>02/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>08/19/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>10/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>11/04/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>05/04/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 45","<b>06/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>04/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>12/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>02/13/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 80","<b>08/01/2023<\/b><\/br>Fatality<\/br>pedestrian age: 78","<b>06/23/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>08/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>12/16/2023<\/b><\/br>Fatality<\/br>pedestrian age: 49","<b>12/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>03/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>09/21/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>03/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>10/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>09/29/2023<\/b><\/br>Fatality<\/br>pedestrian age: 58","<b>11/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>07/13/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>02/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>02/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>08/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/06/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>12/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>12/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>01/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>05/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>10/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>07/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>11/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>01/28/2023<\/b><\/br>NA<\/br>pedestrian age: 21","<b>03/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>09/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>07/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>06/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>07/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>10/25/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 58","<b>12/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>09/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>10/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>11/18/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>12/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>06/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>07/29/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>10/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>10/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>08/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>10/16/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>07/10/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>08/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>08/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>05/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>05/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>07/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>08/26/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>12/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>06/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>03/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>04/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>08/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>08/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>11/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>07/22/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 31","<b>08/07/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>01/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>07/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>09/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/07/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 67","<b>12/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>08/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>02/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>04/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>01/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>09/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>01/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>10/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>08/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>03/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>08/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>08/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>09/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>10/27/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>02/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>05/20/2023<\/b><\/br>Fatality<\/br>pedestrian age: 40","<b>07/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>10/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>04/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>05/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>07/19/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>08/22/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 53","<b>10/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>02/15/2023<\/b><\/br>Fatality<\/br>pedestrian age: 66","<b>04/07/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>04/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>10/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>11/01/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 69","<b>07/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>08/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>08/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>05/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>07/21/2023<\/b><\/br>Fatality<\/br>pedestrian age: 68","<b>09/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>11/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>11/14/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 7","<b>10/26/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>12/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>09/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>10/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>09/30/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>10/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>12/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>10/19/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>11/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>12/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>12/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>12/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>12/26/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>10/30/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 35","<b>08/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>08/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/04/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>12/03/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>05/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>03/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>04/13/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>10/07/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>03/19/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>05/22/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>12/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>04/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>10/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>07/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>07/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>07/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>05/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>12/13/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>04/18/2023<\/b><\/br>Fatality<\/br>pedestrian age: 73","<b>06/21/2023<\/b><\/br>NA<\/br>pedestrian age: 40","<b>07/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>03/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>11/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 86","<b>09/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/28/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>05/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>11/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>10/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>09/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/19/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>11/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>12/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>05/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>09/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>12/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>05/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>06/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>10/18/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>06/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>06/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>04/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>08/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>03/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>04/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>05/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>11/15/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>10/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>08/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>11/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>06/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>01/10/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>05/15/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>11/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>01/14/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>05/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/10/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>01/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>08/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>11/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>04/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>01/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>07/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>07/26/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>09/13/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 32","<b>09/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>09/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>12/01/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>10/02/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 59","<b>02/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>08/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/02/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>08/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>12/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>10/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>02/12/2023<\/b><\/br>Fatality<\/br>pedestrian age: 68","<b>04/22/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>06/03/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>08/27/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>09/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>04/10/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>07/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>08/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>12/11/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>09/23/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>10/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 7","<b>09/30/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>07/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>07/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>01/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>07/04/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>07/06/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>06/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>08/11/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>08/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>10/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>09/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>02/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>02/14/2023<\/b><\/br>Fatality<\/br>pedestrian age: 21","<b>01/18/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>06/11/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>06/26/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>08/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>06/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>10/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>06/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>12/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>08/11/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>07/04/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 30","<b>07/07/2023<\/b><\/br>Fatality<\/br>pedestrian age: 57","<b>08/15/2023<\/b><\/br>NA<\/br>pedestrian age: 74","<b>04/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>05/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>03/21/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>08/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/20/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>09/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>04/14/2023<\/b><\/br>Fatality<\/br>pedestrian age: 13","<b>09/11/2023<\/b><\/br>Fatality<\/br>pedestrian age: 40","<b>10/18/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 2","<b>10/22/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>04/13/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>03/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/15/2023<\/b><\/br>NA<\/br>pedestrian age: 44","<b>06/26/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>07/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>05/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>06/03/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>05/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>03/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>04/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>08/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>06/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>05/18/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>01/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>02/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>08/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>09/09/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>09/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>04/29/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>07/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>06/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>10/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>09/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>11/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>07/19/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 6","<b>08/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>11/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>06/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/23/2023<\/b><\/br>Fatality<\/br>pedestrian age: 7","<b>07/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>06/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>11/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>08/26/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 42","<b>08/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>08/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>12/28/2023<\/b><\/br>Fatality<\/br>pedestrian age: 40","<b>05/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/25/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>04/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/06/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>10/05/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>10/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>03/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>09/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>10/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>02/04/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 74","<b>04/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>06/09/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>10/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/26/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>08/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>10/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>06/23/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>12/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>01/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>10/03/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>06/02/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 46","<b>09/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/21/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>10/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>06/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>01/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>06/16/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>06/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>06/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>09/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>10/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>05/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>07/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>09/29/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>03/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>10/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>08/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>01/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/10/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>07/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>09/23/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>02/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>11/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>04/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>06/25/2023<\/b><\/br>Fatality<\/br>pedestrian age: 36","<b>12/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>09/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>10/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>02/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>07/22/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>08/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>12/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>08/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/31/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>01/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>06/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/07/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>01/04/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>03/25/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>01/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>01/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>11/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>12/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>06/04/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>06/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/19/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>10/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>11/09/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>05/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>11/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 81","<b>09/20/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>12/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>09/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>08/13/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>08/19/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>06/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>12/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>01/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 68","<b>05/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>10/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>05/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>08/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>04/06/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>04/12/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 53","<b>07/07/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>09/16/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>04/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>04/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>06/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>09/28/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 58","<b>05/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>10/14/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>04/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>02/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>03/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>01/03/2023<\/b><\/br>Fatality<\/br>pedestrian age: 56","<b>09/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>07/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>09/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>05/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>04/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>07/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>05/26/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>05/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>08/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>08/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>09/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/12/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>02/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>05/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>06/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>06/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>08/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>08/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>09/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>07/15/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 61","<b>05/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>05/31/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>12/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>08/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>09/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>06/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>06/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>09/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>09/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>05/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/28/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>05/01/2023<\/b><\/br>NA<\/br>pedestrian age: 22","<b>01/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>01/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>02/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>08/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>11/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>12/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>11/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>10/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>08/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>04/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>11/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/18/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>10/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>03/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>05/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>07/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>09/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/16/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>12/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>11/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>02/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>04/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>04/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>04/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>05/29/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>05/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>09/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>12/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>11/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>12/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>06/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/05/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>07/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>09/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>06/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>12/26/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>12/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>04/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>11/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>07/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>11/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>12/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>09/16/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>09/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>10/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>10/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>11/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>01/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 91","<b>02/22/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>03/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>04/19/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>04/23/2023<\/b><\/br>NA<\/br>pedestrian age: 18","<b>05/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>05/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>07/20/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/26/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>07/27/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>08/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>10/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/24/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>10/26/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>11/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>11/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>12/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>02/15/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>07/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 83","<b>01/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>11/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>07/13/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 76","<b>08/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>11/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>04/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>02/01/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>06/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/10/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>04/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>08/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>09/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>10/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>04/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>10/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>10/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>05/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>06/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>09/15/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>04/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>10/31/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 56","<b>04/14/2023<\/b><\/br>Fatality<\/br>pedestrian age: 77","<b>11/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>09/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>05/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 45","<b>07/01/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>10/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>12/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>08/22/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>11/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>03/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>05/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>04/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>06/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>04/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>07/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>10/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>05/02/2023<\/b><\/br>NA<\/br>pedestrian age: 45","<b>04/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>04/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>05/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>10/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>10/23/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>11/22/2023<\/b><\/br>NA<\/br>pedestrian age: 51","<b>12/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>07/04/2023<\/b><\/br>NA<\/br>pedestrian age: 41","<b>04/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>05/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>07/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>05/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>09/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>09/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>07/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>10/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>09/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>12/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>05/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>01/01/2023<\/b><\/br>Fatality<\/br>pedestrian age: 24","<b>08/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>10/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>11/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>05/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>11/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>06/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>07/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>04/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>06/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>04/16/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 14","<b>08/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>10/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>05/03/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>06/23/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>10/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>02/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>07/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>07/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>08/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>08/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>04/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>03/27/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>05/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>11/03/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>11/22/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>12/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>12/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>01/26/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>04/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>02/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>06/23/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 43","<b>06/29/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>07/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>07/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>10/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>04/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>05/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>06/05/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>12/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>07/27/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>05/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>05/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>05/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>10/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>11/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>03/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>12/27/2023<\/b><\/br>Fatality<\/br>pedestrian age: 15","<b>12/28/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>10/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>08/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>09/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>11/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>02/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>11/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>07/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>05/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>10/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>06/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>11/14/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>12/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>09/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>10/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>04/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>11/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>12/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>05/26/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>08/07/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>06/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>11/29/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>02/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>10/19/2023<\/b><\/br>Fatality<\/br>pedestrian age: 55","<b>12/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>03/20/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>07/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>01/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>03/31/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 29","<b>08/05/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 35","<b>11/05/2023<\/b><\/br>NA<\/br>pedestrian age: 36","<b>12/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>05/29/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>06/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>02/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>06/17/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>08/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>10/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>06/20/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>07/15/2023<\/b><\/br>Fatality<\/br>pedestrian age: 48","<b>04/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>02/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>07/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>08/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/11/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 57","<b>12/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>09/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>05/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>05/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 10","<b>01/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>09/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>02/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>09/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>07/05/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>08/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/30/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>08/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>07/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>08/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>05/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>05/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>07/27/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>08/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>08/13/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>04/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>04/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>02/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>07/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>05/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>06/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>08/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>01/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>05/27/2023<\/b><\/br>NA<\/br>pedestrian age: 16","<b>01/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>07/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>04/21/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>06/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>04/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>05/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>06/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>11/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 75","<b>11/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>12/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/21/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>03/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>01/02/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 71","<b>09/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>01/04/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>01/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>10/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>01/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>03/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>06/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>12/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>09/17/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>06/12/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>09/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>09/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>10/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>12/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>07/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>07/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>05/23/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>04/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/31/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>12/09/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>09/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>08/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>03/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>07/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>09/16/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>04/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>09/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>08/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>04/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>07/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>08/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/02/2023<\/b><\/br>Fatality<\/br>pedestrian age: 50","<b>08/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>11/29/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 20","<b>12/13/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 64","<b>08/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>12/18/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>10/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>10/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>06/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/22/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>02/21/2023<\/b><\/br>NA<\/br>pedestrian age: 67","<b>08/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>05/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>07/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>12/29/2023<\/b><\/br>NA<\/br>pedestrian age: 52","<b>03/27/2023<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>09/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>07/02/2023<\/b><\/br>NA<\/br>pedestrian age: 37","<b>09/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>04/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>04/16/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 87","<b>05/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/18/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>10/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>06/30/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 8","<b>07/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>03/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>08/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>12/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>08/10/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>10/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>04/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>10/04/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>08/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/18/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 76","<b>07/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>05/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>11/06/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>11/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>12/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>11/12/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 44","<b>10/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>10/07/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 75","<b>06/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>01/14/2023<\/b><\/br>Fatality<\/br>pedestrian age: 60","<b>04/27/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>07/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>07/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>09/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 78","<b>05/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>08/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>02/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>04/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>06/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/09/2023<\/b><\/br>NA<\/br>pedestrian age: 60","<b>08/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>08/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>08/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>10/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>04/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>08/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>08/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>03/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>06/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>09/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>11/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>08/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>12/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>05/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>12/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>06/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>02/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>10/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>10/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>10/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>11/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>04/10/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>05/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>05/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>10/29/2023<\/b><\/br>Fatality<\/br>pedestrian age: 77","<b>05/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>07/12/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>10/10/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>09/21/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>12/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>09/22/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>10/14/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>09/06/2023<\/b><\/br>Fatality<\/br>pedestrian age: 52","<b>10/04/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>05/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>04/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/07/2023<\/b><\/br>Fatality<\/br>pedestrian age: 63","<b>08/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>01/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>05/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>06/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>01/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>08/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 54","<b>08/22/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 46","<b>04/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>12/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>12/24/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>04/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>04/11/2023<\/b><\/br>Fatality<\/br>pedestrian age: 58","<b>08/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>08/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>08/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>06/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>01/31/2023<\/b><\/br>NA<\/br>pedestrian age: 53","<b>06/28/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>02/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>04/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>08/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>06/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>10/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>10/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>06/18/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>08/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>06/25/2023<\/b><\/br>NA<\/br>pedestrian age: 22","<b>10/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>06/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>07/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>10/03/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>03/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>08/10/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>12/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>04/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>06/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>09/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>03/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>05/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 78","<b>10/24/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>04/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>05/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>08/17/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>11/21/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>12/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>12/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>05/20/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>08/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>04/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 42","<b>11/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>11/12/2023<\/b><\/br>NA<\/br>pedestrian age: 39","<b>03/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>05/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>09/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>08/04/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>05/28/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>05/29/2023<\/b><\/br>NA<\/br>pedestrian age: 39","<b>08/31/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>03/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>03/13/2023<\/b><\/br>Fatality<\/br>pedestrian age: 63","<b>03/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>09/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>02/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>07/09/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 22","<b>12/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/30/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>07/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>10/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>11/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>03/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>09/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/28/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>04/18/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>12/12/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>06/11/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>07/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>05/11/2023<\/b><\/br>Fatality<\/br>pedestrian age: 9","<b>07/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>10/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>05/31/2023<\/b><\/br>NA<\/br>pedestrian age: 15","<b>12/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>06/20/2023<\/b><\/br>NA<\/br>pedestrian age: 70","<b>05/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>12/31/2023<\/b><\/br>Fatality<\/br>pedestrian age: 19","<b>11/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>11/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>10/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>01/05/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>08/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>07/06/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>09/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>10/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>01/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>05/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>06/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>10/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>05/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>06/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>05/21/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>11/29/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>11/20/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>11/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>02/02/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>10/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/16/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>11/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>02/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>01/20/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 66","<b>08/16/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>09/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>03/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>04/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>08/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>03/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>11/29/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>02/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>08/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>02/04/2023<\/b><\/br>Fatality<\/br>pedestrian age: 3","<b>08/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/11/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>06/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>07/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>11/01/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>12/19/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>09/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>09/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>04/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>04/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>04/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>04/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>05/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>08/05/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 44","<b>08/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>08/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>08/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>05/31/2023<\/b><\/br>Fatality<\/br>pedestrian age: 22","<b>11/20/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>07/09/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>03/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>06/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>10/28/2023<\/b><\/br>NA<\/br>pedestrian age: 36","<b>03/05/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>04/04/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 71","<b>07/14/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>03/21/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>04/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>11/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>08/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>11/28/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>04/19/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>06/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>12/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>01/01/2023<\/b><\/br>NA<\/br>pedestrian age: 49","<b>07/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>05/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>07/20/2023<\/b><\/br>NA<\/br>pedestrian age: 78","<b>07/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/12/2023<\/b><\/br>NA<\/br>pedestrian age: 47","<b>08/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>04/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>08/19/2023<\/b><\/br>Fatality<\/br>pedestrian age: 18","<b>08/26/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 51","<b>09/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/12/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>06/21/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 86","<b>08/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>10/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>04/19/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>12/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>02/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>06/03/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>09/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>07/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>03/09/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>01/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>10/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>01/19/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>05/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>09/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>12/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>03/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>06/14/2023<\/b><\/br>NA<\/br>pedestrian age: 67","<b>01/09/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>07/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 50","<b>11/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 76","<b>04/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>04/16/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>03/09/2023<\/b><\/br>NA<\/br>pedestrian age: 21","<b>01/13/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>02/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>06/16/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>02/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>11/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 75","<b>10/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>06/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>05/28/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 70","<b>12/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>09/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>10/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>09/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>07/27/2023<\/b><\/br>Fatality<\/br>pedestrian age: 42","<b>01/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>08/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>08/22/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>11/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>03/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>10/19/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>09/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>12/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>12/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>05/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>12/17/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>02/19/2023<\/b><\/br>Fatality<\/br>pedestrian age: 3","<b>04/12/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>08/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>01/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>05/04/2023<\/b><\/br>Fatality<\/br>pedestrian age: 37","<b>05/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>08/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>02/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>12/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>07/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>03/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>12/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>06/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>07/19/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>09/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>10/13/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>07/10/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>07/19/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>01/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>06/20/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>09/17/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>08/03/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 28","<b>01/05/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>10/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/19/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>04/26/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 86","<b>02/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>07/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>10/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>10/28/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>04/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>09/05/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>07/10/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 11","<b>08/16/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>03/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>09/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>11/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>10/28/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>08/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>10/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>08/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>09/15/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>03/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>09/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>10/03/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 10","<b>07/28/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>11/02/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 11","<b>12/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>12/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>02/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 84","<b>12/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>03/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>10/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>04/12/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>06/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>07/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>05/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>03/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>07/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>09/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 91","<b>10/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>04/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>04/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 80","<b>10/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>09/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>02/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>07/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>09/22/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>12/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>01/12/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>07/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>03/14/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>07/25/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 45","<b>08/07/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>08/19/2023<\/b><\/br>NA<\/br>pedestrian age: 22","<b>03/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>10/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>08/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>10/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>04/23/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 43","<b>05/30/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 55","<b>08/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>12/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>04/26/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>04/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>03/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>01/25/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>10/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 87","<b>11/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>09/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/20/2023<\/b><\/br>Fatality<\/br>pedestrian age: 14","<b>09/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>07/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>06/14/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>05/26/2023<\/b><\/br>Fatality<\/br>pedestrian age: 49","<b>11/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>12/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/16/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>06/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 2","<b>05/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>10/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>11/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/31/2023<\/b><\/br>NA<\/br>pedestrian age: 29","<b>06/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>09/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/07/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>09/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 73","<b>10/01/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>11/23/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 65","<b>07/26/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 60","<b>08/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>09/14/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 39","<b>07/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>07/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>05/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>05/09/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>04/26/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>07/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/28/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>04/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>07/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>07/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>08/20/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>07/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>12/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>03/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 5","<b>07/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>07/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>07/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>09/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>03/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 44","<b>05/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>05/28/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 77","<b>09/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>12/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>03/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 72","<b>08/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>11/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>02/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>05/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>09/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>12/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 82","<b>06/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>06/13/2023<\/b><\/br>Fatality<\/br>pedestrian age: 67","<b>01/31/2023<\/b><\/br>NA<\/br>pedestrian age: 33","<b>08/24/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 36","<b>07/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/11/2023<\/b><\/br>NA<\/br>pedestrian age: 36","<b>01/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>05/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>05/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>08/28/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>05/16/2023<\/b><\/br>Fatality<\/br>pedestrian age: 70","<b>07/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>11/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>06/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>07/06/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 3","<b>09/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>03/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>11/21/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>06/19/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>05/12/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>12/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>06/19/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>10/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>10/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>01/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>03/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 46","<b>09/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>09/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>02/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>08/15/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>05/30/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>09/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>08/30/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>09/28/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>03/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>10/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>11/29/2023<\/b><\/br>Fatality<\/br>pedestrian age: 50","<b>02/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/11/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 48","<b>05/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>12/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>07/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>05/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>06/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>09/12/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 10","<b>06/03/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>11/11/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 27","<b>10/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>03/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>01/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 86","<b>09/22/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 5","<b>06/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>07/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>07/17/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>03/30/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 63","<b>09/04/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 70","<b>08/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>01/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>11/22/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>08/29/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>11/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>12/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>12/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>07/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>08/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>09/10/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>10/23/2023<\/b><\/br>Fatality<\/br>pedestrian age: 84","<b>12/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>09/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>02/26/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>06/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 25","<b>09/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>07/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>11/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>04/10/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>06/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>06/20/2023<\/b><\/br>NA<\/br>pedestrian age: 12","<b>06/22/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>11/09/2023<\/b><\/br>Fatality<\/br>pedestrian age: 62","<b>01/30/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 51","<b>01/01/2023<\/b><\/br>NA<\/br>pedestrian age: 32","<b>08/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>09/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>09/27/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 84","<b>12/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 53","<b>05/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>09/11/2023<\/b><\/br>Fatality<\/br>pedestrian age: 46","<b>04/25/2023<\/b><\/br>NA<\/br>pedestrian age: 38","<b>09/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>05/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>03/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>05/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>09/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 85","<b>04/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>04/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>02/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>09/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>11/16/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>02/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 89","<b>04/14/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 60","<b>06/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>10/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 49","<b>01/19/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>06/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>07/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>10/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>01/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>08/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>10/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>10/19/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>12/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>05/13/2023<\/b><\/br>NA<\/br>pedestrian age: 18","<b>06/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>09/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>08/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>11/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>12/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>08/11/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>10/19/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>08/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>06/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>07/08/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 7","<b>05/12/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>11/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 66","<b>11/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>09/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>11/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>05/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>02/07/2023<\/b><\/br>Fatality<\/br>pedestrian age: 66","<b>12/14/2023<\/b><\/br>Fatality<\/br>pedestrian age: 71","<b>01/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>08/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>08/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>10/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>02/24/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>04/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 41","<b>06/21/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>06/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>06/02/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>10/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>09/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>09/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 0","<b>11/20/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>10/08/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 39","<b>06/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>08/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>11/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>02/06/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 64","<b>10/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>08/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>02/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 83","<b>06/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>06/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>10/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>06/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>05/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>11/15/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>07/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>05/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>05/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>09/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>09/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>11/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>04/11/2023<\/b><\/br>NA<\/br>pedestrian age: 12","<b>12/29/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 15","<b>08/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>11/17/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>02/25/2023<\/b><\/br>Fatality<\/br>pedestrian age: 25","<b>07/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>10/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>08/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 38","<b>08/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 72","<b>10/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>10/02/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 16","<b>12/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 84","<b>03/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>08/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>08/22/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>06/17/2023<\/b><\/br>Fatality<\/br>pedestrian age: 73","<b>08/09/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 66","<b>08/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>07/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>06/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>09/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>10/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>07/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>08/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>07/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>08/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>05/01/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 73","<b>08/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>11/17/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>04/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>08/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 64","<b>05/29/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>10/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>12/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 40","<b>10/20/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>06/06/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>07/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>09/19/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>11/16/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 17","<b>08/10/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 6","<b>11/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>05/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/10/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 19","<b>05/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>06/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 69","<b>09/20/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 12","<b>01/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>12/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>06/16/2023<\/b><\/br>NA<\/br>pedestrian age: 72","<b>07/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/26/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 77","<b>09/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>08/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>07/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>11/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>10/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>04/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>08/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>05/12/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>06/23/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 47","<b>07/08/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 46","<b>04/12/2023<\/b><\/br>NA<\/br>pedestrian age: 76","<b>02/26/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 58","<b>06/19/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>09/22/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 93","<b>06/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>09/06/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 53","<b>06/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>06/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>07/17/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>10/21/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 48","<b>02/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/09/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>03/15/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>08/21/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>11/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>08/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>01/31/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 69","<b>08/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>11/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 79","<b>12/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>10/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>07/04/2023<\/b><\/br>Fatality<\/br>pedestrian age: 74","<b>12/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>05/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>10/23/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 75","<b>07/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>07/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>12/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 81","<b>10/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>08/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>08/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/04/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>01/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>03/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>10/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>05/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>11/16/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>05/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 90","<b>11/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>12/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 82","<b>04/12/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 68","<b>06/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>08/10/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 13","<b>07/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>11/20/2023<\/b><\/br>NA<\/br>pedestrian age: 47","<b>09/13/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 62","<b>07/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>11/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 45","<b>10/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>11/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>12/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>02/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>01/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>08/10/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>08/01/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>12/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>05/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 78","<b>09/06/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>06/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>11/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>12/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>08/04/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 59","<b>07/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>09/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>12/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 52","<b>08/01/2023<\/b><\/br>Fatality<\/br>pedestrian age: 54","<b>09/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>10/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>08/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>10/19/2023<\/b><\/br>Fatality<\/br>pedestrian age: 55","<b>08/15/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>09/23/2023<\/b><\/br>Fatality<\/br>pedestrian age: 72","<b>08/30/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>08/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 32","<b>04/26/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>08/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>12/26/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>08/15/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>03/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>03/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>03/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 76","<b>01/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>02/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>04/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>12/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>04/30/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 54","<b>07/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 17","<b>09/17/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 35","<b>07/29/2023<\/b><\/br>NA<\/br>pedestrian age: 18","<b>05/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>03/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>10/21/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>12/07/2023<\/b><\/br>NA<\/br>pedestrian age: 52","<b>12/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>04/26/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>05/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>05/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>05/18/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 68","<b>03/31/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>04/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 70","<b>06/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>06/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 73","<b>08/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>05/10/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 5","<b>05/21/2023<\/b><\/br>NA<\/br>pedestrian age: 30","<b>07/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>01/13/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 9","<b>01/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 6","<b>10/15/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 44","<b>12/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>02/10/2023<\/b><\/br>Fatality<\/br>pedestrian age: 52","<b>02/21/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>06/27/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>07/12/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>08/15/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>01/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>01/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>03/02/2023<\/b><\/br>Fatality<\/br>pedestrian age: 77","<b>10/03/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>05/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>08/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>02/05/2023<\/b><\/br>NA<\/br>pedestrian age: 32","<b>01/14/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>03/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 57","<b>02/21/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>02/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 70","<b>03/16/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>03/16/2023<\/b><\/br>NA<\/br>pedestrian age: 32","<b>03/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>08/02/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>08/02/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 26","<b>10/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>01/04/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>08/05/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>03/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>04/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>01/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>03/03/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 18","<b>03/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 61","<b>04/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>04/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>02/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>11/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>11/27/2023<\/b><\/br>Fatality<\/br>pedestrian age: 31","<b>03/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>08/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>11/27/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>08/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>10/27/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 67","<b>09/30/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>01/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 84","<b>03/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>03/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>05/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>06/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>08/17/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 25","<b>07/06/2023<\/b><\/br>NA<\/br>pedestrian age: 16","<b>09/09/2023<\/b><\/br>NA<\/br>pedestrian age: 22","<b>08/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>10/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 7","<b>08/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>09/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>09/03/2023<\/b><\/br>NA<\/br>pedestrian age: 26","<b>07/20/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>09/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>11/18/2023<\/b><\/br>NA<\/br>pedestrian age: 49","<b>02/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>08/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>10/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>10/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 76","<b>03/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>02/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>03/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>02/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>03/29/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 64","<b>07/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>07/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 5","<b>09/24/2023<\/b><\/br>NA<\/br>pedestrian age: 55","<b>10/03/2023<\/b><\/br>NA<\/br>pedestrian age: 57","<b>12/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>12/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 51","<b>10/19/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 34","<b>11/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 19","<b>12/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>10/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>07/03/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 44","<b>09/01/2023<\/b><\/br>Fatality<\/br>pedestrian age: 80","<b>09/11/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>05/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 32","<b>07/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>10/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>07/04/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 73","<b>08/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>08/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>05/26/2023<\/b><\/br>Fatality<\/br>pedestrian age: 25","<b>07/22/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>08/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>09/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>09/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 67","<b>08/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>08/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 63","<b>07/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>12/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>02/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 27","<b>09/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 36","<b>10/30/2023<\/b><\/br>NA<\/br>pedestrian age: 31","<b>12/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>12/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>12/26/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 22","<b>12/26/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>12/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 87","<b>06/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>09/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>10/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 34","<b>10/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>10/07/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>04/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>06/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>11/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>08/01/2023<\/b><\/br>NA<\/br>pedestrian age: 73","<b>10/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>01/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>10/26/2023<\/b><\/br>NA<\/br>pedestrian age: 62","<b>10/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>11/06/2023<\/b><\/br>NA<\/br>pedestrian age: 24","<b>05/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>06/18/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 21","<b>07/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 37","<b>02/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>12/16/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 51","<b>06/13/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 28","<b>12/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>12/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 49","<b>12/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 48","<b>03/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>08/26/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 5","<b>08/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>12/29/2023<\/b><\/br>Fatality<\/br>pedestrian age: 17","<b>12/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 67","<b>04/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>04/14/2023<\/b><\/br>NA<\/br>pedestrian age: 53","<b>04/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/17/2023<\/b><\/br>NA<\/br>pedestrian age: 37","<b>02/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>02/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 57","<b>03/12/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 31","<b>06/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>06/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>07/24/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 33","<b>07/26/2023<\/b><\/br>NA<\/br>pedestrian age: 38","<b>07/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>08/06/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>09/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>09/20/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>04/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>09/23/2023<\/b><\/br>NA<\/br>pedestrian age: 25","<b>04/30/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 24","<b>07/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 45","<b>04/15/2023<\/b><\/br>NA<\/br>pedestrian age: 13","<b>01/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>01/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>03/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>04/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>05/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/16/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>09/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>09/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>05/21/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 23","<b>05/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>12/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>12/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>12/24/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>12/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>12/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>12/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>02/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>10/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>11/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>01/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>01/19/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 78","<b>02/10/2023<\/b><\/br>NA<\/br>pedestrian age: 53","<b>02/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>02/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 14","<b>05/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 72","<b>11/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>06/07/2023<\/b><\/br>NA<\/br>pedestrian age: 12","<b>08/05/2023<\/b><\/br>NA<\/br>pedestrian age: 49","<b>05/21/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 54","<b>08/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 24","<b>08/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>05/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 29","<b>04/28/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>05/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>07/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>07/13/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 14","<b>07/23/2023<\/b><\/br>NA<\/br>pedestrian age: 17","<b>07/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>08/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 8","<b>08/06/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 33","<b>08/11/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 44","<b>12/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>10/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>11/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>01/27/2023<\/b><\/br>Fatality<\/br>pedestrian age: 59","<b>10/14/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>01/31/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>04/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>09/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>10/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 22","<b>10/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>07/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 21","<b>08/03/2023<\/b><\/br>NA<\/br>pedestrian age: 18","<b>08/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>06/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 18","<b>11/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 68","<b>12/08/2023<\/b><\/br>Fatality<\/br>pedestrian age: 59","<b>12/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>04/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 4","<b>04/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>07/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 30","<b>08/09/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 52","<b>12/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>12/15/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 66","<b>12/31/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>10/26/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 34","<b>01/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 24","<b>08/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>06/22/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>04/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 54","<b>09/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>10/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>05/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>08/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>10/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>05/29/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 41","<b>07/16/2023<\/b><\/br>NA<\/br>pedestrian age: 26","<b>12/05/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 75","<b>05/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>01/29/2023<\/b><\/br>NA<\/br>pedestrian age: 25","<b>05/12/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 26","<b>12/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>09/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 23","<b>03/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>03/26/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>03/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 20","<b>06/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 7","<b>04/15/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 62","<b>10/28/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 55","<b>11/06/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>11/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 77","<b>12/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>10/20/2023<\/b><\/br>NA<\/br>pedestrian age: 49","<b>12/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 32","<b>12/19/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>12/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>08/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 23","<b>09/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>10/21/2023<\/b><\/br>NA<\/br>pedestrian age: 33","<b>06/17/2023<\/b><\/br>NA<\/br>pedestrian age: 20","<b>06/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>07/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>09/07/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>09/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/08/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 16","<b>05/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 15","<b>06/29/2023<\/b><\/br>NA<\/br>pedestrian age: 80","<b>07/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>08/11/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>09/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 11","<b>10/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 27","<b>09/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>11/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 65","<b>11/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>11/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>06/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 39","<b>06/18/2023<\/b><\/br>NA<\/br>pedestrian age: 38","<b>07/24/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>08/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 50","<b>10/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>10/16/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 27","<b>11/13/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 42","<b>05/15/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 13","<b>06/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 12","<b>04/04/2023<\/b><\/br>NA<\/br>pedestrian age: 30","<b>04/08/2023<\/b><\/br>NA<\/br>pedestrian age: 31","<b>09/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 71","<b>09/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>10/21/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>01/03/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: NA","<b>01/30/2023<\/b><\/br>NA<\/br>pedestrian age: 53","<b>02/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>04/07/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 65","<b>05/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 12","<b>05/21/2023<\/b><\/br>NA<\/br>pedestrian age: 18","<b>05/22/2023<\/b><\/br>Fatality<\/br>pedestrian age: 32","<b>05/26/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 47","<b>05/30/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>07/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/08/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 60","<b>08/17/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>09/09/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 55","<b>09/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 52","<b>09/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 74","<b>09/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 25","<b>06/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>09/15/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>09/23/2023<\/b><\/br>NA<\/br>pedestrian age: 24","<b>09/28/2023<\/b><\/br>NA<\/br>pedestrian age: 32","<b>10/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>05/05/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 61","<b>05/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 13","<b>05/23/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>06/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>07/09/2023<\/b><\/br>NA<\/br>pedestrian age: 21","<b>08/31/2023<\/b><\/br>NA<\/br>pedestrian age: 52","<b>09/08/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 12","<b>09/29/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>10/11/2023<\/b><\/br>NA<\/br>pedestrian age: 24","<b>10/12/2023<\/b><\/br>Fatality<\/br>pedestrian age: 53","<b>08/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 28","<b>03/30/2023<\/b><\/br>Fatality<\/br>pedestrian age: 35","<b>05/15/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 38","<b>09/30/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: NA","<b>01/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 39","<b>07/15/2023<\/b><\/br>Fatality<\/br>pedestrian age: 27","<b>03/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 48","<b>01/29/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>02/03/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>02/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>02/02/2023<\/b><\/br>NA<\/br>pedestrian age: 48","<b>02/25/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 40","<b>09/26/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 68","<b>11/03/2023<\/b><\/br>NA<\/br>pedestrian age: 31","<b>11/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>02/11/2023<\/b><\/br>NA<\/br>pedestrian age: 21","<b>03/02/2023<\/b><\/br>NA<\/br>pedestrian age: NA","<b>10/04/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>10/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>05/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 9","<b>05/12/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 43","<b>06/23/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 36","<b>07/21/2023<\/b><\/br>NA<\/br>pedestrian age: 18","<b>07/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 4","<b>08/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 56","<b>10/03/2023<\/b><\/br>NA<\/br>pedestrian age: 23","<b>11/04/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>02/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>02/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>03/23/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 17","<b>03/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 34","<b>05/28/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 8","<b>10/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 38","<b>11/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 19","<b>04/26/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>05/29/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>08/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 18","<b>09/02/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>10/02/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 13","<b>10/20/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>10/20/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>11/14/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 36","<b>11/20/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>04/11/2023<\/b><\/br>NA<\/br>pedestrian age: 21","<b>04/11/2023<\/b><\/br>NA<\/br>pedestrian age: 17","<b>05/12/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>05/21/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 6","<b>08/21/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 59","<b>07/28/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 17","<b>08/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 64","<b>09/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>09/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 30","<b>04/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 35","<b>06/13/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 24","<b>08/10/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 37","<b>11/05/2023<\/b><\/br>NA<\/br>pedestrian age: 66","<b>07/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 41","<b>05/06/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 25","<b>07/29/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 56","<b>08/12/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 46","<b>08/27/2023<\/b><\/br>Fatality<\/br>pedestrian age: 11","<b>09/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>10/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 74","<b>11/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>04/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 62","<b>05/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 55","<b>06/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 26","<b>06/15/2023<\/b><\/br>NA<\/br>pedestrian age: 11","<b>09/14/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 21","<b>09/22/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 33","<b>09/26/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 5","<b>10/29/2023<\/b><\/br>NA<\/br>pedestrian age: 18","<b>11/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 33","<b>04/30/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 20","<b>09/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 69","<b>04/24/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 35","<b>08/06/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 31","<b>09/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>08/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 31","<b>02/20/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 58","<b>03/01/2023<\/b><\/br>Fatality<\/br>pedestrian age: 71","<b>03/27/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 56","<b>04/16/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 16","<b>06/05/2023<\/b><\/br>NA<\/br>pedestrian age: 17","<b>08/07/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>08/19/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 63","<b>11/03/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 40","<b>12/25/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 46","<b>06/26/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 11","<b>07/22/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 26","<b>05/11/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 37","<b>07/20/2023<\/b><\/br>NA<\/br>pedestrian age: 20","<b>08/18/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 15","<b>08/19/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 21","<b>09/01/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 4","<b>09/02/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 29","<b>09/25/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>10/01/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 47","<b>10/20/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 29","<b>11/14/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>07/19/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 16","<b>06/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 10","<b>08/05/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 60","<b>12/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 14","<b>06/09/2023<\/b><\/br>NA<\/br>pedestrian age: 30","<b>07/03/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 62","<b>04/23/2023<\/b><\/br>Fatality<\/br>pedestrian age: 42","<b>05/10/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 59","<b>04/30/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 19","<b>06/02/2023<\/b><\/br>Fatality<\/br>pedestrian age: 9","<b>12/18/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 22","<b>08/08/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 44","<b>05/11/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 58","<b>06/26/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 64","<b>09/11/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 53","<b>03/25/2023<\/b><\/br>Fatality<\/br>pedestrian age: 29","<b>09/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 43","<b>08/02/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 71","<b>09/15/2023<\/b><\/br>NA<\/br>pedestrian age: 29","<b>12/21/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 30","<b>09/29/2023<\/b><\/br>Fatality<\/br>pedestrian age: 30","<b>06/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 9","<b>12/03/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 28","<b>10/02/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 18","<b>07/20/2023<\/b><\/br>Suspected Serious Injury<\/br>pedestrian age: 54","<b>12/01/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 57","<b>05/09/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 61","<b>09/16/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 20","<b>01/21/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 42","<b>09/23/2023<\/b><\/br>Fatality<\/br>pedestrian age: 48","<b>04/17/2023<\/b><\/br>Possible Injury<\/br>pedestrian age: 49","<b>06/16/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 37","<b>10/21/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 38","<b>11/13/2023<\/b><\/br>Suspected Minor Injury<\/br>pedestrian age: 15","<b>07/28/2023<\/b><\/br>No apparent injury<\/br>pedestrian age: 36"],{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addLegend","args":[{"colors":["#fafa6e","#edc346","#d88d2d","#bd5721","#9b1c1c"],"labels":["No apparent injury","Possible Injury","Suspected Minor Injury","Suspected Serious Injury","Fatality"],"na_color":null,"na_label":"NA","opacity":0.5,"position":"bottomleft","type":"unknown","title":"Injury Severity","extra":null,"layerId":null,"className":"info legend","group":"Crash Points"}]},{"method":"addCircleMarkers","args":[[44.29494683239584,45.8834947265,43.51470922280277,45.462737174,46.55844473979167,44.4350945855,46.35952611516667,46.69084880866667,43.04329630300704,43.98900748135952,43.80624365888571,43.06914154928095,45.12101699264387,45.00761562397381,42.81719415866836,45.15794319808809,43.9629218223103,45.80476336572222,45.73532648302347,43.07340684390952,43.32693385006667,44.41791827699196,43.75069917158159,42.57881401621728,44.87763072038095,42.62894922339308,45.80865581416667,45.37839468774285,46.69576089513035,42.65983785564558,44.81147272405816,43.82951031282764,44.52761108715,42.66420461083334,45.25018268368571,44.8729077068578,43.58674828132143,44.2979360545,44.18970537307372,43.45517643506264,44.27881403666476,44.89734005576247,44.96826315481891,43.76815110804166,null,45.12261120936111,44.79253133874161,43.04395183642145,42.72608012751141,42.62084966269533,45.98583284130952,45.4589484493627,44.50096284985563,44.10088868134103,43.30478917698814,44.0975877161197,45.562469207,45.67564272771666,44.11863068647619,43.52106903113577,44.50303371229584,43.94315326516428,43.77607870351175,45.00215893686346,44.79969964535016,43.07106800338879,45.93779149348333,42.97032956090278,null,44.47819201110897,44.93202714626087,43.36385343996425],[-91.40309462791667,-88.2368091,-89.81357749196178,-91.09707131357143,-90.84983053777778,-91.77986896500001,-90.15398509333333,-90.91131645466666,-88.23693213463764,-89.806500955,-90.06127213494048,-91.09707951828571,-87.69063595970604,-87.26463580580953,-90.56948577075981,-89.14380061811904,-90.66723798878964,-91.90011346277778,-89.49906833451531,-89.39641365253408,-90.36895684214286,-88.95707446647754,-87.76386411456637,-87.87177058223173,-88.00615659338095,-89.02662711239762,-92.35746057833333,-92.50278598511905,-92.07790771446163,-88.55465264628508,-92.58590763019387,-91.23255242492129,-87.50066537683334,-90.17085783833333,-89.6870327478492,-90.49689918815801,-90.78983753869048,-90.87052050050001,-88.30078089880017,-88.76418169128212,-88.39774035204833,-91.92231974561122,-91.35884343932257,-89.44066606875001,null,-90.38151755566666,-88.64874342240533,-87.95361903413595,-87.85894420762395,-89.59623120984364,-89.61694085733333,-91.78642658875283,-88.03435158788341,-88.52031221571146,-87.94696386368317,-87.67683638503479,-88.67403520000001,-90.42130272116667,-89.27165254857142,-89.44407260617987,-89.54494422026062,-88.97908052373809,-88.48443913903169,-92.63626017770115,-91.48089868865222,-88.79036388450531,-91.38306816583334,-90.15325755527778,null,-89.95117668678891,-89.65871260620045,-88.21006607167544],[1.54495,0.2344,3.28885,0.7093,0.8019500000000001,0.66955,0.3112,0.8304,20.5217,1.0613,1.3433,0.80035,2.0994,1.5263,2.5638,0.97795,2.30545,0.84555,1.9106,28.41015,0.8545,2.5744,5.89205,8.39085,1.98165,8.202999999999999,0.8518,2.28545,2.2072,5.269,2.1266,6.0147,1.03115,0.84385,1.4188,1.73455,1.553,1.0418,2.6359,4.4141,9.606350000000001,2.28255,3.34035,0.78895,0.3705,0.99875,2.0443,45.93305,9.792299999999999,1.8408,1.18815,2.34215,13.5018,8.5359,4.65045,4.0586,0.46905,0.70895,1.24995,2.90965,3.5359,0.961,5.1918,4.80085,5.34185,4.2892,0.9279500000000001,1.19325,0.20985,3.69965,6.8979,6.8844],null,"Counties",{"interactive":true,"className":"","stroke":true,"color":"black","weight":1,"opacity":0.5,"fill":true,"fillColor":"black","fillOpacity":0.5},null,null,null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addPolygons","args":[[[[{"lng":[-91.61285294288713,-91.61174293768961,-91.60906593536959,-91.60488091978078,-91.60442691307816,-91.60322390945383,-91.59898590199528,-91.59868189177783,-91.59689988871582,-91.59646588499575,-91.59775888098066,-91.59722287201399,-91.59833586959945,-91.59935986219813,-91.59893385613803,-91.60056285449257,-91.59929784923099,-91.60241684760176,-91.60377684395868,-91.60382083754085,-91.60682783496009,-91.60851682927508,-91.6082928264117,-91.60489182222105,-91.60285881035114,-91.60285280566072,-91.60158679374403,-91.60095577966443,-91.59750276609005,-91.59491776081528,-91.59440675648167,-91.59431475059067,-91.5931057471044,-91.5932267534087,-91.59148575243307,-91.58907074071585,-91.58760873853004,-91.58598574723032,-91.58414174547779,-91.58363473811224,-91.58039073246702,-91.58092372583411,-91.58255872553848,-91.58160071882925,-91.57855171996248,-91.57661071695014,-91.5749877083008,-91.57338271456784,-91.57342472112235,-91.57160671961815,-91.57065571280752,-91.5661907112701,-91.56799370846105,-91.56796170251214,-91.56407869690577,-91.56144169534792,-91.56366969030292,-91.55711968469824,-91.55615267902341,-91.55476066315018,-91.55168063961052,-91.55147364722345,-91.54993964203777,-91.54567663159129,-91.54240063040005,-91.53874362094443,-91.53969561634455,-91.53918460341076,-91.53775159988253,-91.53523959793596,-91.53432659020363,-91.53676359278538,-91.53863559177599,-91.53845458436112,-91.53638257823057,-91.5375885723134,-91.5364745698179,-91.53388357199773,-91.53223857105705,-91.53223356557962,-91.52974056310968,-91.52940049984473,-91.52903559860911,-91.52900552582322,-91.52895039262904,-91.52874306040849,-91.52894903610961,-91.52903146590218,-91.52921133676784,-91.52925230955059,-91.52910399264479,-91.52910885804562,-91.52899659253316,-91.52891647101806,-91.52892445176904,-91.52896815682185,-91.52909699713248,-91.5089539100334,-91.5085139083067,-91.40761089142244,-91.40541089185668,-91.40514189211157,-91.34298790428214,-91.33715090509784,-91.29234891217344,-91.28644891302612,-91.21818102016573,-91.1656151858742,-91.16569230287988,-91.16591235740982,-91.16599640259238,-91.16552443691839,-91.16546344566669,-91.1650355362291,-91.16505157394015,-91.16488269040825,-91.16476484518037,-91.16483486540369,-91.16559907793501,-91.16561109148886,-91.165935233826,-91.16599230585631,-91.16600131117308,-91.16621947965247,-91.16620648414593,-91.16607462018811,-91.16593374339658,-91.16554577902671,-91.15356077709126,-91.15294188218951,-91.1526779450848,-91.1525071100922,-91.15249016309124,-91.15213135456939,-91.15197843534494,-91.15193050383645,-91.15604749708626,-91.15820849028029,-91.16116048866635,-91.16411148963711,-91.16642448835522,-91.16805247756183,-91.16794146622094,-91.16887446379656,-91.1718004648346,-91.17718747812309,-91.18040648009116,-91.18699647468148,-91.18736346934359,-91.18598845793487,-91.18769045203459,-91.18928645521595,-91.19178546619058,-91.19510646940176,-91.19821346434566,-91.20060146728221,-91.20130147315339,-91.19908748052362,-91.1988424855048,-91.19979549631937,-91.19940750639138,-91.2010765149701,-91.20448551856822,-91.20794752034878,-91.2082725255315,-91.20824254268821,-91.20954154721368,-91.2118545491617,-91.21447154957427,-91.2167285563053,-91.21719856082959,-91.21589557711148,-91.21651858509743,-91.22001059169634,-91.22095059581609,-91.22096060604093,-91.22188960605608,-91.22687259453087,-91.2294375854826,-91.23187758220264,-91.23440058166659,-91.24026158810733,-91.24204858815732,-91.24747158282076,-91.24910657945804,-91.25265558756648,-91.25452458708148,-91.25536558210811,-91.25665158444686,-91.25804059182839,-91.26156861611514,-91.26290562285713,-91.26453662643259,-91.26741564418242,-91.27007766996576,-91.27045868104689,-91.27482771543106,-91.27665173165076,-91.27972477029098,-91.28149778914047,-91.28419781318193,-91.28648982867166,-91.2910808553352,-91.29561188193055,-91.30475793992272,-91.30747695937289,-91.31007598885813,-91.31607904013991,-91.31636505708559,-91.31702007465465,-91.31863809796464,-91.32188513157929,-91.32501215759467,-91.32690517661729,-91.33035820511014,-91.33207422430559,-91.33240323199081,-91.33141323281346,-91.3277962180986,-91.32838522752516,-91.33230625880766,-91.33411026515009,-91.3373282872226,-91.33963831395215,-91.34007332460149,-91.33832733237408,-91.33881434236778,-91.34046236409193,-91.34092837505956,-91.34009138093163,-91.34115839590322,-91.34377341597319,-91.34467743169476,-91.34323342822161,-91.33771139141098,-91.33688739015297,-91.33811740778978,-91.3380694202319,-91.33543541215199,-91.3289893823387,-91.32803838004963,-91.32996340189918,-91.32887939675422,-91.32854739844336,-91.32732339092472,-91.32323336286626,-91.32204335714995,-91.32149235950234,-91.32257937035206,-91.4009109084577,-91.41123497933791,-91.41220098597014,-91.41629601407263,-91.42518805433772,-91.42568107839423,-91.42672008527357,-91.42987810705482,-91.43252212571269,-91.43534086810878,-91.43738016045874,-91.44053617652317,-91.45106804678076,-91.45737827599375,-91.45999785761386,-91.46351530792501,-91.46847234138114,-91.47849841917835,-91.48019543383298,-91.48024738691944,-91.4808704355999,-91.49498851721737,-91.50216353502229,-91.50712152780113,-91.52431552424679,-91.53377852814023,-91.54702853023669,-91.55307764904175,-91.55900452221357,-91.55604350569971,-91.55606750235219,-91.5614844964422,-91.56309049350834,-91.56439748754812,-91.56861348086349,-91.57115747516434,-91.57131646972937,-91.57077546366898,-91.57117345260359,-91.57078844560127,-91.56743243356409,-91.56599442087762,-91.56470641461463,-91.5607074111211,-91.55912940563634,-91.55833938845612,-91.55906037724695,-91.55827636591337,-91.55517335279264,-91.5501143389166,-91.54946332359498,-91.54989231743592,-91.54441929843358,-91.54210429947972,-91.54183329250567,-91.54021029255178,-91.54218029031786,-91.54302828840648,-91.54335827653122,-91.5408232571976,-91.54039924720016,-91.5386092344725,-91.53653423367587,-91.53645022618348,-91.53434821109326,-91.53590120226512,-91.53599619657729,-91.54081719097378,-91.539418180319,-91.54363118170563,-91.54519617532291,-91.54865316863587,-91.54757315528531,-91.5481451494658,-91.55118213693717,-91.5514121298547,-91.55260812316438,-91.55133812166585,-91.55118911388628,-91.54881410234151,-91.54973209408855,-91.55068408790773,-91.55262508038952,-91.55296707180106,-91.55388306852569,-91.55691006574315,-91.55792606321194,-91.5589060427734,-91.55893303711778,-91.55873903356758,-91.56070602124335,-91.56328601812085,-91.56566400957412,-91.56795101215607,-91.56979900796591,-91.57119301121419,-91.57255900946008,-91.57021300062519,-91.57076399750696,-91.57367500328341,-91.57392401066089,-91.57643500452987,-91.57658199600435,-91.5785920026199,-91.58244000473843,-91.58662799937966,-91.58792800512751,-91.58925400024145,-91.59079199980927,-91.58975298924109,-91.58874998435466,-91.58972498026723,-91.59128298674291,-91.59250498034592,-91.59486498234016,-91.59590697594926,-91.59566696817929,-91.59805396843998,-91.60200597467565,-91.60210297071789,-91.60572197728125,-91.60724797507172,-91.60633797103175,-91.60791796542034,-91.61108696615415,-91.61233096151767,-91.61285294288713],"lat":[44.17349742798613,44.17455743462399,44.17459944760792,44.17759447149403,44.17914547559211,44.17979248221388,44.18076850395823,44.18320050845028,44.18358851758406,44.18440752071259,44.1856475159738,44.18772452116509,44.18854051676223,44.19055651427514,44.19194751807689,44.19268651104447,44.19370851848404,44.19475650454579,44.19593249934528,44.19751250106934,44.19878048790312,44.20053448176431,44.20118948365812,44.20149050070015,44.20396051370643,44.20510651514537,44.20774652462118,44.21104953180493,44.21360455200362,44.21432056565848,44.21526256936154,44.21667557158624,44.21725557829205,44.21574957580255,44.21560258422049,44.21791259907977,44.21811860657455,44.21565361146181,44.21567262059785,44.21734162524179,44.21798964212197,44.21970764169889,44.22014163415952,44.2215486407154,44.22059765459796,44.22089266459827,44.22261267488465,44.22075068040819,44.21918567815185,44.21914668710107,44.22057069368339,44.21995571498823,44.22102470747296,44.22244170950682,44.22292272940602,44.22271174220462,44.22440873341866,44.22429276578085,44.22542777211946,44.22888878373698,44.23378080575298,44.23192980425445,44.23281281311251,44.23432183646039,44.23386485217581,44.23526787239118,44.23656486945176,44.23949187610477,44.23999488398358,44.23987989639767,44.24148590323851,44.24143689095896,44.24210288251326,44.24380488580751,44.24476789755812,44.24643689384948,44.24676489990772,44.24565391135483,44.24549491938986,44.24677692123433,44.24677893376374,44.2540649184821,44.32850452398839,44.33451349207979,44.34550843366919,44.37291028806398,44.37496527678552,44.42210202571591,44.43282696862797,44.43508895660162,44.4612328174578,44.47235775826069,44.49425764152461,44.50943962900163,44.51296463581719,44.56690973997311,44.59619779674448,44.59631375497723,44.59628375400322,44.59601483523771,44.59601483760705,44.5959678378591,44.59598590483196,44.59608091112304,44.59667895905432,44.59679996529815,44.59703699238933,44.59698797326153,44.55011003536637,44.52803306461549,44.5098640886567,44.49847310399889,44.49687510637214,44.4801961310604,44.47314014150288,44.45145317352446,44.42256421614486,44.41875522182011,44.37879528169336,44.37626228546763,44.34962732545828,44.33618434554553,44.33519134703705,44.30375439422372,44.30291839544652,44.27757143295766,44.25460146684856,44.24744647178262,44.24758444421372,44.22328243190569,44.20874542474865,44.17061940719385,44.15837440164551,44.11414238075108,44.09548637189698,44.07966636461295,44.08109137739008,44.08259638440222,44.08287539320121,44.08255540174852,44.08277840864051,44.08523341438405,44.08787141508722,44.0884064180192,44.0880764264363,44.08481544101244,44.08425445026138,44.08530946993663,44.08654647140188,44.08925646824639,44.09058547362577,44.08979347802743,44.08714748452026,44.0862914939862,44.08738150337842,44.0866175101567,44.08521551183861,44.08355450490076,44.08239250386649,44.07982050598363,44.07746750420643,44.07539350860508,44.07442651848623,44.07388352865045,44.07265052932842,44.06860852829151,44.06749253192643,44.06694453874376,44.06674654655767,44.06506855299592,44.06398055419269,44.06018454948874,44.0582715509877,44.05656456126398,44.0555495639351,44.05312856351681,44.05308456634695,44.05560158198023,44.05764059010322,44.05831759761203,44.05833960527235,44.05655862286266,44.05647062828923,44.05751464487357,44.05824964989734,44.06078365438896,44.06407065583953,44.06668565663344,44.06830665763116,44.06889665859703,44.0690716609077,44.06972566187176,44.07163266323511,44.07226766525582,44.07061966672185,44.0686216665918,44.06781166924152,44.06702967023543,44.06301967121698,44.06152767192759,44.06036667325066,44.06055167467618,44.0619586778661,44.06327868106394,44.06491568733001,44.06487768901468,44.06226068954643,44.06020569227967,44.05667569084978,44.05361868983044,44.05082268943282,44.04832868999078,44.04743169119742,44.04611569151504,44.04518269280407,44.04353069278504,44.04226869226212,44.04041269076983,44.03781268766669,44.03657568729729,44.03577568867627,44.03730769035357,44.03750069196726,44.03507269162381,44.03329169077176,44.02852868723699,44.02698968654403,44.02463468582314,44.0228316849355,44.02004168296941,44.0183046823277,44.01796668305799,44.01578068203406,44.01417368056153,44.01357067836706,44.01248167747232,44.01039067666295,44.00737567490564,44.00484867270492,44.00102666888311,43.99991266779698,43.99531865239998,43.99391464732931,43.99166663951885,43.99109163732398,43.99082363569799,43.9894636308855,43.98623061986048,43.98446161400297,43.98423062218654,43.98418562318064,43.98417862326158,43.98418662376222,43.98432362504334,43.98511462882347,43.98850164354594,43.99388966739429,43.99682868073687,43.99864768778669,43.99996369563559,44.00150269835093,44.00450428883929,44.00630270881702,44.00747227539682,44.00904271414578,44.00948171623994,44.00803171731993,44.00811399253534,44.00811651134173,44.00814671819049,44.01253772891064,44.01685772750869,44.01898170880857,44.02143463644411,44.02143459461033,44.02222753712904,44.02378777808101,44.0253164883226,44.02894450636056,44.02974250733551,44.03171048590622,44.03257847992229,44.03413947618606,44.03618846011265,44.03782945092328,44.03915045194975,44.04054445620141,44.04324245796892,44.04487846184614,44.04738048020786,44.05024949047694,44.05159649806475,44.05196351655952,44.05308552517604,44.0570815341269,44.05983653458238,44.06243854164004,44.06517455941334,44.06783358601722,44.07137859384336,44.07289159396503,44.07667462415985,44.07612663397345,44.07773463745187,44.07751164455995,44.0782956366467,44.07885763354997,44.08170163599166,44.08591665349254,44.08821265864839,44.09096067073484,44.09086068015383,44.09260868300176,44.09585569728482,44.09814769333982,44.09949669480118,44.10150967529052,44.10381368500082,44.10410466585006,44.10584166098957,44.10793664780591,44.11093165695802,44.11239465630599,44.11582664683608,44.11754064810548,44.11931364492956,44.11946965109049,44.12128965427876,44.12364666865393,44.12574666722597,44.12736366496609,44.12946065869573,44.13155365993885,44.13248165688223,44.13364364417193,44.13441464041598,44.13944364256442,44.14079464425714,44.14160664627151,44.14488064133889,44.14607363067353,44.14853162263471,44.14831661146085,44.14964660441645,44.14911459707546,44.14977759143852,44.15147960485877,44.15232560334415,44.15145958832131,44.14973158487451,44.15165357541054,44.15373157741146,44.15250056621898,44.15268254809001,44.15473753071952,44.15358152304007,44.15500751851434,44.15539351165184,44.1577675196212,44.15876752568941,44.15993952250298,44.15865651341934,44.16043750980761,44.16039249843911,44.16214349563079,44.1639904990895,44.16437848810736,44.16360446816878,44.16459046891767,44.16367145040721,44.16450344409289,44.16532044946192,44.16699944391005,44.16742942918373,44.16881042486097,44.17349742798613]}]],[[{"lng":[-88.68331508932717,-88.68309023286319,-88.67913522660908,-88.67759922591134,-88.67716722703564,-88.67563822405015,-88.67460922456223,-88.67554222787381,-88.67591923168942,-88.67423823057867,-88.67406323200842,-88.67202222952569,-88.67121023105248,-88.67226023770222,-88.67074923704311,-88.6702532381579,-88.67094224055798,-88.67127023263855,-88.66970221868243,-88.66818621325764,-88.66703920756505,-88.66680619639213,-88.66746718827982,-88.66719217838629,-88.66663317219609,-88.66470016968179,-88.66392616447692,-88.66361215605399,-88.66436314780111,-88.67060414651699,-88.67083013514589,-88.66728112373798,-88.66563512491201,-88.66452412678832,-88.66370012569554,-88.66327811858486,-88.66337111198895,-88.66228411042056,-88.66143011498167,-88.65776311557509,-88.65507810353546,-88.65333009278079,-88.6524051913181,-88.65142008690569,-88.6497560902808,-88.6478860899132,-88.64703308546331,-88.64647307271447,-88.64486306798014,-88.63750303479736,-88.63560103242209,-88.63483603585136,-88.63484505342488,-88.63405805583291,-88.62784404734488,-88.62649103697836,-88.62577003518166,-88.62395004125771,-88.62082303311,-88.61640801743599,-88.614179022831,-88.6130660376319,-88.61407705615271,-88.61592506833796,-88.61565407594705,-88.61456507928828,-88.61483408880783,-88.61381710035835,-88.61156610992865,-88.6119811196686,-88.6116071142539,-88.6127151150106,-88.61128010990252,-88.61007710745216,-88.6081001009734,-88.60694209633192,-88.60744109274263,-88.60551308522707,-88.60396807674833,-88.60144306941984,-88.59809606300584,-88.59567006153215,-88.59386305920712,-88.5933050593043,-88.59287706334703,-88.59085206359549,-88.59056106533889,-88.58975806735727,-88.58900306673955,-88.5806730471015,-88.57854303842332,-88.57623703390183,-88.5729980243685,-88.57155601842805,-88.56548800383877,-88.56206799845258,-88.56068399675925,-88.55966190646448,-88.55854299268232,-88.55671398829297,-88.55498998477732,-88.55075897960283,-88.5485919750094,-88.54724997155422,-88.54507996790767,-88.54108095969615,-88.53901395432874,-88.53627094522253,-88.53487894202678,-88.53289993827484,-88.53254893640863,-88.53353293708437,-88.53419893709327,-88.53241693331718,-88.53014992998149,-88.52667592301721,-88.52313391796014,-88.51700190575374,-88.51460390134987,-88.50951889261339,-88.5071908891853,-88.50620788862504,-88.50594889232578,-88.50647889589892,-88.50471289426875,-88.50318789374791,-88.50239089411527,-88.50078218916248,-88.50013589505325,-88.49876788495342,-88.49779848383172,-88.4969008614156,-88.49689985476302,-88.49811084688699,-88.49741983039158,-88.49535980729374,-88.4938057939306,-88.49304078327184,-88.49293377682409,-88.49269721402023,-88.49249776479307,-88.48675770943768,-88.48380469920887,-88.48158567954913,-88.48043466632657,-88.47898665641807,-88.47600464193857,-88.47451863713084,-88.47399863985396,-88.47407464833768,-88.47515466719817,-88.47469768191768,-88.4708576607656,-88.46554461842663,-88.46386460519662,-88.46224458718793,-88.4613405816535,-88.45866055881086,-88.4543635097131,-88.45377050108974,-88.453870495221,-88.45426347679887,-88.45032742088119,-88.44875340554542,-88.44308036861449,-88.44075135179476,-88.43973534098969,-88.43911233206862,-88.43880632110572,-88.43580029347461,-88.4347642870883,-88.43371426934887,-88.43406226619214,-88.43387726039971,-88.43223124585377,-88.43048822657641,-88.42787120349557,-88.42612719094365,-88.42343915552529,-88.42232413498854,-88.42304612909787,-88.42035809697828,-88.41691606195133,-88.41485104794269,-88.41107904448133,-88.40986603908806,-88.40284999652641,-88.39904796239182,-88.39897040028522,-88.39530993524686,-88.38794089677653,-88.38569990137327,-88.38431989826353,-88.38523591771219,-88.38207089605268,-88.38117689446817,-88.38018488668915,-88.37644984537152,-88.37513483420639,-88.3737068192448,-88.37326680914975,-88.37224779368684,-88.37145078449223,-88.36791875665237,-88.36585873634219,-88.35928067248948,-88.3587116635576,-88.35668064255181,-88.35481862717533,-88.35397461885725,-88.35320660821989,-88.35094858934194,-88.34960257478238,-88.34884156535929,-88.34752455100205,-88.34541853353082,-88.34237950109933,-88.34262849450326,-88.34143848056995,-88.33998847167065,-88.33876246538343,-88.33474143254509,-88.33231040649856,-88.33013838848406,-88.32833436786088,-88.32787334328346,-88.33029735003409,-88.32695432099602,-88.32600431556074,-88.32546231631969,-88.32359930769574,-88.32247930601235,-88.32053229724458,-88.321031306272,-88.32103431399685,-88.31969930594505,-88.31882529848745,-88.31866329257058,-88.31689527618418,-88.31274624168186,-88.3095212195887,-88.3057151871392,-88.30096615023139,-88.29699111688203,-88.29526509592931,-88.29238207645989,-88.28672204692555,-88.28626804681824,-88.28497503990444,-88.28333602820332,-88.27360896685369,-88.26894493482334,-88.26839093370211,-88.26567379397036,-88.26267630457784,-88.2617328927094,-88.2593438766995,-88.25645586373446,-88.254816854,-88.25013382146982,-88.2491178190774,-88.2463468134129,-88.245708810995,-88.2459378038524,-88.24657980100497,-88.24575279487428,-88.24445278874772,-88.24251878193158,-88.23994177544584,-88.23314075969729,-88.23019375417051,-88.22798875103361,-88.22377374534823,-88.22216774212534,-88.21913973493911,-88.21018357502528,-88.20919671751415,-88.20379770835302,-88.20185270578492,-88.20211670854036,-88.19974070628562,-88.19899770670744,-88.19762770588218,-88.19607970317018,-88.19247769558297,-88.19199169513703,-88.18978969029746,-88.18737868336225,-88.18616667910206,-88.18533167708729,-88.18147166959955,-88.17800866106636,-88.17553265321776,-88.17262864209717,-88.17009663530183,-88.16395962290827,-88.16310562247619,-88.16323362410488,-88.16239662367261,-88.16117562143312,-88.15878761519252,-88.15611160806073,-88.15320660202612,-88.15169159954839,-88.14935459637732,-88.14812859426421,-88.14616358979143,-88.14567658799967,-88.14641958654826,-88.14592858492891,-88.14283357753719,-88.1410015722462,-88.13380355729697,-88.13127555142164,-88.12792754466872,-88.12641954082017,-88.12613053837212,-88.12743053933683,-88.12759453854699,-88.12638253532111,-88.12342153029284,-88.12186452685351,-88.1185075217998,-88.11684625989199,-88.11534651792442,-88.10818850628716,-88.10468650010057,-88.10290849684124,-88.09649648076356,-88.09503447668291,-88.09496847520056,-88.09572847489848,-88.09917247928051,-88.10197348161593,-88.10457648127948,-88.10571048106917,-88.10567748001456,-88.10662447883468,-88.10699347640897,-88.10598147154272,-88.10544747010893,-88.10362946564575,-88.10252746031826,-88.10181444870976,-88.10021844359112,-88.09830543966565,-88.09649643653781,-88.09196242990404,-88.08488842047861,-88.0818204154623,-88.0795944108874,-88.07820440706504,-88.07645040304915,-88.07394439897953,-88.07110339387557,-88.0700013914102,-88.06988539008915,-88.07203739255765,-88.07369639456678,-88.074102393865,-88.0755663951884,-88.0759833939215,-88.07445531505347,-88.07437538930331,-88.07482838871249,-88.07753439129715,-88.0816413983934,-88.08259039955485,-88.08498540006669,-88.08741939774649,-88.08882539782083,-88.0983264038246,-88.10662240363285,-88.10906640542478,-88.11172640780707,-88.11358540831527,-88.12072341119281,-88.12194056899976,-88.12390141118011,-88.12740083826594,-88.12780841223986,-88.13364041382405,-88.13402414569208,-88.13506741357173,-88.13611041116138,-88.13559040819716,-88.13309240073073,-88.13183439572872,-88.12946139032002,-88.12443438206783,-88.12075337662063,-88.11882337300291,-88.11602436851545,-88.10950636070311,-88.10833135926119,-88.10750635736909,-88.10535535187022,-88.10551835049786,-88.10635134984155,-88.10571934768376,-88.10387834282774,-88.10385634108873,-88.10324733896829,-88.10172133635645,-88.09961633377081,-88.09404732268671,-88.08859031603571,-88.08721199754345,-88.08260331060825,-88.08225584469163,-88.07976430737708,-88.07836130518598,-88.07637530030568,-88.07209129459493,-88.07055529272829,-88.06271928561857,-88.05825628407193,-88.05930105278627,-88.15165411025021,-88.17818113186462,-88.19884314486936,-88.21569015358249,-88.22360816041949,-88.24002117030636,-88.3652531620062,-88.38730915245641,-88.42530214875184,-88.46222014173065,-88.57199123937077,-88.57413623960208,-88.58282025330553,-88.6758213962587,-88.67580440566391,-88.67564209310063,-88.67557049345756,-88.67559022981604,-88.67548729364168,-88.67548629397159,-88.67445307166612,-88.67460708516089,-88.68420310592012,-88.68331508932717],"lat":[46.01413850528979,46.01413722377127,46.01353820530412,46.01254019734588,46.01167619451008,46.0116821875714,46.01056718173815,46.00990718530547,46.00854618562611,46.00757217692388,46.00678317529746,46.006089165192,46.00468315995207,46.00264516262654,46.00158115448615,46.00063115115736,45.99995715344939,45.99902614994327,45.99785613636145,45.99760012797063,45.99723412070585,45.99607311341637,45.99504811096806,45.99403510427904,45.99348609878107,45.99363709074138,45.99324208509883,45.99239707917413,45.9913370769593,45.98983009721599,45.98854709131144,45.98808707282301,45.98857506800479,45.98902206536773,45.98908406197194,45.98840505645942,45.98766905297136,45.98773704843519,45.98841904819267,45.98928703619085,45.98856902030377,45.98778500834398,45.9876789550426,45.98756599860685,45.98829699487372,45.98866698833094,45.98837098296551,45.98710997400216,45.98694896594237,45.98495992291939,45.98511891520511,45.98565891446263,45.98756492396148,45.98799892256705,45.98843989670239,45.98761088656552,45.98757388313879,45.98863288005775,45.98843386498208,45.98769984157602,45.98877483659921,45.9906268402707,45.99241685329174,45.99333486606698,45.99422086901754,45.99482286686431,45.99579787270052,45.99727587497545,45.99880987175096,46.00112088109222,46.00366888354981,46.00446188996474,46.00569288537747,46.0057278799022,46.00714387318802,46.008453870093,46.01099087665288,46.01309287146642,46.01618086978015,46.01759886089369,46.01762284592468,46.01579683175855,46.01513182241443,46.01444681865026,46.01158981149979,46.00911279772826,46.00774179386486,46.00560178621456,46.00507678176274,46.00697474708743,46.00975674278103,46.00976273227629,46.01179872161272,46.0138107191521,46.01570769567984,46.01492667862065,46.01427667098921,46.01426138991398,46.01424466124917,46.01483765427624,46.01497664680267,46.01289562307546,46.01317961389788,46.01379560921728,46.01340459851126,46.01376258124621,46.01479057430949,46.01768756880158,46.01810356355143,46.0180965546682,46.01902055531954,46.01993156190341,46.02088556715651,46.02121156000546,46.02048954816215,46.02082153349537,46.01951751446233,46.0200294883818,46.01992547741435,46.01916845273173,46.01829944002201,46.01713343251787,46.01338442137229,46.01111341773528,46.00948440534734,46.00724339236165,46.00547138392848,46.00189369109081,46.00045635991706,46.00039235984809,45.99967531023002,45.99901135661887,45.99828035420747,45.99635934712502,45.99514834354914,45.99438934233704,45.99426134289461,45.99374334168171,45.99311833970533,45.99259639518007,45.99215633684022,45.99094833664611,45.99240434324192,45.9921323438021,45.99163834297408,45.99179634441421,45.99282534958383,45.99363135306288,45.99443835592059,45.99537435880532,45.99659736197538,45.9987693690701,46.00100337777521,46.00068438005786,46.00032838013386,45.99935237827768,45.99956337945476,45.99939038051598,45.99751737746207,45.99701837633193,45.99616837373325,45.99342536529399,45.99018035819208,45.98976935801831,45.99068436443604,45.99084936644012,45.99045536596948,45.9899023647876,45.98874036164852,45.9881243619045,45.98833936321514,45.98700536013514,45.98620435762194,45.98560035603415,45.9853183563772,45.98447435521265,45.98401235575569,45.98410135723194,45.98192935312146,45.98016934907447,45.97854634406512,45.97676334117871,45.97532233987192,45.97548234188969,45.97913835455519,45.9796873569156,45.98119336601498,45.9802773664032,45.9802797111569,45.98039036942738,45.98316638176552,45.98683439248428,45.98811239659487,45.99023840125945,45.99073040455632,45.9916644074353,45.99165340805179,45.98945740515906,45.98927340558954,45.98855540481707,45.98733340218288,45.98593039952299,45.98535539870243,45.98516540070785,45.98427940006552,45.98150739832407,45.9805853966229,45.97941539544115,45.97910139610481,45.97868339578637,45.97767439408605,45.97721339475104,45.97624439361034,45.9754403924054,45.97444239121049,45.97398439183624,45.97173038930392,45.96990738514344,45.96871838352997,45.96903038538546,45.96957438755033,45.96862638880044,45.96658838650927,45.96595038698681,45.9640533845697,45.95893337438332,45.9566243674207,45.95507036724358,45.95529936858347,45.95637237127686,45.95734937495311,45.95882137894333,45.95996238296909,45.96137338537476,45.96331238928148,45.9636253910516,45.96327439109531,45.96204738878136,45.96096838816737,45.95937838867833,45.95936839151062,45.9575483914103,45.95616739309082,45.9541713930247,45.95125238928022,45.95111439175102,45.95374140173571,45.95472840389535,45.95532840613433,45.95509040721765,45.95661841867471,45.95641242255563,45.9574854248086,45.95824367639848,45.95908016296948,45.95934343372966,45.95949343607757,45.96273844364193,45.96353744627579,45.96357145032541,45.96366245162521,45.96338845451498,45.9627344543095,45.95872544811577,45.95659644418489,45.95414644158279,45.95214144024711,45.95036244006641,45.94936144186083,45.94740444769057,45.94725045122782,45.94768745464175,45.94871146139691,45.94851246316141,45.94750246564781,45.94765200152181,45.94766847851581,45.94794048572484,45.94847648886513,45.94983549022929,45.95103549470986,45.95209049694368,45.95308149987055,45.95313350185938,45.95247550554897,45.95273950647118,45.9522075085829,45.95060150970755,45.94930350971515,45.94897851039202,45.94860851485215,45.94711051755392,45.94489651824699,45.94101451772153,45.93946951935357,45.93833952622964,45.93904252809391,45.93998152891034,45.94067053072786,45.9406005322523,45.93920153394152,45.93751353575382,45.93682553891517,45.93692554102589,45.93753654472506,45.93754554635733,45.93679354823703,45.93612254824096,45.93419354539606,45.93364554552902,45.93215954828804,45.93060754931563,45.92861755732129,45.92743055973684,45.92659856362476,45.92560756485634,45.92412256398431,45.92321356138748,45.92241356046652,45.92149856138102,45.92140856547194,45.92074956711352,45.92113957216942,45.92170243777048,45.92221057748156,45.92241858768704,45.92212059237615,45.9218685946868,45.91727260046366,45.9158386015548,45.91466860083559,45.91336359882616,45.91236159311581,45.91054958771543,45.90684658114458,45.90520457822917,45.90438657766396,45.90221257460384,45.8997735721991,45.89709057171741,45.89659257216281,45.89522557394305,45.8922215734361,45.88350356817318,45.88120456907085,45.88026657149284,45.87986057413869,45.87985558149229,45.88066759349357,45.88020059816584,45.87900560103752,45.87736660230095,45.87601260435734,45.87559260822701,45.87464361235654,45.87380961370189,45.87271661327512,45.87214960937646,45.87181860642448,45.87062960504991,45.86993460219067,45.86822360047025,45.86614625678559,45.86603760188823,45.86490460045056,45.86382459519635,45.86508658898251,45.86494358727978,45.86244258159785,45.85745857415609,45.85585957065005,45.85014154997614,45.84107152838207,45.83999752310037,45.8391955176081,45.83772851303859,45.83299449597602,45.83183938011418,45.82997848749899,45.82746519752747,45.82717247772217,45.82312746304579,45.82274184767331,45.8216934590163,45.81902845458866,45.81730645403612,45.81394645589744,45.81131145603185,45.80928745895452,45.8073254672827,45.80630247378867,45.80516347672177,45.80407848147207,45.8035834942221,45.80346449650133,45.80266749755985,45.80010349998745,45.79883849870655,45.79757249605039,45.79636549643804,45.79399049845864,45.79258049745827,45.79136049782038,45.79051650037848,45.79018550452881,45.78565751302004,45.78469652389726,45.78482752113781,45.78526553691891,45.7852268623538,45.78494954271989,45.78424854525783,45.78160554787808,45.78026055623042,45.77993655932972,45.78057157643125,45.78071930626401,45.71306453376383,45.71657032299788,45.71809326306299,45.71864521576731,45.71881017692011,45.71925015904146,45.71956912137136,45.72214783116126,45.72189877934451,45.7224246907391,45.72262760438282,45.7227186637511,45.72255966827844,45.72260868608821,45.72289887652668,45.72336387537032,45.76600689825187,45.80944613520836,45.88930957115722,45.89625460871466,45.89629060890772,45.98086806586287,45.98229807433186,45.98244911776955,46.01413850528979]}]],[[{"lng":[-90.31240310601426,-90.30230207281484,-90.29664705469783,-90.2883780273194,-90.25012590277949,-90.24591888637003,-90.231236825333,-90.22655880588466,-90.21680076531942,-90.21599976198883,-90.19210866479145,-90.19200866438166,-90.17644759897327,-90.16281654360509,-90.12174737592059,-90.11869136343506,-90.0970272749327,-90.09211525486569,-90.08733923535605,-90.08585922930835,-90.07239017428603,-90.0310680052939,-89.95481292439111,-89.93507694442349,-89.93258794666127,-89.90936197007402,-89.90560297385757,-89.89779298172002,-89.89239998714451,-89.88862799035644,-89.88777799135984,-89.83787204163721,-89.83177904737045,-89.81134706794319,-89.7996610795298,-89.79060508854683,-89.78988908924812,-89.78831209073414,-89.78580709322634,-89.78293309971197,-89.7794371096134,-89.77604411622116,-89.77581111722984,-89.77611311874448,-89.7823501199962,-89.78116112282271,-89.7749431321955,-89.77336713527482,-89.77301113746829,-89.77476314112958,-89.77536214322149,-89.77445214596838,-89.76971615268081,-89.76829615779916,-89.76325616551945,-89.76116416727146,-89.75888216850427,-89.75618716748652,-89.75359316934721,-89.75270017016594,-89.74851517707914,-89.74030918552957,-89.73879318640994,-89.72986818979642,-89.72276619159916,-89.72106819259598,-89.71841319505356,-89.7175911966043,-89.71790919905477,-89.72003320200997,-89.72347420478921,-89.73295720896671,-89.7344452109663,-89.73468021239951,-89.73402921587895,-89.7322362199024,-89.73054522213019,-89.72778622422973,-89.71898422870775,-89.71550623028372,-89.7072142345464,-89.70292923595763,-89.69886323813211,-89.69413323996226,-89.68810124157689,-89.67766324294159,-89.67323724383209,-89.66573624675679,-89.66234424853107,-89.65952725060684,-89.6593732507316,-89.65637225313961,-89.65211725551049,-89.64220726039818,-89.63876426177509,-89.6334002633667,-89.62513926535367,-89.61771726694829,-89.61234326915236,-89.6102802702836,-89.60580627316774,-89.59935427879809,-89.59999630485527,-89.60027231310018,-89.60039631686604,-89.60039432003838,-89.60036232560921,-89.60036632583763,-89.60092339687665,-89.60086640944292,-89.60080344118252,-89.60097244309715,-89.60072845989492,-89.60282846194043,-89.61220146800761,-89.62057147216706,-89.6212224724411,-89.62697747462106,-89.64123347826597,-89.64877148002115,-89.65422648083549,-89.65575348108138,-89.66234148045953,-89.6683274783652,-89.67034047792507,-89.67761147821297,-89.67926747934131,-89.68120348182703,-89.68504948556638,-89.69036949208613,-89.69639150032718,-89.70383051446014,-89.70695251788065,-89.71635652412392,-89.71970852681955,-89.72363053321236,-89.72470153660905,-89.72516154268044,-89.7268875483323,-89.72695055053542,-89.72130055861324,-89.72046155958782,-89.71688356415888,-89.71325257319045,-89.71343657451979,-89.71428757764308,-89.71762858474621,-89.71973558754662,-89.72271659167301,-89.72666059423209,-89.72459859551114,-89.72399659588389,-89.72507460013529,-89.72785160192501,-89.72944960410278,-89.73024160782759,-89.73173660993237,-89.73316761102514,-89.73507361101039,-89.7364206134819,-89.74030361613798,-89.74310462199877,-89.74842162264417,-89.74895361814178,-89.75220862564055,-89.7521486346852,-89.75444564542413,-89.75872265481843,-89.76222065932564,-89.77068066076507,-89.77423867032203,-89.78279567623078,-89.7914816798278,-89.79705568058628,-89.80211868295331,-89.80541168632281,-89.8061056876782,-89.80982469637821,-89.81295870757488,-89.81465071911822,-89.8178707341764,-89.82110274105396,-89.82401774828466,-89.82864376245442,-89.83343577451487,-89.83695478608036,-89.83813378800203,-89.83829278833016,-89.8419717965923,-89.85129280414203,-89.85446480492517,-89.85888780826407,-89.85960680774903,-89.86023580788202,-89.86613680764428,-89.86793080649876,-89.87004880299436,-89.87641980023241,-89.88234780041896,-89.89017380343793,-89.89372280401996,-89.90392380262399,-89.9052748021122,-89.91233079820844,-89.91601679571102,-89.92177179271363,-89.92854278801177,-89.93161178623501,-89.93749678354267,-89.94049178200825,-89.94984277701995,-89.95245977606477,-89.95601577495884,-89.95969477354512,-89.96623777075851,-89.96788777011965,-89.97006876909862,-89.97719876617289,-89.9827097641959,-89.98990976165123,-89.99476975982635,-90.00012175778265,-90.00752676515411,-90.01884177525739,-90.02492278059972,-90.02721178193747,-90.02926478190324,-90.03105978273294,-90.03500378506682,-90.0355407853942,-90.04253579058508,-90.04861179485904,-90.04984279472485,-90.04906379162533,-90.04893678988705,-90.05255978937619,-90.05278178784569,-90.05182978482443,-90.05342778424796,-90.05865878770221,-90.06104278996756,-90.06213979126309,-90.06677479865206,-90.0696238029082,-90.07194280581533,-90.07541681086512,-90.08026681995533,-90.08238582332486,-90.08793782991873,-90.09138283287305,-90.09819983777292,-90.10467884421726,-90.11327485231654,-90.11679085648493,-90.12275086314101,-90.12801987091837,-90.13506588024914,-90.14278988843661,-90.14919489560587,-90.15898190562342,-90.16077390705622,-90.16579690952055,-90.17298191051663,-90.17861691133908,-90.18326991449378,-90.18571491990589,-90.18731992601519,-90.19381293669696,-90.19257593888207,-90.192512955876,-90.19254595677955,-90.19252098004779,-90.19252798521035,-90.19242005308796,-90.19246507597488,-90.19182107735755,-90.19233008124155,-90.1919790878231,-90.19182908974942,-90.19174409249656,-90.1916010949454,-90.1920191017181,-90.19145910603366,-90.19166010906561,-90.19178611139485,-90.1919371159758,-90.19187911938445,-90.19179813410115,-90.19178713873625,-90.19178014150786,-90.19201411380692,-90.1921950766184,-90.19219107563526,-90.19228007382627,-90.19221006659104,-90.19207205877962,-90.19217503972735,-90.19216900721486,-90.19204997461337,-90.19196296272501,-90.19696698332814,-90.20141400155033,-90.20687502421222,-90.20857003129412,-90.21685306489324,-90.22013707829495,-90.23086512211243,-90.23158412576412,-90.23734314900842,-90.25012620210106,-90.25113520551893,-90.25211220833964,-90.2561422227179,-90.27151927635093,-90.3008813774414,-90.31106841237828,-90.31099636692011,-90.3111933567406,-90.3114383091584,-90.31154028762545,-90.31164426059823,-90.31192120867856,-90.31243414248269,-90.31240310601426],"lat":[43.64099001987976,43.64116101959196,43.64112501979893,43.64132401936904,43.64165801895814,43.64144801543608,43.64170199952165,43.64178299444921,43.64195098386916,43.64196498299986,43.641758959091,43.64175895898814,43.64223494142561,43.6420919278678,43.64191288620543,43.64190188309813,43.64182186107915,43.64180385608667,43.64178585123425,43.64178084972867,43.64173083604264,43.64163179387745,43.64124176344878,43.6411207639291,43.64120476366131,43.64110776406945,43.64109276413235,43.6410597642682,43.64103776435884,43.64125676366989,43.6411937638754,43.64093076488926,43.64109676439724,43.640970764858,43.6409937648294,43.64098976487354,43.64099676485505,43.64104976470176,43.64105076470795,43.63866577184216,43.63429978484614,43.63194079182247,43.63139379344451,43.63016679709686,43.62564681071151,43.62444381426618,43.62159782252528,43.62034982616932,43.61901683010891,43.61551984056862,43.61376284581852,43.61233085002149,43.61002285658322,43.60706386524328,43.60389087424879,43.60360787492574,43.60381087415877,43.60599586755441,43.60591386761303,43.60574186805333,43.60213787725917,43.59823288237251,43.59806688169478,43.59861487330074,43.59985786433219,43.59966086360346,43.59854586475802,43.59748986713469,43.59516987397927,43.59170888548048,43.58795889887641,43.58097892643676,43.5787689340019,43.57746793794276,43.57470694537145,43.5718279521916,43.57043895479103,43.5694799552607,43.56829895132978,43.56798994931585,43.56676094588369,43.56684194207872,43.56612994068031,43.56595093722455,43.56641893087771,43.56871891582045,43.5694219102157,43.56917090468333,43.56857190349925,43.56741590429588,43.56733990437375,43.56586790585616,43.5648789049625,43.56318090118839,43.56293389894491,43.56319089373832,43.56417488418151,43.56535487485153,43.56490487152124,43.56435687121643,43.5625658720998,43.55785987878283,43.52226197114273,43.51102300039445,43.50589901373355,43.50160702480498,43.49623303188079,43.49603603203973,43.43486508059493,43.42406008903635,43.3967611104326,43.39510311183387,43.38066812303187,43.3787891256094,43.37306913476902,43.36907714181119,43.36881014231747,43.36666314658937,43.3628761557994,43.36103916040354,43.36010016344243,43.35982316429428,43.3600381671552,43.36150616909144,43.36177816987305,43.361199173501,43.36018717475131,43.35804017665905,43.3547771798892,43.34917218468522,43.34215319012473,43.33029819765295,43.32740119981954,43.32203220476898,43.31974720656394,43.31445320942368,43.31167121059678,43.30673521226191,43.30211821410531,43.30033121466583,43.29386621550317,43.29308621559179,43.28941521614403,43.28209421809233,43.28100821850869,43.27845421954159,43.27264622199841,43.27035822301419,43.26699522442917,43.26491122545887,43.26387622559631,43.26357422563945,43.26012422681071,43.25867622745064,43.25691522807959,43.25390222901034,43.25220522957148,43.25132822987991,43.25134922994941,43.2498152303706,43.24919923052047,43.2478352306523,43.24770423083798,43.24875323082934,43.24733323106814,43.24520323113492,43.24297523141956,43.24126323190946,43.24059223229877,43.24129323307534,43.23927823365421,43.23876523462837,43.23887823553725,43.23941023602529,43.23941723655325,43.23886023702551,43.23854123717359,43.23633423811732,43.23315623929901,43.22960624045131,43.22492924219348,43.22282324330948,43.22049424448716,43.21565524681919,43.21127524919818,43.20685125146143,43.2060592520036,43.20592525208678,43.20247625418233,43.19843825803576,43.19769125915295,43.19558326119496,43.19569926133645,43.19553926157261,43.19465426354488,43.19488326392299,43.19622026386642,43.19651826540011,43.1953032675804,43.191773271584,43.1904512733119,43.18814227758736,43.18802627805318,43.18833727993299,43.18892028064058,43.18913228217345,43.19070728305952,43.19116728361163,43.19130728517285,43.19162828578339,43.19344628702249,43.1932752878713,43.19251128944709,43.19219229072218,43.19236829240003,43.19210929307312,43.19280229310169,43.19392029410729,43.19563029409744,43.19568129596543,43.19535629755813,43.19462629946588,43.19163329142951,43.18594027974061,43.18332427285338,43.18129827108588,43.17753727105607,43.17576726974432,43.17289326595926,43.17253426541065,43.16952025684674,43.16688424927072,43.16503624867465,43.16187925221681,43.15968525402485,43.15444225195075,43.15216125321876,43.14930525683418,43.1466912560522,43.14529324830441,43.14554324415028,43.14596324203512,43.14990923172466,43.15187122576384,43.1527782213832,43.15484621441901,43.15974020361027,43.16114519938195,43.16238118979707,43.16197918451705,43.16033717446901,43.16052816397573,43.16036915025567,43.16103614432314,43.16177213447459,43.16390112523241,43.16574611338104,43.16610610105098,43.16665909077099,43.16679607529854,43.16654507253305,43.16482306498222,43.16084405433159,43.15791404577195,43.15713603836298,43.1590530341539,43.16185703122274,43.16446602059612,43.16651102235446,43.17674702142556,43.17726802132271,43.19124701995713,43.19434001963632,43.23516501567555,43.24886301423911,43.25160901750942,43.26180303346839,43.28571807265777,43.29313808482307,43.30294610078807,43.31222911592864,43.33178014736662,43.35094517866899,43.35943819235214,43.36614320318257,43.38008522576131,43.39205524517789,43.44228632659636,43.45798635203785,43.46738536726706,43.51115038405687,43.52217234835108,43.52245334743296,43.52308434546072,43.52510433882319,43.52721133183994,43.53287031351817,43.54231228278532,43.55164625229756,43.55499824130657,43.55493924622095,43.55491225050527,43.55479625603459,43.55474625779587,43.55479526545282,43.55479126856444,43.55476727876427,43.554557280118,43.55462528533241,43.55431529818457,43.55432829751592,43.55448329641532,43.55432329441982,43.55407428562144,43.55398526757418,43.55399326119647,43.5666542261191,43.56969221759012,43.58324617990612,43.58937016289806,43.59703314163568,43.61182210061528,43.63081504800349,43.64099001987976]}]],[[{"lng":[-91.54096874476645,-91.54109920044388,-91.54110920149535,-91.54110926979467,-91.5411893845569,-91.54116442980296,-91.5404057494556,-91.54033779604906,-91.54009197067421,-91.53974021364424,-91.53948629107339,-91.539884415757,-91.54029461294242,-91.53257562636317,-91.41955488476643,-91.41933888530413,-91.40478592227414,-91.37516099683735,-91.37388900069365,-91.29801618985243,-91.19275124998526,-91.19090524780812,-91.19000924693303,-91.18927424621795,-91.17502323213056,-91.12515518272771,-91.05025410851852,-91.04993610819953,-90.92583411440698,-90.80305420611825,-90.67875031508484,-90.6795022868865,-90.67925828420778,-90.67976126834505,-90.6797602682921,-90.67981126031958,-90.67965426014294,-90.67963725876534,-90.67886124248443,-90.67798120196473,-90.67833613975861,-90.67806110498374,-90.6787734436987,-90.7607001964319,-90.79170421289827,-90.80236921849604,-90.82280023119537,-90.86361025284927,-90.90467027742204,-90.92517028881245,-90.92534328889971,-90.92519391677462,-90.92522179844913,-90.98351788332381,-91.03800990669819,-91.03839790724996,-91.04888690741083,-91.04908990741382,-91.11071890730661,-91.14654690693021,-91.14798690690004,-91.17317990633305,-91.21362290690949,-91.23439890571672,-91.2960076904247,-91.32600055014704,-91.35920939476895,-91.41864211927621,-91.44386500002913,-91.48021582965127,-91.54096065212607,-91.54132065235909,-91.54096874476645],"lat":[45.3067118666438,45.37881962485807,45.37899062429241,45.38979158807464,45.40798152716393,45.41512450318965,45.46522233402559,45.47254130932292,45.49996421670011,45.55175121824692,45.56819621849742,45.59517822049578,45.63760622323306,45.63751120792878,45.63778710809827,45.63778810800333,45.63804510154494,45.63839408838886,45.63857708775361,45.63902105398491,45.63863107872095,45.63852408024034,45.63852908095222,45.63853408153585,45.6385620928845,45.63864413263855,45.63886419250073,45.63886319275436,45.63909823952022,45.63846624991546,45.63826524313528,45.58666718926354,45.58102518331921,45.55257115363035,45.55246915352344,45.53769113806936,45.53688813720204,45.53425313444195,45.50105109956282,45.49363110618781,45.48421411796276,45.47880112456682,45.37790825056283,45.37808135450373,45.37813734014917,45.37814833522966,45.37846332529304,45.37857030642721,45.37917128677432,45.37935127719673,45.37935127711808,45.31313036662952,45.29206239506344,45.29194834876336,45.2918443773435,45.29196237762245,45.29201538902951,45.29201638925026,45.29210745651491,45.29209249571317,45.29208849729465,45.29200852499,45.29222256878904,45.29198459200263,45.29183666624537,45.29175270353068,45.29165974484979,45.2919578173856,45.29168784945041,45.29156289485245,45.29206191578753,45.2922219152366,45.3067118666438]}]],[[{"lng":[-90.46532255885991,-90.45768991251023,-90.45745495030667,-90.45525293928856,-90.45640191827664,-90.456401910918,-90.45472990419961,-90.44827989528372,-90.43597789851948,-90.41716591496737,-90.4101189278837,-90.40755893072127,-90.40145893267317,-90.39506893952712,-90.39423294288657,-90.39595894607122,-90.39324895427043,-90.39411396019844,-90.39494996768902,-90.39924997068844,-90.40116998120358,-90.4056329813271,-90.4075489840513,-90.40414700852027,-90.40980200827336,-90.41041701152302,-90.41409701099639,-90.42116700208418,-90.43071799857957,-90.43149900238782,-90.44171099300753,-90.45103197691434,-90.45664097387358,-90.46524095953458,-90.46546695120489,-90.46532255885991],"lat":[47.0027790892628,47.01248660340566,47.01278543800288,47.02400243027803,47.03945541973535,47.04530741573203,47.05229441089651,47.06531440174301,47.07355539559731,47.07689939252418,47.0734953946131,47.07353639448292,47.07678039196863,47.07695939158322,47.07540639264034,47.07211039502388,47.06884939720968,47.0644184003562,47.0589834042046,47.05366840808297,47.04524541404844,47.04139841687778,47.03792841935975,47.02470442851308,47.01965043218275,47.01688043413015,47.01369743643164,47.01287943715434,47.00554044243746,47.00195044493515,46.99860644509906,46.99953844615466,46.99699344356741,46.99759044424592,47.00259544511922,47.0027790892628]}],[{"lng":[-90.51449507138179,-90.50508308483499,-90.49701009478919,-90.48584612346234,-90.46705916368487,-90.45853717892541,-90.45126519489793,-90.44895120641124,-90.45058820986944,-90.46123319133373,-90.4654901890308,-90.46770118471244,-90.4704031759069,-90.47302317082764,-90.47556217550871,-90.48483715278391,-90.49922511226094,-90.50551361336518,-90.5142910765898,-90.51431381897466,-90.51449507138179],"lat":[46.87753126874598,46.88085328854324,46.88602230512385,46.88747931290288,46.89354532961581,46.89732433791772,46.89891234307557,46.89646434170117,46.89286133722038,46.88778532637059,46.88303631890834,46.88205331659366,46.88262631572012,46.88139831287018,46.87509330422917,46.87262529578025,46.87140928552014,46.87260553976093,46.87427526498883,46.87463826098411,46.87753126874598]}],[{"lng":[-90.57550781026761,-90.57342681005568,-90.56984681002152,-90.56450881236296,-90.56220181469288,-90.56253881712155,-90.5663228175931,-90.5662798199463,-90.56218982649447,-90.55233283902928,-90.54955084312435,-90.54487784933571,-90.54536585438099,-90.5464858596488,-90.55290285987353,-90.55867585881904,-90.56306651305479,-90.56331785446987,-90.56345404132936,-90.5648018488675,-90.56795283839163,-90.56926882959969,-90.56984682073541,-90.57282881781765,-90.57505781475722,-90.57550781026761],"lat":[47.0338663022214,47.03582630463416,47.0388013089372,47.04058331662109,47.03992832066814,47.03705132161873,47.0334663173332,47.03095731868184,47.02727832726099,47.02206234625355,47.02004135196135,47.01738636119496,47.01174436354636,47.00532936524707,46.99968035687422,46.99618434269147,46.99654470636501,46.99656533525314,46.99697160341742,47.00099233647187,47.00956632677013,47.01798132032852,47.02713731478087,47.02782030955476,47.02930330517993,47.0338663022214]}],[{"lng":[-90.59085477100493,-90.58999076808057,-90.58958176557061,-90.58830676412464,-90.5865647161657,-90.58651876476502,-90.58363176916167,-90.58294877305774,-90.58473377765719,-90.58917984370521,-90.58943277756225,-90.59055777360659,-90.59085477100493],"lat":[47.06524026319894,47.0692402627275,47.07240326192348,47.07502726267658,47.07566543160269,47.07568226509785,47.07296827075824,47.06914027359743,47.06259427389578,47.05914357623957,47.0589472682509,47.06252526488156,47.06524026319894]}],[{"lng":[-90.62498879731727,-90.62189179767741,-90.61820679945774,-90.60933280654636,-90.6059738101024,-90.60553781221688,-90.60257881673384,-90.60252281942981,-90.60317382132661,-90.60667081890696,-90.60971981805636,-90.61043367149206,-90.61744881197299,-90.62204180598833,-90.62390780218328,-90.62721179661513,-90.62498879731727],"lat":[47.00396423287489,47.0065692371522,47.00799924283024,47.00804825777266,47.00704426385046,47.00498126544084,47.00251227149184,46.99923127170129,46.99537526587358,46.99438225870198,46.99120924963442,46.99104475424124,46.98942823430934,46.99333823124962,46.99831423411981,47.00261622959189,47.00396423287489]}],[{"lng":[-90.65143075367956,-90.64756775248225,-90.64495775271942,-90.64082775590803,-90.63769775972753,-90.63710276159861,-90.63979176288927,-90.63899376630386,-90.64124876704952,-90.64448555383943,-90.64452176475088,-90.65143075570347,-90.65143075367956],"lat":[47.03269317934704,47.03799118397661,47.04018418748911,47.04004819417349,47.03818719983142,47.03640220139278,47.03222519842604,47.02869320089914,47.02556519823385,47.02527741249421,47.02527419294821,47.03007418013875,47.03269317934704]}],[{"lng":[-90.65426478795982,-90.65061079301988,-90.64692628739952,-90.63802159818435,-90.63712680856507,-90.62878481904094,-90.61785783363726,-90.6100708424181,-90.60115485097823,-90.57646687700009,-90.55800689811072,-90.54948490628864,-90.54197791087496,-90.53296691918908,-90.52880592135894,-90.52329992875016,-90.51807793981075,-90.51162495118997,-90.50863196042154,-90.5094229641693,-90.51963696333404,-90.52330496164909,-90.5245139696619,-90.52497497317309,-90.52921796934262,-90.53599695848239,-90.539538951713,-90.54553494617092,-90.54770995160148,-90.54593096091853,-90.54358096959804,-90.53947297836478,-90.53973598110365,-90.55021396606158,-90.55179596124675,-90.54916896216122,-90.54981895698083,-90.55897893530667,-90.56853391862087,-90.57710090824509,-90.58097990557955,-90.58573289941521,-90.59587588346309,-90.59911087725806,-90.60165987117801,-90.60707886201419,-90.61095885680089,-90.61160485725296,-90.61442585502935,-90.61762085055341,-90.62836683379652,-90.63483882328178,-90.63908881616304,-90.6441458070781,-90.65074879488502,-90.65481078750545,-90.65426478795982],"lat":[46.92234209091769,46.92579210119766,46.93020483566752,46.9408695021537,46.94194114335378,46.94438016035406,46.94460817903331,46.94758519578193,46.95245921677481,46.95846626583896,46.95966229851116,46.96146431515503,46.96501133227024,46.96659034949177,46.96849935892527,46.96760636712887,46.96400537144577,46.96140937909396,46.9576903794681,46.95459337423068,46.94622434648017,46.94393033742305,46.93693232661276,46.93390132203785,46.93217431274736,46.93292230229775,46.93423029798099,46.93159428462322,46.92414827170175,46.9185472677073,46.91442126649834,46.9127482712808,46.91017726763258,46.90800324742141,46.90991424715546,46.91295725533092,46.91657025873901,46.92315925158548,46.92513623801802,46.92203921983431,46.91802620839129,46.91624019823833,46.91565218054635,46.91709717690453,46.92017717640877,46.92122716861665,46.91967916022806,46.91700615588479,46.91260614579996,46.91100913851376,46.9081671171063,46.90688710474744,46.90648909717044,46.90838109101307,46.91422108702268,46.9195370866271,46.92234209091769]}],[{"lng":[-90.67844475320398,-90.67270176038545,-90.66872176508768,-90.66444376977535,-90.66394425142951,-90.65836477620627,-90.6549237793084,-90.64296079067556,-90.63695979663035,-90.63412379996593,-90.63410380290398,-90.63719745029452,-90.64081579702123,-90.64796425335179,-90.64851078871271,-90.65167678545482,-90.65327278402634,-90.66120377469345,-90.66682576764356,-90.67158676151209,-90.67253072855432,-90.6752737569218,-90.67844475320398],"lat":[46.95642909111476,46.96014210525583,46.96699612019434,46.97007813113374,46.97028397114901,46.97258314444274,46.9769351555124,46.98102818075384,46.98113819107799,46.97963119406857,46.97098418362685,46.96853211670268,46.9656641658232,46.96337701406565,46.96320214983216,46.960635141385,46.95758813501843,46.95324311640338,46.95157610491795,46.94897709377597,46.94998839650375,46.9529270922828,46.95642909111476]}],[{"lng":[-90.69299472325429,-90.6918587198343,-90.69150793334322,-90.68885872701519,-90.68868071795576,-90.68340272039158,-90.6716487297011,-90.67122093106497,-90.66588495544391,-90.65935773552216,-90.65932979187997,-90.65761612789683,-90.65705273397108,-90.65084412605349,-90.65042373741358,-90.648666739885,-90.65041174065151,-90.65679220344173,-90.66014573820988,-90.67007587850648,-90.6704857329778,-90.67317573738065,-90.67615773707531,-90.67890773904747,-90.6789007419839,-90.6803037416678,-90.68920973309642,-90.69280872876956,-90.69299472325429],"lat":[47.03106511209402,47.03718311269853,47.03784991613676,47.04288574249377,47.04322411655289,47.04528212453732,47.04440214351087,47.04455149610738,47.04641438610386,47.0486931619304,47.04874458792609,47.05189832411595,47.0529351643641,47.05456951163272,47.05468017428382,47.0531291775258,47.05051117557331,47.0464943713185,47.04438316189129,47.04125812817842,47.04112914620618,47.03240214406365,47.0297111398644,47.02408013669852,47.02003013766338,47.01894713559015,47.02120112033743,47.02337611394665,47.03106511209402]}],[{"lng":[-90.70270970149798,-90.69767171171345,-90.6874737313782,-90.67790774910458,-90.67468875490776,-90.67107376143409,-90.66744276810736,-90.66853376612286,-90.66984376365751,-90.6731957571929,-90.67760974860946,-90.6819747400737,-90.68424473541756,-90.68967572462549,-90.69676771089384,-90.70157568980063,-90.70263270069987,-90.70266190217652,-90.70270970149798],"lat":[46.88697296783617,46.88955297927077,46.89325400063583,46.8958600196693,46.89558502470103,46.89448702940614,46.89135703169929,46.88814802603944,46.88697002245097,46.88328101246706,46.88221900386922,46.88150999577745,46.87974398990461,46.87896897997203,46.87982496922442,46.8832163793257,46.88396196439615,46.88510384539385,46.88697296783617]}],[{"lng":[-90.71177457947341,-90.71144272613799,-90.7054917342424,-90.70209473417302,-90.69656573617593,-90.6877357440386,-90.68050574992446,-90.67665175541957,-90.67111722740319,-90.66920676430938,-90.66920676440998,-90.67418776023025,-90.67991075502613,-90.68602874896433,-90.69225174258023,-90.69477973940361,-90.70727672715179,-90.7120307234495,-90.71177457947341],"lat":[46.98759351530167,46.99061407578299,47.00072709690168,47.00489410194398,47.00846311062155,47.00736812573383,47.00727313795729,47.00398414525448,47.00112061912439,47.00013215887781,46.99894515764529,46.99764214759359,46.99358913299957,46.98918411733202,46.98613210311557,46.98288209495642,46.98288207372481,46.98526206845967,46.98759351530167]}],[{"lng":[-90.73086666350936,-90.72871066457397,-90.72610416341975,-90.72399266947561,-90.72077367467838,-90.72029767879201,-90.72085798129126,-90.72197468037332,-90.72673967770338,-90.7300406731673,-90.73018067136071,-90.73191166438986,-90.73086666350936],"lat":[47.08000804504015,47.08062304822705,47.07914301337512,47.07794405568385,47.07329206118358,47.06746406269472,47.06604309346333,47.063211060665,47.06213205339986,47.06561604788317,47.06831904736809,47.07748704372941,47.08000804504015]}],[{"lng":[-90.76325140314599,-90.76140758731198,-90.75821558961657,-90.75785159264495,-90.75609145374688,-90.75178227472998,-90.7494825944537,-90.74050061865118,-90.73598462965764,-90.73023364166856,-90.72663164834158,-90.72051165753884,-90.72100333171733,-90.72255665051145,-90.73277062101087,-90.74404558845866,-90.75166457269674,-90.75990457936589,-90.76355558426927,-90.76325140314599],"lat":[46.83329395372304,46.83892584523328,46.84923612979441,46.8504118550165,46.85294806305519,46.85915721738402,46.86247086151581,46.87007688525908,46.8728388959718,46.87346790623631,46.87235691089728,46.86567891316607,46.86436545106923,46.86021590335295,46.84756387163952,46.83764884148361,46.83317282821865,46.83090583416808,46.832364839711,46.83329395372304]}],[{"lng":[-90.7652906791258,-90.76202138905886,-90.75613287901864,-90.75551167129311,-90.74944566771696,-90.7405486819554,-90.73822368423799,-90.73424468652043,-90.72760369366175,-90.72237020021338,-90.71564670823118,-90.71207371132735,-90.71174171019244,-90.70549071583207,-90.69449072878611,-90.69209491737354,-90.69082573243961,-90.68888725932207,-90.68868873419171,-90.6889897330524,-90.69177931646671,-90.69324972593569,-90.70717470332902,-90.70759374066503,-90.72449967487685,-90.72766066929481,-90.72825122927127,-90.73669765407777,-90.74500681237465,-90.74852364509221,-90.75022190675215,-90.752027717974,-90.75419765041558,-90.75529765740752,-90.76260467110927,-90.7652906791258],"lat":[46.94702297797354,46.94948421982318,46.95391730667894,46.95438497468221,46.95901397423124,46.96420899534439,46.9635809985421,46.95975500078549,46.95825101024105,46.95830091618742,46.95836503057586,46.95529203298205,46.95142302897148,46.94450403132424,46.93671204059138,46.93168900105257,46.92902803761207,46.92183109349825,46.92109403175375,46.91746302692775,46.91660649983521,46.91615501824332,46.91579099451423,46.91577116053272,46.91497096456486,46.91416495833023,46.91411784049433,46.91344394237219,46.92320330915143,46.92733393881103,46.9280995625817,46.92891367519787,46.92989194433044,46.93697295396348,46.94168696836518,46.94702297797354]}],[{"lng":[-90.77493271824753,-90.76939370651837,-90.76533769938753,-90.75891168932903,-90.75715568766299,-90.75691168887154,-90.75009168283927,-90.74729268504487,-90.74535168882295,-90.74071869492242,-90.73901269886059,-90.74015470026984,-90.74121552625658,-90.74466869929563,-90.7471206981467,-90.75061869902578,-90.75544570628406,-90.7601997126315,-90.76590972162768,-90.77079972696434,-90.7717897253702,-90.77450572470599,-90.77400871927966,-90.77493271824753],"lat":[47.02452104724513,47.03006003991075,47.03243003515423,47.03472102812147,47.03372802643174,47.03135402645538,47.02617701958113,47.02577702395762,47.02200802742346,47.01794303542182,47.01372803863203,47.00995903704737,47.00893675045548,47.00560902978513,47.00422702573228,47.00044802188466,46.99933102741198,47.00236303405496,47.00207804143803,47.00505004705518,47.00919104733806,47.0153370491122,47.02149504697944,47.02452104724513]}],[{"lng":[-90.79156357058295,-90.79023257041567,-90.78625556880073,-90.78295781559149,-90.77793556264102,-90.77464423520807,-90.77310855860368,-90.76707455445367,-90.75858755059758,-90.75244554645869,-90.74319056292593,-90.7330025919904,-90.72854760640178,-90.72781961170892,-90.72093363239993,-90.71238265631241,-90.67536575032521,-90.65694779328771,-90.64321982232173,-90.63404983898407,-90.62204986042211,-90.6164538709501,-90.60701889028086,-90.60255390001139,-90.58819199328397,-90.58739394218031,-90.58033796129568,-90.5700079877475,-90.5698697478248,-90.56887599262802,-90.5701459906106,-90.5736980646687,-90.57486998075574,-90.5782649761874,-90.58449096321057,-90.58992320890196,-90.60129003903232,-90.6138238955963,-90.61412247853423,-90.63368085110565,-90.64262683031627,-90.6538508030947,-90.65643976884218,-90.67384875338749,-90.67680674542061,-90.67532274888552,-90.67005076291817,-90.66650877257989,-90.66458477777621,-90.65531180308341,-90.65291780983262,-90.65222081227792,-90.65384880817471,-90.65718079921675,-90.66243178445127,-90.66842876747079,-90.68003818361079,-90.68215472814367,-90.69646668656162,-90.7014486721819,-90.70734465595352,-90.70968341361063,-90.71645763033167,-90.72393960706569,-90.73491645480972,-90.73942655320373,-90.74540253474613,-90.74860852390638,-90.75286851799899,-90.75975252030641,-90.76364852190636,-90.76661270891155,-90.77122952624765,-90.78061653307927,-90.78789553891754,-90.78724354082478,-90.7892915455069,-90.78781754726677,-90.78213654759945,-90.78308755270756,-90.78542055773211,-90.79096656683615,-90.79156357058295],"lat":[46.78498481071787,46.78610481079772,46.78824580953586,46.78880824790133,46.78966480311109,46.78987617586854,46.78997479875016,46.79147579462046,46.79621579186649,46.7981037879916,46.79821479677799,46.8002208157128,46.80435782782773,46.81043583615744,46.81589885383206,46.82074487353171,46.83393094986472,46.84347799157663,46.85384602668373,46.86439805458921,46.87287408473469,46.87446809594588,46.87385311082833,46.87270811682473,46.85882932953745,46.85805812392197,46.85353913000048,46.84969814228536,46.8493996794049,46.84725414112776,46.84634013790681,46.84558595295211,46.84533712889236,46.84165511876487,46.83982710627762,46.83947837902382,46.8387486764854,46.8379440557693,46.83784225675154,46.83117401494354,46.82777699616543,46.82566297522479,46.82488736591145,46.81967193529926,46.81260392201444,46.80538891581212,46.79949791735213,46.79882392231051,46.79993692677759,46.79917494095896,46.79775694314861,46.79451294037555,46.79180793447185,46.78880192544228,46.78789791582995,46.78747890559152,46.78465983233282,46.78414587933306,46.78204185361948,46.78206784557309,46.7842938386477,46.78458281232122,46.78541982519334,46.78173880872156,46.77201714450655,46.76802276755656,46.7674617572447,46.76594575029547,46.76075674467666,46.75674074637793,46.75492874785058,46.75418858314763,46.75303575261226,46.75253076067905,46.75277476770267,46.75551077044785,46.75898077660604,46.76229677929011,46.76795678083823,46.77294078780603,46.77644879431684,46.78137480569893,46.78498481071787]}],[{"lng":[-90.80614855235349,-90.79433554491659,-90.78442653914936,-90.77658925517738,-90.77366653472228,-90.76952153404625,-90.76684577841792,-90.76602453441373,-90.76765253550808,-90.7681109696459,-90.77160492068541,-90.77164453525074,-90.77518653625179,-90.78529962250252,-90.78615954093515,-90.79675954681272,-90.80558755216461,-90.80688455290041,-90.80614855235349],"lat":[46.73025376086073,46.73097075097839,46.72937674047748,46.72473335857003,46.72300172452339,46.71848971639504,46.71417651679811,46.71285270777592,46.71207570844328,46.71278736201248,46.71821122210562,46.71827271805953,46.72094872384289,46.72599560170789,46.72642473907241,46.72867275082595,46.72870475877044,46.72925976050212,46.73025376086073]}],[{"lng":[-90.92834229975799,-90.92565231269768,-90.92498831781946,-90.92498832171009,-90.92428833203233,-90.92428834848315,-90.92408136155505,-90.92437138455992,-90.92452538956528,-90.92440639125083,-90.92499039624511,-90.92499040330421,-90.92499042711955,-90.92432443473727,-90.92454144632541,-90.92438544821458,-90.9275514448301,-90.92734947112048,-90.92734147182621,-90.92730447572636,-90.92726248278287,-90.92730149150917,-90.92705690908635,-90.92036551297622,-90.90988351748496,-90.90716955679954,-90.90613198928138,-90.9055735202312,-90.90402395077336,-90.90172911448199,-90.9013565232873,-90.90303952364472,-90.90062752558832,-90.89968646273381,-90.89877249252396,-90.89827252552081,-90.8955255273477,-90.89541664536026,-90.89266552997366,-90.88935753159198,-90.88537553449953,-90.88576853479904,-90.88543151803384,-90.88429653586958,-90.88259106475218,-90.88199971445981,-90.88029973979717,-90.88004853883189,-90.87917772777968,-90.87873412674149,-90.87860595720117,-90.87846715891828,-90.87648655328661,-90.87545054101967,-90.87493125697442,-90.87388054215639,-90.87175054290415,-90.8686531532873,-90.86822854449963,-90.8666841325026,-90.86659154489587,-90.82903255833905,-90.8228748135305,-90.82245755990716,-90.81659317997453,-90.80236117666503,-90.79477656448853,-90.78072156504066,-90.77019356437548,-90.76838243722682,-90.76444277855659,-90.75538238658027,-90.75528856072235,-90.74786956560028,-90.73764959980876,-90.73955059065241,-90.74001017694219,-90.74576432308129,-90.74620556497479,-90.75069910997443,-90.76042705217812,-90.76094255461278,-90.7616555541276,-90.74809155531794,-90.74400156919525,-90.73170761278956,-90.71221768289239,-90.6955097458694,-90.69319875373527,-90.69350775138933,-90.70255271710552,-90.70319071330236,-90.70759969638584,-90.70794131050583,-90.71155337192775,-90.71243267752025,-90.71676672633326,-90.71904765240402,-90.72042595654221,-90.73443489073391,-90.73467559213059,-90.73479156194999,-90.73959349342105,-90.73962757375128,-90.74379155693499,-90.74438433211706,-90.75057253366118,-90.75808857405177,-90.75862153516327,-90.75878153472254,-90.75794453411378,-90.75725481339794,-90.75342753265149,-90.74564754817945,-90.73279559695885,-90.71111768014322,-90.69195875523995,-90.68169224084686,-90.68035080203761,-90.62788701843314,-90.58625119722666,-90.57942401827219,-90.56367016432847,-90.55814331876816,-90.54971375885616,-90.5499304025611,-90.54998545630653,-90.54848546258749,-90.54843446346027,-90.54885122596923,-90.54885222539785,-90.54881314545484,-90.54894399251744,-90.54954394589572,-90.55096291101295,-90.55196180426938,-90.55222375693617,-90.55222875627869,-90.4259797997595,-90.42627564178275,-90.42622864174382,-90.38707462663046,-90.36627461956095,-90.31177359703106,-90.30307359389732,-90.30318959194263,-90.30457256853239,-90.30367049275341,-90.30026944160986,-90.3007614165095,-90.30016836643136,-90.30056634550256,-90.30126634170861,-90.30076632448211,-90.30206432865789,-90.32816533597722,-90.40080835634549,-90.40831335844965,-90.458278372462,-90.46366337402665,-90.48837238090321,-90.51960138430815,-90.54028438446855,-90.67696938554229,-90.92325934844715,-90.92518634811213,-90.92627635500097,-90.92572735734798,-90.9248773539081,-90.92457735342199,-90.92407834750051,-90.92477933860421,-90.92463733674334,-90.92463533671412,-90.92428132807845,-90.92488132546598,-90.92480431809514,-90.9246573127991,-90.92458431019109,-90.92475428331385,-90.92475428329666,-90.9247512827756,-90.92450028627511,-90.92566928781667,-90.92706129118655,-90.92834229975799],"lat":[46.28435049933628,46.29967550796427,46.30636951137271,46.31225251409808,46.32674752103266,46.35161753245804,46.37104754139865,46.40629155758582,46.41410756120593,46.41646356226987,46.42495956631137,46.43563357125634,46.47164458793925,46.48207359240955,46.499948600764,46.50216960319625,46.50217160523599,46.53480364296119,46.5356786439708,46.54052364956586,46.54932065974126,46.56028167248328,46.58517171292209,46.58307069382926,46.58243368541123,46.58312130530962,46.58338418754936,46.58352568349198,46.58418269809133,46.58515570444111,46.58531368241783,46.58712568570989,46.5885896855838,46.58785042026648,46.58713243795535,46.58673968175513,46.58781868094161,46.58791553273063,46.59036268168062,46.59082467974274,46.59340667966077,46.59433168098382,46.59457000858762,46.59537263209178,46.59657868732572,46.59699687154335,46.59819903982343,46.59837668119376,46.59862478064699,46.59875116532506,46.59878768161944,46.59882722610818,46.59939151289142,46.59968667918518,46.60017090378543,46.60115067961505,46.60122767809369,46.60222584232803,46.6023626766798,46.60198246850947,46.60195967500319,46.61606766147057,46.61925657657137,46.61947265995553,46.6206315079778,46.62344386465039,46.62494264405629,46.63092363904652,46.63612863588489,46.63736343410489,46.64004943179694,46.64622666490936,46.64629063390373,46.651572637845,46.65532465643952,46.65972965796315,46.66002253706274,46.66368946346364,46.66397065227441,46.66287630008511,46.66050719560496,46.66038165218193,46.66168665403926,46.66981865513073,46.67052566189933,46.66918967887117,46.66592770450827,46.65960872265075,46.65999072645192,46.66173772782807,46.66536271823865,46.66765471966276,46.66991971544645,46.67013933014937,46.67246142908319,46.67302671142603,46.67526155177301,46.67643770499983,46.67739497107204,46.68712451928941,46.6872916923004,46.68735267492596,46.68987776624138,46.68989568735189,46.69476168576101,46.69517350864535,46.6994726813174,46.7028819417588,46.70312369181695,46.7042556930561,46.70481069286772,46.70466044085796,46.70382668798922,46.69940168742617,46.69007569789755,46.67599371641813,46.66393473242026,46.65692468491322,46.65600874111196,46.62384078110158,46.59986481106706,46.59659087528123,46.589036201477,46.58638583297461,46.58390308261457,46.54409379059018,46.50074873563338,46.50064873735157,46.4999487365741,46.41404270476749,46.41383570469122,46.38466669409409,46.32906467376538,46.31255266750345,46.30088766276062,46.26230664885063,46.24127163563402,46.24085263520814,46.24045166320234,46.1540625568707,46.15405155686233,46.15435156155129,46.15505156479188,46.15465057029628,46.15485057155713,46.15370156984572,46.13995054940612,46.09665048551393,46.06795044289878,46.0534284213922,46.02475037876927,46.01265036087877,46.01035035759281,45.99635034021468,45.98135033254994,45.98136933863918,45.98144535558583,45.98145535733632,45.98151036898076,45.98121737015951,45.98154137598924,45.98162138190231,45.98164038527511,45.98155540752275,45.98103438426618,45.98120138390851,45.9954553864227,45.99995538739827,46.01175539217718,46.01355539295105,46.03335540084377,46.06165441172268,46.06790341421716,46.06800141425623,46.09675342565957,46.10425442834646,46.12838143781771,46.14594544476443,46.15461744819855,46.24176148220761,46.24181748222953,46.24352448289966,46.25790548925944,46.26207249039524,46.26935949292144,46.28435049933628]}]],[[{"lng":[-92.08384336224499,-92.08309435690775,-92.08075335247609,-92.07988034825956,-92.08022834396459,-92.08235533490638,-92.08127032287688,-92.07969831488138,-92.0749573034235,-92.07238929277405,-92.06548625961958,-92.06407725231087,-92.0622042465745,-92.05931623531465,-92.06016822045203,-92.05941021714486,-92.05918620932776,-92.05776420332563,-92.05616919469794,-92.0561121891258,-92.0521441766367,-92.0507361656398,-92.04965114233997,-92.046010087695,-92.04538008124135,-92.04526308004824,-92.0439130617667,-92.04338904494367,-92.04372899505174,-92.04775194430846,-92.04791791657952,-92.04629488259705,-92.04079581676284,-92.03883677286028,-92.03829369541384,-92.03894167180114,-92.03998265557578,-92.03958363105448,-92.03646159531047,-92.0340705595448,-92.03257251581228,-92.03134949314666,-92.02917843258801,-92.02278638688398,-92.01997137439653,-92.01230935880565,-92.01020334938559,-92.00314430029808,-92.00091829778439,-91.9644451042337,-91.89305771723085,-91.89297571678674,-91.87316861048313,-91.84282944569902,-91.77195506190763,-91.74151490658436,-91.70567875158737,-91.66775858966258,-91.65024451454529,-91.63128243338795,-91.52909699713248,-91.52896815682185,-91.52892445176904,-91.52891647101806,-91.52899659253316,-91.52910885804562,-91.52910399264479,-91.52925230955059,-91.52921133676784,-91.52903146590218,-91.52894903610961,-91.52874306040849,-91.52895039262904,-91.52900552582322,-91.52903559860911,-91.52940049984473,-91.52974056310968,-91.53223356557962,-91.53223857105705,-91.53388357199773,-91.5364745698179,-91.5375885723134,-91.53638257823057,-91.53845458436112,-91.53863559177599,-91.53676359278538,-91.53432659020363,-91.53523959793596,-91.53775159988253,-91.53918460341076,-91.53969561634455,-91.53874362094443,-91.54240063040005,-91.54567663159129,-91.54993964203777,-91.55147364722345,-91.55168063961052,-91.55476066315018,-91.55615267902341,-91.55711968469824,-91.56366969030292,-91.56144169534792,-91.56407869690577,-91.56796170251214,-91.56799370846105,-91.5661907112701,-91.57065571280752,-91.57160671961815,-91.57342472112235,-91.57338271456784,-91.5749877083008,-91.57661071695014,-91.57855171996248,-91.58160071882925,-91.58255872553848,-91.58092372583411,-91.58039073246702,-91.58363473811224,-91.58414174547779,-91.58598574723032,-91.58760873853004,-91.58907074071585,-91.59148575243307,-91.5932267534087,-91.5931057471044,-91.59431475059067,-91.59440675648167,-91.59491776081528,-91.59750276609005,-91.60095577966443,-91.60158679374403,-91.60285280566072,-91.60285881035114,-91.60489182222105,-91.6082928264117,-91.60851682927508,-91.60682783496009,-91.60382083754085,-91.60377684395868,-91.60241684760176,-91.59929784923099,-91.60056285449257,-91.59893385613803,-91.59935986219813,-91.59833586959945,-91.59722287201399,-91.59775888098066,-91.59646588499575,-91.59689988871582,-91.59868189177783,-91.59898590199528,-91.60322390945383,-91.60442691307816,-91.60488091978078,-91.60906593536959,-91.61174293768961,-91.61285294288713,-91.61233096151767,-91.61108696615415,-91.60791796542034,-91.60633797103175,-91.60724797507172,-91.60572197728125,-91.60210297071789,-91.60200597467565,-91.59805396843998,-91.59566696817929,-91.59590697594926,-91.59486498234016,-91.59250498034592,-91.59128298674291,-91.58972498026723,-91.58874998435466,-91.58975298924109,-91.59079199980927,-91.58925400024145,-91.58792800512751,-91.58662799937966,-91.58244000473843,-91.5785920026199,-91.57658199600435,-91.57643500452987,-91.57392401066089,-91.57367500328341,-91.57076399750696,-91.57021300062519,-91.57255900946008,-91.57119301121419,-91.56979900796591,-91.56795101215607,-91.56566400957412,-91.56328601812085,-91.56070602124335,-91.55873903356758,-91.55893303711778,-91.5589060427734,-91.55792606321194,-91.55691006574315,-91.55388306852569,-91.55296707180106,-91.55262508038952,-91.55068408790773,-91.54973209408855,-91.54881410234151,-91.55118911388628,-91.55133812166585,-91.55260812316438,-91.5514121298547,-91.55118213693717,-91.5481451494658,-91.54757315528531,-91.54865316863587,-91.54519617532291,-91.54363118170563,-91.539418180319,-91.54081719097378,-91.53599619657729,-91.53590120226512,-91.53434821109326,-91.53645022618348,-91.53653423367587,-91.5386092344725,-91.54039924720016,-91.5408232571976,-91.54335827653122,-91.54302828840648,-91.54218029031786,-91.54021029255178,-91.54183329250567,-91.54210429947972,-91.54441929843358,-91.54989231743592,-91.54946332359498,-91.5501143389166,-91.55517335279264,-91.55827636591337,-91.55906037724695,-91.55833938845612,-91.55912940563634,-91.5607074111211,-91.56470641461463,-91.56599442087762,-91.56743243356409,-91.57078844560127,-91.57117345260359,-91.57077546366898,-91.57131646972937,-91.57115747516434,-91.56861348086349,-91.56439748754812,-91.56309049350834,-91.5614844964422,-91.55606750235219,-91.55604350569971,-91.55900452221357,-91.5605144274363,-91.57328352162635,-91.5800195243924,-91.58047949943376,-91.58260452360442,-91.59207051121676,-91.59761749890269,-91.5996419167614,-91.60355046593115,-91.6073394527192,-91.61048744627669,-91.6153754393553,-91.62085320735598,-91.62378443334413,-91.62749424006793,-91.62790042853604,-91.63336541298973,-91.63712621362778,-91.63811540373804,-91.64053540341973,-91.64340040876495,-91.64471740916308,-91.64787340552263,-91.65224738987109,-91.65700038143903,-91.65951137177481,-91.66344234754082,-91.66526333233706,-91.66700632579108,-91.66970556801805,-91.67181439847282,-91.67425960622293,-91.68153029363229,-91.68574829223655,-91.69128129776837,-91.69531029747036,-91.70749128449523,-91.7075544009725,-91.70820728005238,-91.70808225803968,-91.7094762336105,-91.71059722323248,-91.71909719713756,-91.71972319415352,-91.72155219318581,-91.73064818983752,-91.73294422529773,-91.73307533975547,-91.7517471937972,-91.75671917922674,-91.76282903179127,-91.76857413810573,-91.7744861154694,-91.79666906165423,-91.808064029794,-91.8173020011555,-91.82916693983333,-91.83247892949773,-91.83309649760805,-91.8387218760064,-91.84475390037957,-91.85376053924018,-91.85839268287339,-91.86438684160645,-91.87236882499759,-91.87515781773405,-91.87605581028545,-91.87627771132705,-91.87635578935584,-91.87742877820533,-91.88026476449517,-91.88978972654952,-91.89269770977438,-91.89284926944504,-91.89296269773453,-91.89244889401358,-91.88790466905213,-91.88765291369116,-91.88703965037898,-91.8878236379977,-91.8891316278939,-91.89600759172403,-91.8967595794014,-91.89565154432572,-91.89638753637213,-91.89869652474795,-91.90277098059764,-91.90578850510512,-91.9202814873159,-91.92220448264371,-91.92418893894882,-91.92461246791095,-91.92497445650898,-91.92410144726955,-91.92102742981675,-91.91435939559304,-91.91357338587689,-91.91353338166432,-91.91619035678225,-91.91862434118406,-91.92558930859798,-91.92822330562271,-91.93621452665764,-91.94131030887213,-91.94959829950365,-91.9528192933813,-91.95952228965427,-91.96359929187339,-91.96585552315435,-91.97022780618876,-91.97026529864476,-91.97492130646388,-91.978573313962,-91.98397332792848,-91.98697804475614,-91.9872883352362,-91.99398334792876,-92.00016435910636,-92.00283735805733,-92.0061783583453,-92.00858835925857,-92.01931236659271,-92.02185839543107,-92.03776399463239,-92.03814637019352,-92.04584162608458,-92.04628436665698,-92.05354835934803,-92.05648535913549,-92.06163636062033,-92.07226636957668,-92.07860437301366,-92.08363920443618,-92.08403536851809,-92.08384336224499],"lat":[44.41200024201028,44.4142552431007,44.41551024466779,44.41720824561354,44.41938624609511,44.42444424662353,44.42980724876165,44.4331142504445,44.4371172535981,44.44149025583228,44.45577426198757,44.45902126322208,44.46138426436303,44.46628926632161,44.47397526774633,44.47546426826504,44.47935226915411,44.48207527006235,44.48611627124213,44.48893527182171,44.49456027365981,44.49996727487943,44.502815284406,44.50933330662019,44.51008630921816,44.51022530969782,44.51237531704582,44.51439132382141,44.52049034402483,44.5270163650919,44.53043237641432,44.53444038997083,44.54188141550105,44.54696943268456,44.55625246358537,44.55919247325262,44.56130148010444,44.56421048982112,44.56805250302585,44.5719735163842,44.57696353316049,44.57946354163126,44.58629256460048,44.59051957951932,44.59145858302647,44.59184358537023,44.59253958797078,44.59683460318589,44.59669660303658,44.5966336961403,44.59667888337732,44.59667888359223,44.59654993514023,44.59661001483112,44.59659420056142,44.59659124042403,44.59678916614602,44.59665708677565,44.59665005023919,44.59661301062031,44.59619779674448,44.56690973997311,44.51296463581719,44.50943962900163,44.49425764152461,44.47235775826069,44.4612328174578,44.43508895660162,44.43282696862797,44.42210202571591,44.37496527678552,44.37291028806398,44.34550843366919,44.33451349207979,44.32850452398839,44.2540649184821,44.24677893376374,44.24677692123433,44.24549491938986,44.24565391135483,44.24676489990772,44.24643689384948,44.24476789755812,44.24380488580751,44.24210288251326,44.24143689095896,44.24148590323851,44.23987989639767,44.23999488398358,44.23949187610477,44.23656486945176,44.23526787239118,44.23386485217581,44.23432183646039,44.23281281311251,44.23192980425445,44.23378080575298,44.22888878373698,44.22542777211946,44.22429276578085,44.22440873341866,44.22271174220462,44.22292272940602,44.22244170950682,44.22102470747296,44.21995571498823,44.22057069368339,44.21914668710107,44.21918567815185,44.22075068040819,44.22261267488465,44.22089266459827,44.22059765459796,44.2215486407154,44.22014163415952,44.21970764169889,44.21798964212197,44.21734162524179,44.21567262059785,44.21565361146181,44.21811860657455,44.21791259907977,44.21560258422049,44.21574957580255,44.21725557829205,44.21667557158624,44.21526256936154,44.21432056565848,44.21360455200362,44.21104953180493,44.20774652462118,44.20510651514537,44.20396051370643,44.20149050070015,44.20118948365812,44.20053448176431,44.19878048790312,44.19751250106934,44.19593249934528,44.19475650454579,44.19370851848404,44.19268651104447,44.19194751807689,44.19055651427514,44.18854051676223,44.18772452116509,44.1856475159738,44.18440752071259,44.18358851758406,44.18320050845028,44.18076850395823,44.17979248221388,44.17914547559211,44.17759447149403,44.17459944760792,44.17455743462399,44.17349742798613,44.16881042486097,44.16742942918373,44.16699944391005,44.16532044946192,44.16450344409289,44.16367145040721,44.16459046891767,44.16360446816878,44.16437848810736,44.1639904990895,44.16214349563079,44.16039249843911,44.16043750980761,44.15865651341934,44.15993952250298,44.15876752568941,44.1577675196212,44.15539351165184,44.15500751851434,44.15358152304007,44.15473753071952,44.15268254809001,44.15250056621898,44.15373157741146,44.15165357541054,44.14973158487451,44.15145958832131,44.15232560334415,44.15147960485877,44.14977759143852,44.14911459707546,44.14964660441645,44.14831661146085,44.14853162263471,44.14607363067353,44.14488064133889,44.14160664627151,44.14079464425714,44.13944364256442,44.13441464041598,44.13364364417193,44.13248165688223,44.13155365993885,44.12946065869573,44.12736366496609,44.12574666722597,44.12364666865393,44.12128965427876,44.11946965109049,44.11931364492956,44.11754064810548,44.11582664683608,44.11239465630599,44.11093165695802,44.10793664780591,44.10584166098957,44.10410466585006,44.10381368500082,44.10150967529052,44.09949669480118,44.09814769333982,44.09585569728482,44.09260868300176,44.09086068015383,44.09096067073484,44.08821265864839,44.08591665349254,44.08170163599166,44.07885763354997,44.0782956366467,44.07751164455995,44.07773463745187,44.07612663397345,44.07667462415985,44.07289159396503,44.07137859384336,44.06783358601722,44.06517455941334,44.06243854164004,44.05983653458238,44.0570815341269,44.05308552517604,44.05196351655952,44.05159649806475,44.05024949047694,44.04738048020786,44.04487846184614,44.04324245796892,44.04054445620141,44.03915045194975,44.03782945092328,44.03618846011265,44.03413947618606,44.03257847992229,44.03171048590622,44.02974250733551,44.02894450636056,44.0253164883226,44.02548419036554,44.02690242712614,44.02692639728008,44.02700753603423,44.02738238639991,44.03137334942588,44.03496632922558,44.0379403546248,44.04368231348558,44.0473583009863,44.04931128921306,44.05159926997638,44.05323300298571,44.05410723506622,44.05564035632841,44.0558082184878,44.06036519905688,44.0626778836344,44.06328618087914,44.06368017035422,44.06271215627898,44.06278315039047,44.06411013756077,44.06863512269039,44.07141010408751,44.07420409566274,44.08091108488868,44.085042080938,44.08696507496996,44.08890456851626,44.09041983192157,44.09217679333944,44.09740101884675,44.09842000036807,44.09785897420932,44.09857095627208,44.10390690497092,44.10401973941136,44.10518690286026,44.11092990888469,44.11756590865322,44.12048090615219,44.12885387400888,44.12923355004882,44.13034286380679,44.13290082321055,44.13310605078056,44.13311777024303,44.13478672953982,44.13680472009426,44.14025984171419,44.14350869923648,44.14753968946375,44.15433564586081,44.15926262480529,44.16423560865862,44.17835059490827,44.18030858934014,44.18053851022087,44.18263284106958,44.18487856635786,44.19024410769231,44.19300362293829,44.19657453378725,44.19916751864398,44.20057551382379,44.2027285138455,44.20779339288764,44.20957551952402,44.21292152027566,44.2165555174513,44.22628650575946,44.23110550394793,44.23341846866014,44.23514950716237,44.23629220321997,44.24639852863776,44.24796258803336,44.25177253449124,44.25417153363129,44.25606053144006,44.26287151864454,44.26544751780997,44.27300852269923,44.27469052159176,44.27717251719018,44.27972450878308,44.28161450251164,44.28649647084939,44.28781146676806,44.29111121871835,44.29181546216395,44.29481946200391,44.29709546453664,44.30106947260325,44.30823049000509,44.31039249242319,44.31139249278009,44.31809448819305,44.32267148350247,44.33354846917305,44.33547346315502,44.33883492230413,44.34097843206265,44.34879641273115,44.35298240524973,44.35940438914339,44.36211237909279,44.36337485993632,44.36582138344038,44.36584236244981,44.36751635067404,44.36837234138102,44.36844832757151,44.36905651312268,44.36911931910132,44.37180030193775,44.37496628627957,44.37711828445563,44.37882528224571,44.37962628067793,44.38121727379431,44.38223303394789,44.38857871058692,44.38873126264603,44.39408995060771,44.39439825857782,44.40137525563215,44.40272925426166,44.40412425171743,44.40401724585442,44.40486924262307,44.40718901796826,44.40910124099547,44.41200024201028]}]],[[{"lng":[-90.55222375693617,-90.55196180426938,-90.55096291101295,-90.54954394589572,-90.54894399251744,-90.54881314545484,-90.54885222539785,-90.54885122596923,-90.54843446346027,-90.54848546258749,-90.54998545630653,-90.5499304025611,-90.54971375885616,-90.54655536698654,-90.538461683444,-90.53796440209571,-90.5378313500958,-90.52777838888053,-90.52579060207225,-90.52550044178444,-90.51280548564399,-90.51073345013222,-90.50591151222173,-90.49736152293944,-90.48320548093133,-90.47883863376346,-90.47376274829098,-90.47215837964828,-90.44861695395771,-90.43759904387403,-90.41813917729506,-90.41669919093029,-90.41562320432982,-90.41459922872292,-90.41446722972455,-90.4106722650357,-90.40846728194774,-90.40784628833318,-90.40777829556944,-90.40559632634528,-90.40273235470717,-90.4020223638725,-90.40094437353387,-90.4004323762825,-90.40004437931083,-90.39874539459308,-90.39557143986005,-90.39488944699121,-90.39242246520951,-90.39197047152926,-90.3921454718388,-90.39285946739609,-90.39465545295806,-90.39527544977321,-90.3933234696143,-90.39211647926656,-90.39127848341141,-90.38973949627325,-90.38723151488699,-90.3859585246241,-90.38442753415015,-90.38332153954681,-90.38026156013333,-90.37863857679042,-90.37685358898085,-90.37620458718632,-90.37430759941935,-90.37273561040075,-90.36996762789575,-90.36708664832271,-90.36624465681881,-90.36622166055598,-90.36473967259447,-90.36383667827187,-90.3624316846562,-90.36068869778808,-90.36010470409209,-90.35972771294003,-90.35852372314129,-90.35734573316002,-90.35553874586807,-90.35032178271622,-90.34886979143461,-90.34840879266847,-90.34805978714893,-90.3473477901213,-90.3458027996251,-90.34538779831325,-90.34751777853344,-90.34774177380253,-90.34680977497,-90.34561578348311,-90.34359880498802,-90.34233981566905,-90.34135937073084,-90.34067282765751,-90.33940783238204,-90.33982282589537,-90.34171481032564,-90.34311479875096,-90.34405078913703,-90.34434178297899,-90.34255879424961,-90.33861182242424,-90.33692483163503,-90.33506584894894,-90.33189087349554,-90.33168087744441,-90.33257387424902,-90.33065688921832,-90.32926390523194,-90.32787791111905,-90.32734991756531,-90.32755191973801,-90.32804792546602,-90.32668994419633,-90.32470296203856,-90.32288897135915,-90.320666989006,-90.32043199224697,-90.32024899664457,-90.31845201677562,-90.31716702278315,-90.31520004124209,-90.31697403595253,-90.31633504848479,-90.3138140724576,-90.31086309845378,-90.31038272852381,-90.31033311421156,-90.31129011867174,-90.3106091318021,-90.31172212730824,-90.31294012278801,-90.31189013922631,-90.31443814095459,-90.31778112333075,-90.31710813586733,-90.31698714924065,-90.31389817984409,-90.31384318029934,-90.3125851865363,-90.31157519754537,-90.30854122134379,-90.30838021761321,-90.30772022078335,-90.3065622298964,-90.30355025967836,-90.29828830125955,-90.29667630830656,-90.29580031858495,-90.29441532820277,-90.29431532401443,-90.29516931126241,-90.29475431179178,-90.29285833061492,-90.28571139987281,-90.28342741856579,-90.28168042390885,-90.28227041434755,-90.27892443816958,-90.27836043467603,-90.27713544135445,-90.27260349584117,-90.27197550818462,-90.27180051220171,-90.27306950504287,-90.27506448985848,-90.27656348631493,-90.27758148652229,-90.27682549530154,-90.27472550816873,-90.27338752842762,-90.27042656346617,-90.27043656830982,-90.27105056640423,-90.27264755866474,-90.27308656480739,-90.27298057641214,-90.27173558917578,-90.27071758610785,-90.26848460369597,-90.26657161614619,-90.26432564162832,-90.26514764296913,-90.26527364865866,-90.26302267343814,-90.26050869456816,-90.25865470671259,-90.2571647125847,-90.25203675623585,-90.24819874442706,-90.24604771730617,-90.24339967807174,-90.23628756895711,-90.23159148969948,-90.23036747346414,-90.22940646884875,-90.23092550698284,-90.23102451502193,-90.2303285135344,-90.22873949201126,-90.22235539346588,-90.22053636787673,-90.21659832049326,-90.21487030390099,-90.21484728528694,-90.21227220384625,-90.21119618267331,-90.21220117977691,-90.21175716224958,-90.20949610254506,-90.20861708193333,-90.20689105262213,-90.20570002179807,-90.20563698432059,-90.20401293816894,-90.20182681788728,-90.20173088842914,-90.1978768220949,-90.19584378814335,-90.19339774877116,-90.19241071618798,-90.19266070367223,-90.19067767955353,-90.1889996622248,-90.18863664954755,-90.18941826212084,-90.18942964950494,-90.19200866854877,-90.19208011363126,-90.1932976616385,-90.19075260395539,-90.18938857539499,-90.18803394099852,-90.18769054991374,-90.18284348561178,-90.18033945052849,-90.17994645131935,-90.18143147755406,-90.18028246674453,-90.17832843243656,-90.17805641618013,-90.17917681844165,-90.17921540650423,-90.17912759512475,-90.17892737942843,-90.1784560646401,-90.17691834302438,-90.17676633328294,-90.17830131911285,-90.17793328419211,-90.176091340474,-90.17604290660138,-90.17455924286314,-90.17175021387048,-90.17040719616462,-90.16926818785065,-90.16867519057278,-90.16777318862741,-90.16692216166975,-90.16685514770737,-90.16614690400348,-90.16342508403388,-90.16342475727808,-90.16342006305047,-90.16241204150151,-90.16235201924687,-90.16050720646791,-90.16025499107174,-90.1596379753888,-90.16059396803709,-90.15860594579222,-90.15824392637327,-90.15890691796693,-90.15772288655623,-90.15886589058083,-90.1589748842898,-90.15885107668306,-90.15785384115995,-90.15586480856209,-90.15400878733492,-90.15447078229873,-90.15343576457953,-90.15406676283087,-90.15293873998399,-90.14998370379665,-90.14834968606704,-90.14677267159688,-90.14681865913363,-90.14755566087619,-90.14746665385398,-90.14540262790786,-90.14437260546012,-90.14483260530027,-90.14436159271276,-90.14386358526421,-90.14185456610568,-90.14079555200179,-90.14144255163554,-90.14073454179696,-90.13941251938172,-90.13750449946562,-90.1352554697955,-90.13396845931013,-90.13225244095723,-90.13425244359838,-90.13282542761972,-90.13358643047776,-90.13465842168846,-90.13466542154725,-90.13387339711471,-90.13116837253827,-90.12997835933598,-90.13103836152295,-90.12651931694239,-90.12292527449874,-90.12275926810982,-90.1224832554412,-90.1206632436152,-90.12097524092759,-90.11975923316675,-90.11969323277393,-90.11882922450286,-90.11684619101096,-90.11649518119164,-90.11674316765621,-90.11746816609048,-90.11854617162317,-90.12020018310503,-90.12182818323987,-90.12190517784404,-90.12355118613374,-90.12345518201906,-90.12189316570388,-90.12020015920679,-90.1195741510268,-90.11879313666878,-90.11799412772928,-90.11855512895264,-90.11872612061072,-90.12108613041511,-90.12138212922139,-90.12125012368263,-90.12049111775639,-89.9905034633063,-89.92915888683407,-89.92892333641281,-89.92924635034606,-89.92883140548543,-89.928808412576,-89.9289114131775,-89.92959041530273,-89.92971941565246,-89.92892141558083,-89.92881141679524,-89.92880741717877,-89.92855042041226,-89.92837442162272,-89.9281314215617,-89.92878542574961,-89.92883842557366,-89.93468742552383,-89.98275042506305,-89.99635942492573,-90.00013442485316,-90.01196541959858,-90.0439594053895,-90.16742135055644,-90.30206432865789,-90.30076632448211,-90.30126634170861,-90.30056634550256,-90.30016836643136,-90.3007614165095,-90.30026944160986,-90.30367049275341,-90.30457256853239,-90.30318959194263,-90.30307359389732,-90.31177359703106,-90.36627461956095,-90.38707462663046,-90.42622864174382,-90.42627564178275,-90.4259797997595,-90.55222875627869,-90.55222375693617],"lat":[46.24127163563402,46.26230664885063,46.30088766276062,46.31255266750345,46.32906467376538,46.38466669409409,46.41383570469122,46.41404270476749,46.4999487365741,46.50064873735157,46.50074873563338,46.54409379059018,46.58390308261457,46.58297284439702,46.58119225426498,46.58108285361012,46.58114524888239,46.58585962560328,46.58679180624463,46.58692787808184,46.5899968994195,46.58988238968482,46.58961590832654,46.58551070714226,46.57871379922697,46.57661709309684,46.57417994791225,46.57356789150619,46.56458698729153,46.56149400640462,46.5660960507436,46.56506205265789,46.5631710530161,46.55732204947876,46.55732204975145,46.55509505548815,46.55506206003437,46.55450706080636,46.5522480588434,46.54758605910296,46.54557106331201,46.54438606374244,46.54398206566749,46.54438606711874,46.54438606794264,46.54274006923394,46.53631907036487,46.5357810713673,46.53621207707241,46.53536907732274,46.53484307649075,46.53445707461034,46.53449507075037,46.53394306892307,46.53261707200901,46.532619074637,46.53340707713649,46.53323408033248,46.53366508614471,46.53379308901545,46.53459409300152,46.53560409622911,46.53669510372915,46.5356031063556,46.53617711067142,46.53816111364242,46.53894511833666,46.53934712202454,46.54055112888319,46.54116513551075,46.54065313692854,46.53968413625446,46.53958813936143,46.53997714158443,46.54123214551108,46.54138214934502,46.54092715026569,46.53937014995486,46.53918515240664,46.53899615480175,46.53940115896525,46.54049517089827,46.5411791744644,46.5417811758515,46.54385917797968,46.54450917992381,46.54514518362061,46.54627618523973,46.5470851812712,46.54783718129767,46.5493521842623,46.54952818688653,46.54806219017675,46.54783319268299,46.54796611753979,46.54805919634018,46.54929019977754,46.55008819940722,46.55032919559128,46.55052319278035,46.55111819120376,46.55208919122474,46.55268319533049,46.55318720388016,46.55407820794515,46.55333721136211,46.55328021794369,46.55272921805476,46.55186721567743,46.55180921965011,46.55057022184111,46.55168022538507,46.55112722617204,46.5502642252536,46.54804822293595,46.54615222471598,46.54560422861194,46.54669623305843,46.54660823770605,46.54628923802967,46.54561923805377,46.54424524112643,46.54514124432895,46.54444924813987,46.54254624337023,46.54087624385681,46.53996424878154,46.53936725480751,46.53708950843772,46.53685425469444,46.53422925131293,46.53255625195533,46.53159324904819,46.53044324580691,46.52869724722089,46.52378623909904,46.52163923055419,46.52007523122608,46.51732123004426,46.51620123640088,46.51620123652457,46.51711523981771,46.51653424179276,46.51681424874873,46.51790524964372,46.51839425136064,46.51848625399788,46.51743426024948,46.51782227222692,46.51911527640532,46.51848227809007,46.51885028134784,46.51987828200971,46.5210582806105,46.52164828178746,46.52097428572263,46.51884830081944,46.51887030593747,46.52064731050307,46.52157730953436,46.52227331722825,46.52384931904117,46.52448932197825,46.52112933089609,46.51975833184672,46.51926733207748,46.51864032903295,46.51840032448619,46.51669732053845,46.51502431766286,46.51453931919809,46.51541832423445,46.51366432666411,46.51169233272606,46.5107583324046,46.51014433081077,46.50906732682096,46.50718832519649,46.50514132476115,46.50471732748436,46.50693533053815,46.50716933572506,46.50785734031253,46.50663434508925,46.50509134274834,46.50383134208467,46.50277934696932,46.50282435278591,46.50348535724271,46.50471836099959,46.50467937278528,46.50535936840233,46.50483435728928,46.50524734388889,46.50712330828131,46.5098442855172,46.50970727926924,46.50799427367214,46.50465827999881,46.50335627996597,46.50173427572008,46.50157526748892,46.50338223558768,46.50340522628546,46.50176120521122,46.49994919522247,46.4981831914643,46.49374016928127,46.49311316258048,46.49147916435268,46.49035315985372,46.48747114282505,46.48659113673092,46.48596312696726,46.48444811816935,46.48073111071621,46.47817709797455,46.47616440244239,46.47607608305358,46.47427506133609,46.47340405010474,46.47248903689358,46.47028602842418,46.46857802665275,46.4686290174618,46.46901701025813,46.46810300703571,46.46702176166302,46.46700600890052,46.46561301851488,46.46547622467276,46.46314502020489,46.46017500346738,46.45880799496768,46.45832932582576,46.45820798628393,46.4574029630971,46.45674795079663,46.45738695000821,46.45840795829331,46.45873795360208,46.45740994274674,46.45584993917227,46.453183766526,46.45309194017256,46.45223128501839,46.45026893460671,46.44988771114896,46.44864392334574,46.44767692124389,46.44392192227529,46.44023091514254,46.43991809689194,46.4399098713425,46.43965789997051,46.43983588830716,46.43943988205704,46.43994787792685,46.44111287699727,46.44212387451611,46.43985286783909,46.4381468652759,46.43741591794089,46.43460684626086,46.43442697035086,46.43184284269145,46.43037183666895,46.42749283277312,46.4266790765997,46.42656782312091,46.42528681905456,46.42300082006452,46.42265781171747,46.42048680765759,46.41845380780619,46.41570779987458,46.41476980316921,46.41377080237507,46.413276252668,46.40929279268642,46.4072927828234,46.40667277515114,46.4053727753872,46.40417377017504,46.40313077132141,46.40129476509328,46.3997867526429,46.39925974614023,46.39913374028405,46.3972067384604,46.39652974040672,46.39559573911326,46.39430473042716,46.39219172465972,46.39158872567605,46.39025672269396,46.38973672043952,46.38929471301049,46.38842470850518,46.38755070991668,46.38689370685292,46.38500070055615,46.38420669333085,46.38221168396404,46.3821196795453,46.38125067305254,46.37913267798458,46.378253672515,46.37777467463761,46.37498067580922,46.37494867580488,46.37182967060828,46.37093466119475,46.37011165674246,46.36920065940062,46.36689064336707,46.36360462986714,46.36262262869644,46.36060062650191,46.36061862096816,46.35972162134255,46.35974961767123,46.35975661747536,46.35924261454034,46.35515460616779,46.35363960425643,46.35065360325846,46.3494886046717,46.34931760767157,46.34963461262898,46.34783761614175,46.34673961564062,46.34650762015285,46.34584961943339,46.34447261411862,46.34506760974826,46.34418160743738,46.34225460407707,46.34137460133841,46.34101160266475,46.33921060203924,46.33865760811073,46.33813260857391,46.33721860762552,46.33685360534932,46.31164680243206,46.2997510798111,46.2724622365598,46.26823524484979,46.24276627479286,46.16101224293148,46.15607324111337,46.14332123678759,46.14132223612259,46.12839523033206,46.11280922416792,46.10837022243661,46.06931820708727,46.05482620137773,46.05405220095906,45.98488618638373,45.98196818758417,45.98206018920132,45.98226620266899,45.98234320645533,45.98194320781801,45.98194821316393,45.98194922762953,45.98195828345508,45.98135033254994,45.99635034021468,46.01035035759281,46.01265036087877,46.02475037876927,46.0534284213922,46.06795044289878,46.09665048551393,46.13995054940612,46.15370156984572,46.15485057155713,46.15465057029628,46.15505156479188,46.15435156155129,46.15405155686233,46.1540625568707,46.24045166320234,46.24085263520814,46.24127163563402]}]],[[{"lng":[-90.80571875854983,-90.80494875884214,-90.80029075275938,-90.79738475027884,-90.79754975361622,-90.79532175115337,-90.78991674347836,-90.78735773837562,-90.78706973620207,-90.78867873775121,-90.7909687375659,-90.79078273541907,-90.79478722959784,-90.79594074176522,-90.80161074979635,-90.80522375619741,-90.80571875854983],"lat":[46.97179005834975,46.97330705927753,46.97414605444524,46.97612205322434,46.97950605762718,46.98045505596856,46.98090904964896,46.97946404462291,46.97748404183471,46.9765350427113,46.97252704068419,46.97042803787009,46.96940324020188,46.96910804272101,46.96884904951419,46.97005705555836,46.97179005834975]}],[{"lng":[-90.87859288834153,-90.87585588506504,-90.87472241292785,-90.87376887941186,-90.87122487205222,-90.86338185834695,-90.86002901213509,-90.85650184952253,-90.85126884012941,-90.85122397664648,-90.85102183722216,-90.85417883957668,-90.85481683795784,-90.85542987832736,-90.85634783790525,-90.85883011431093,-90.85926061936438,-90.85968184284579,-90.86634285810483,-90.86955335066177,-90.87027386652775,-90.87524955086643,-90.87633687749543,-90.87906788621676,-90.87859288834153],"lat":[46.99132017672923,46.99210217426418,46.99094752090938,46.98997616868902,46.98694316131454,46.9853211490843,46.98601413135937,46.98674314216998,46.98539013367355,46.98496529722155,46.98305113026733,46.98086513139813,46.97851612909335,46.97766764240755,46.97639712822006,46.97639713136294,46.97639713190802,46.97639713244134,46.98115714727506,46.98296861583849,46.98337515527636,46.98467919574728,46.98496416517835,46.98888817402424,46.99132017672923]}],[{"lng":[-90.98310874755997,-90.98210303843612,-90.97922603442703,-90.97172595114085,-90.97072102587116,-90.95714336855551,-90.95592700643995,-90.95029299657547,-90.94278198905658,-90.93790398601448,-90.93850998979271,-90.93748698427022,-90.93089797602991,-90.92947397515513,-90.92828196819163,-90.92451215905389,-90.9242089564591,-90.92379495298533,-90.92718395656115,-90.92805195561104,-90.93128795891484,-90.93446896185573,-90.93431795567754,-90.93172094353805,-90.93101412708572,-90.93035293558373,-90.93112971510834,-90.93195793215743,-90.94641295232798,-90.95299296387387,-90.95848062395947,-90.96187797286426,-90.96518134017974,-90.96582897958433,-90.96780598676668,-90.97082499868417,-90.97381200580244,-90.97762400994873,-90.97933051646719,-90.98031801441788,-90.98223383287532,-90.98261496266116,-90.98388903129387,-90.98310874755997],"lat":[46.98217343674063,46.98585730183616,46.98665958374025,46.98875105838885,46.9890312920345,46.99103020270568,46.9912092762443,46.99031426766508,46.99318326218811,46.99645526064405,47.00104026498735,47.00310726048805,47.00209925356491,46.99808325205807,46.99423224496683,46.99038561497704,46.99007623374322,46.98791323011215,46.98672823275923,46.98502223141721,46.98384123385193,46.98247023592953,46.97805322933907,46.97187221711592,46.96957042272486,46.96741720896742,46.96533707889959,46.96311920476752,46.96265622209682,46.96413623247573,46.9624871611758,46.96146623957885,46.96207407652484,46.9621932455792,46.96518025251891,46.97034126405319,46.97220827062448,46.97123027394522,46.97145134910313,46.97157927786495,46.97572958110771,46.97655523562638,46.97931529415163,46.98217343674063]}],[{"lng":[-91.03727892447415,-91.03569892872009,-91.03532775383782,-91.0342259304448,-91.03558192210905,-91.03683091881121,-91.03725371835678,-91.03800891779547,-91.03727892447415],"lat":[46.94556916463069,46.94623116970481,46.94598422409063,46.94525117218488,46.94132516310268,46.94082515914757,46.94119663386977,46.94186015752909,46.94556916463069]}],[{"lng":[-91.5538884012384,-91.55330541987482,-91.55355942251953,-91.55345042947107,-91.55334143670646,-91.55330344194569,-91.55295245319959,-91.5523874554364,-91.55203447069374,-91.55228547098658,-91.55208047764592,-91.55193551257601,-91.55140851022581,-91.53711548388132,-91.51107743585251,-91.49969641773662,-91.4924294476246,-91.47018153542729,-91.44932761847843,-91.43866166124961,-91.43382168147809,-91.42741370664903,-91.42604264108077,-91.42573871365383,-91.4236467220377,-91.42218172839985,-91.42139773150431,-91.4193837399616,-91.4193307404804,-91.4110267742489,-91.40845978566819,-91.40655979325781,-91.40332580577385,-91.40170181162011,-91.3939848412823,-91.38599787250649,-91.38349688265102,-91.38405988065438,-91.38410388081826,-91.37632891152703,-91.37260092637277,-91.36555695492393,-91.35818998586663,-91.35219201217865,-91.33825107114117,-91.33757128381485,-91.33046422211766,-91.31481616748076,-91.30229621852703,-91.30163504934686,-91.29984606726404,-91.29034126601255,-91.2889640966667,-91.28867227384319,-91.28398029250248,-91.28249553241355,-91.27527832664097,-91.26586736454092,-91.25670640219037,-91.25080742750458,-91.23273446889155,-91.22679748108288,-91.22078749272909,-91.21111351025817,-91.20197652916669,-91.19268546346582,-91.18944650590649,-91.18656256713213,-91.17968857975616,-91.18175157184658,-91.1844705650275,-91.18959855483513,-91.19385854535,-91.19610453797149,-91.20084101747256,-91.20444051683744,-91.20010852107036,-91.19026053378053,-91.18863503420353,-91.17829355060236,-91.17513055871626,-91.17451240191922,-91.1682986904276,-91.16760256867651,-91.16598857416818,-91.1662715776304,-91.16460758203711,-91.16001759007995,-91.15389560105237,-91.14971361014788,-91.14793291966321,-91.14783861786756,-91.14426763067704,-91.14016664063594,-91.1346696497443,-91.13333865003857,-91.13488328499959,-91.1365136355263,-91.13591543441704,-91.13571443802826,-91.13494963632338,-91.13487469061231,-91.13473337645546,-91.12353210748364,-91.12311065382139,-91.1135056706424,-91.10549168544232,-91.0965667051276,-91.09371573097651,-91.09211665865745,-91.09091773925499,-91.08865895880464,-91.08095275854379,-91.07491676766617,-91.07387152958972,-91.06903942294994,-91.06822177516356,-91.06487968171899,-91.06104278935507,-91.05299280661275,-91.05126589233761,-91.04922180415569,-91.04427669132505,-91.03989184131451,-91.03662385344643,-91.03613086314549,-91.03451987064955,-91.03058477426023,-91.02401082494048,-91.01914291249622,-91.01618628651171,-91.01069063155599,-91.00520094689847,-90.99884995530785,-90.99515095300204,-90.99397955429299,-90.9846189514502,-90.97375696022193,-90.96842095670104,-90.96486695161261,-90.96407383547397,-90.95461374553685,-90.95453892982248,-90.94853592133157,-90.94293491072641,-90.93096888964567,-90.92505867371625,-90.92181287596982,-90.91383986795877,-90.91257887100143,-90.90859987091477,-90.90035586386992,-90.88923485140754,-90.8833308463981,-90.88097384527543,-90.87962285090163,-90.87112784229454,-90.86390083365822,-90.855875821643,-90.85081581283181,-90.84674480471627,-90.83946724167167,-90.83771779055827,-90.83172077838528,-90.82925976951897,-90.83058276415352,-90.83010675788907,-90.82487774739936,-90.81497673260849,-90.81014172946823,-90.80555572641408,-90.79982571820405,-90.79210970450011,-90.78560768930143,-90.78302868079554,-90.78322067364648,-90.78043166747375,-90.77268765675058,-90.76785565080907,-90.75455362629795,-90.75085961772817,-90.75103261405063,-90.75473561610067,-90.76156862287671,-90.76737163111278,-90.77180963640144,-90.7751176413643,-90.7770846436573,-90.77670891973932,-90.77661964214529,-90.77584135680708,-90.77082263155556,-90.77017162739718,-90.77258862592825,-90.78097362506823,-90.78412962849848,-90.78460662866544,-90.7850446262042,-90.78900962892757,-90.78878482831314,-90.78878162186804,-90.78614337563869,-90.78570061543292,-90.78939761631898,-90.79414361818078,-90.79374461505773,-90.79933461249588,-90.8071496153415,-90.80721278583181,-90.80803319655146,-90.81221861612278,-90.81484961361936,-90.82136061843349,-90.82206659655293,-90.82608761977879,-90.82805861509195,-90.83560861407693,-90.84406162073979,-90.85073162806911,-90.85653263174622,-90.8570236288559,-90.85982363032771,-90.86000136647034,-90.86354362862515,-90.85972530257321,-90.85966626246386,-90.8594466177916,-90.8608814574249,-90.86233461367091,-90.86633880814517,-90.86658761294461,-90.86669562527204,-90.87460081717012,-90.87614361582203,-90.88167161833807,-90.88502261826943,-90.88527161360982,-90.88339760804627,-90.87831727452601,-90.87039758945156,-90.85960299880128,-90.85322617271389,-90.85270557357457,-90.85383057245296,-90.86088554319106,-90.86388557337077,-90.86846957276533,-90.87341557326171,-90.87681757380773,-90.87887957352122,-90.88114857361246,-90.88253044577871,-90.88595257227819,-90.88524657134877,-90.88707257106904,-90.88891457196205,-90.89136257190421,-90.90430097561416,-90.90442757281357,-90.90573857230885,-90.90883157261352,-90.91156357192035,-90.91202757042535,-90.91175157026667,-90.91464446048347,-90.91491456930763,-90.91599656513188,-90.91537856067703,-90.91604855855113,-90.91831655731271,-90.91893955457437,-90.92115255338229,-90.92130654984651,-90.92058554875591,-90.92182254619581,-90.92606954340033,-90.92899253764774,-90.93205853549678,-90.93605253147959,-90.93904652696062,-90.94883251995924,-90.95161751576212,-90.95127951407851,-90.94940551415337,-90.94740651071452,-90.94835123670214,-90.94836450846418,-90.94544581217019,-90.94450317584423,-90.94448650587235,-90.94413880112394,-90.94196516852823,-90.94127669562431,-90.94109407936244,-90.94033050826971,-90.9355750089432,-90.93127453233024,-90.92973851096659,-90.92705690908635,-90.92730149150917,-90.92726248278287,-90.92730447572636,-90.92734147182621,-90.92734947112048,-90.9275514448301,-90.92438544821458,-90.92454144632541,-90.92432443473727,-90.92499042711955,-90.92499040330421,-90.92499039624511,-90.92440639125083,-90.92452538956528,-90.92437138455992,-90.92408136155505,-90.92428834848315,-90.92428833203233,-90.92498832171009,-90.92498831781946,-90.92565231269768,-90.92834229975799,-90.92706129118655,-90.92566928781667,-90.92450028627511,-90.9247512827756,-90.92475428329666,-90.92475428331385,-90.92458431019109,-90.96448028168783,-90.96648428024339,-90.98438426777575,-91.12518319202572,-91.1755291651159,-91.23838213244957,-91.25918212738978,-91.28038212863162,-91.30166613082844,-91.3281151326487,-91.37178413586179,-91.37518413595747,-91.42628413959427,-91.48845414342868,-91.50953511960297,-91.5305670622804,-91.55128300824775,-91.5508788527536,-91.5509578093981,-91.55110280608878,-91.55108469636126,-91.55123266583895,-91.55091166359213,-91.55127765710371,-91.55134461847369,-91.55141861806148,-91.55121758401883,-91.55137358296825,-91.55182346321085,-91.55162239506238,-91.55344239418591,-91.5538884012384],"lat":[46.51759265176735,46.55508665228675,46.56049665243342,46.57463865264845,46.58942365287209,46.60013965304292,46.62355665334332,46.62894065328076,46.66142965370231,46.66151365377682,46.67589465394606,46.74963765506895,46.75566763940245,46.75478963729472,46.75745462267749,46.76124461052756,46.76666459534713,46.76891258277049,46.77330456807171,46.77633756010295,46.78030555270887,46.78030555136737,46.78140649926127,46.7816505490537,46.78216754790597,46.78406654493674,46.78413754470643,46.78582154203882,46.786788540691,46.79018153519346,46.79418452990051,46.79450752940576,46.79384253005599,46.79219853191382,46.79008353366814,46.78948453349454,46.7903575323848,46.79098853181903,46.79195953087051,46.79224553002969,46.79272052935799,46.79498452715116,46.80023752326539,46.80741851897618,46.81770551573776,46.81797009292593,46.82073620300089,46.82682651922977,46.83034452316422,46.83035536319455,46.83038469399397,46.83054052755868,46.83293428928061,46.83344152851119,46.83354553041321,46.83339111669221,46.83264053367352,46.83394553786047,46.83688854301705,46.8411365479641,46.86003659839587,46.86361161428762,46.86569162950444,46.86669765253166,46.87109367693862,46.87991825030119,46.88299458432409,46.88573372469644,46.88573374109217,46.88023473160312,46.87766872307269,46.8763277099324,46.87368369785976,46.86876368880117,46.86311238451128,46.85881766210598,46.85401866833908,46.84841168612465,46.84784785055767,46.84426070939816,46.84440894044149,46.84443790985767,46.84472911040815,46.84476173359048,46.84820474025366,46.85301474391084,46.8549437493979,46.85522776004781,46.85586677451318,46.8580757861093,46.86283191989718,46.86308379520818,46.87030281047259,46.87320282288993,46.87249183500615,46.87034283591479,46.86578625526069,46.8609768190798,46.8602160635279,46.859960448625,46.85898782063702,46.85897001332297,46.85893643667745,46.85627498323055,46.85617484463534,46.8565938668843,46.85762188624022,46.86153191110098,46.87988393925843,46.88147730689367,46.88267194918428,46.88288479965078,46.88361097398612,46.88205298638044,46.88146877821856,46.87876800006448,46.87831099746455,46.87876164707421,46.87927901564307,46.88132703738179,46.88236904677323,46.8836024369689,46.88658628767471,46.88923207939998,46.89359609336781,46.89988610340363,46.90305511181246,46.90521729656201,46.90882943016988,46.91150416198933,46.91250109614356,46.91435415649214,46.91620520384787,46.91597721516902,46.91757921329674,46.91847177628849,46.92560421315002,46.94130622393141,46.94391222137217,46.94378221685447,46.94337129782464,46.93846995892272,46.9384311963767,46.93820318878934,46.93603317885304,46.93238315917274,46.93169956555498,46.93132414668248,46.93340214008189,46.93710914381444,46.9413071449311,46.94473913972832,46.94714812950924,46.94984012598742,46.95168312561806,46.95809013270311,46.96113112629609,46.96266411936988,46.96223410880638,46.96026296663605,46.9586770927671,46.95767981521173,46.95744007997322,46.95387306794688,46.94855505806692,46.94147805055732,46.93596104286787,46.93255203220311,46.93101001837866,46.93450001698498,46.93783501564635,46.93738000816374,46.93378499442893,46.92643297764258,46.92056596743314,46.91204695728835,46.90901295035069,46.90793394004731,46.90814193468347,46.8982719076458,46.89303689729557,46.88796489156723,46.88488189213592,46.88317189780611,46.88482290629639,46.88482291129414,46.8860339164787,46.88596491861406,46.88505348654985,46.88483691672771,46.8842409513126,46.88039790487928,46.87629789924081,46.8711668957678,46.8589908902534,46.85890789358164,46.85849289359378,46.85512288995717,46.85328689199072,46.84570995600429,46.84560188232348,46.84252778157528,46.84201187465436,46.83861387440667,46.83518287518157,46.83217787105573,46.82316286570339,46.81793186720745,46.81787756975283,46.81717239533098,46.81357486689977,46.80836786298492,46.80698586779295,46.80652168780706,46.80387786856607,46.79741686223285,46.78976085979212,46.78894686701598,46.7902468752664,46.78888687915209,46.7858698756195,46.78498187716395,46.7847709347386,46.78056687486806,46.77443444440664,46.77433962291549,46.77398686212968,46.77108041095067,46.76813685706282,46.76462788944718,46.76440985608102,46.76436258661187,46.76090303489494,46.7602278593975,46.75862786238093,46.75634286237052,46.75226985700782,46.74698884882115,46.73772935412963,46.72329481092365,46.70882777840654,46.70028148264662,46.69958376964226,46.69345876401093,46.6880028271343,46.68568276415716,46.68037676223875,46.67853576438,46.67793476657531,46.67620176638989,46.67531776731063,46.67394481158986,46.6705447660135,46.66889376358884,46.66773676381333,46.66891476665499,46.6680507677181,46.66623355715392,46.66621577646168,46.66512977631162,46.66495277866267,46.66339577913809,46.66113177693246,46.66094277648995,46.65927088162298,46.65911477699041,46.65313577101586,46.64690676337123,46.64393376049918,46.64230576044521,46.63861675669865,46.63720975683715,46.63253675156998,46.63097974920667,46.627792746503,46.62500474660096,46.6184917413151,46.61667974157447,46.6130547404145,46.60879373771295,46.60435073991388,46.60095373799088,46.59911173555011,46.59850373342119,46.5941217267385,46.59218197527059,46.59215472512533,46.58877541584715,46.58768401768398,46.5876647169459,46.58771909794118,46.58805905390626,46.58816673101293,46.58819529218157,46.58831471463847,46.58728162771594,46.58634739013868,46.58601370412888,46.58517171292209,46.56028167248328,46.54932065974126,46.54052364956586,46.5356786439708,46.53480364296119,46.50217160523599,46.50216960319625,46.499948600764,46.48207359240955,46.47164458793925,46.43563357125634,46.42495956631137,46.41646356226987,46.41410756120593,46.40629155758582,46.37104754139865,46.35161753245804,46.32674752103266,46.31225251409808,46.30636951137271,46.29967550796427,46.28435049933628,46.26935949292144,46.26207249039524,46.25790548925944,46.24352448289966,46.24181748222953,46.24176148220761,46.15461744819855,46.15510942706076,46.15515442600293,46.15465441629877,46.15545440946065,46.15725741038091,46.1579094111698,46.15745541435505,46.15775442168093,46.1567544289938,46.15680443817658,46.15665245338604,46.1568024545199,46.15676047228551,46.15718249354019,46.15668350335937,46.15765051451928,46.1570465267389,46.2439984642001,46.26803647374168,46.26961747506282,46.33103252194505,46.34790753491602,46.34959453602002,46.35273953862919,46.37429755511385,46.37444155526119,46.39373756988701,46.39416257028232,46.46100562139828,46.50232565110054,46.50282065143345,46.51759265176735]}]],[[{"lng":[-88.54214894333593,-88.5420559243546,-88.54202392096786,-88.54192190268446,-88.541852895761,-88.54168589002862,-88.54154988262823,-88.54158887718822,-88.541628870849,-88.54170886584924,-88.54157687556095,-88.54136987869522,-88.54092188634971,-88.54091488636242,-88.54019891102782,-88.54003891834203,-88.53991792748349,-88.53961693787494,-88.53930994656253,-88.53926594812721,-88.53917095228326,-88.53931595347274,-88.53899495335411,-88.53887295606313,-88.5387729589328,-88.5384579644773,-88.53828796835813,-88.53708998559266,-88.53689698656923,-88.53584099849353,-88.45760685977665,-88.42930080267553,-88.41798477957371,-88.41685677730685,-88.41400877122616,-88.3992497410657,-88.37929070048129,-88.31988858026777,-88.31056656169406,-88.30008254085783,-88.27224848525745,-88.26617147309813,-88.24182443406639,-88.24179543405361,-88.22172841770733,-88.21922041581523,-88.18222538523295,-88.14267635242915,-88.13834034897847,-88.13640634725475,-88.1273083400244,-88.12176033543953,-88.11785333227684,-88.11321532851733,-88.10312032059143,-88.10305532054281,-88.08287130467515,-88.08276830459015,-88.06451729049023,-88.06335028956009,-88.0634002829153,-88.06366924102736,-88.06409223127596,-88.06427319572279,-88.06431318912621,-88.0644931518509,-88.06440014956947,-88.06561807878171,-88.06560107584778,-88.06558606364439,-88.06557305858841,-88.06566505165929,-88.06597901716032,-88.06602201168442,-88.06614099292354,-88.06626396337015,-88.0662659628757,-88.06659891759816,-88.06672189475884,-88.06682187163561,-88.06683386960782,-88.06685784859305,-88.06687683706585,-88.06689282571654,-88.06689382565742,-88.0669347970026,-88.06698977941484,-88.06714375085328,-88.06724873369494,-88.06745871369253,-88.06749270427844,-88.06773569121849,-88.06779168219144,-88.0680306689591,-88.06832464733955,-88.06861662573172,-88.06865862237207,-88.06888360405947,-88.06909558238519,-88.06924356081758,-88.06928654028479,-88.06937851672951,-88.06949247284754,-88.0695834544847,-88.06958344884666,-88.06958242261493,-88.0695563770621,-88.0695823003329,-88.06958228333703,-88.06992021207473,-88.0947362992728,-88.12362440061703,-88.12497740548604,-88.13740844879101,-88.16102553147628,-88.16853355800222,-88.18356961083845,-88.18801262646369,-88.18809662675949,-88.1979466612686,-88.21284871335048,-88.22274374794981,-88.24559682859632,-88.24566982885418,-88.30638108934231,-88.31918114508885,-88.33409420989516,-88.34382325218864,-88.36554434651516,-88.38195941780965,-88.38261642065906,-88.4240676007761,-88.42409960091511,-88.42609460957358,-88.46351677215451,-88.54143999512564,-88.54153299527039,-88.54204697636636,-88.54187397422167,-88.54216596527127,-88.54214894333593],"lat":[42.90499274165634,42.92704178778398,42.9309417959437,42.95213684029105,42.96009185693849,42.96642987020921,42.97478188769524,42.98123390119466,42.98874191690324,43.00599794708882,43.01938896190745,43.02413696717466,43.03555697983569,43.03559197987492,43.07038401837723,43.08054302961229,43.09303804342479,43.10760705953507,43.11989007311622,43.12207407553026,43.12782308188368,43.12908308327061,43.1296420838986,43.1335180881832,43.13755609264562,43.14561510155337,43.15113710765448,43.17649813566774,43.17818613753228,43.19605015724459,43.19568820386701,43.1950902347801,43.19469924706796,43.19468824831527,43.19440925128539,43.19396526743943,43.19357128949151,43.19298135570425,43.19304736616512,43.19314137792807,43.19324440910109,43.19325641590301,43.19320244848727,43.19320644853857,43.19301948412071,43.19305448856345,43.19257355426877,43.19207162465467,43.19206963235861,43.19200563582157,43.19200565198688,43.1919466618728,43.19192766882501,43.19190367707944,43.19193669500199,43.19193769511695,43.19199473094933,43.19199373113297,43.19212076347372,43.19211976554744,43.19002776692398,43.17684677566334,43.17367977709744,43.16249278456225,43.16041478593506,43.1486827937628,43.14799579442194,43.1254188076786,43.12450380834638,43.12067981102372,43.11909781214542,43.11689281348205,43.10595782038713,43.10422382149403,43.09829182533636,43.08896783150382,43.08881183160705,43.07446584075958,43.06724284545453,43.05993785025149,43.05929585066546,43.0526828551561,43.04905285760707,43.04547986002532,43.04546086003606,43.03643886613892,43.03088786982133,43.02184287566068,43.01640187913802,43.01001688299901,43.00704088495345,43.00281988723827,42.999951888962,42.99548988285368,42.98823287310874,42.98096286329408,42.9798328617727,42.97366885346243,42.96639284376273,42.95918183429826,42.95237682564552,42.94453581552644,42.92995779685821,42.92381778882861,42.92195478648826,42.91328777560418,42.89825975682749,42.87288172484532,42.86726571779039,42.84332568613596,42.84331257007414,42.84322343480865,42.84327142857716,42.84308537003141,42.84286625896598,42.8429172239444,42.84285515337447,42.84284213253217,42.84284213213882,42.84271408562536,42.84236201467586,42.84207396730142,42.84200485978857,42.84200485944589,42.84209678686096,42.84248777620974,42.84254776244794,42.84285275430121,42.84283273386482,42.84278271832304,42.8428047177708,42.84258867833042,42.84258867830047,42.84260667647952,42.84259164139816,42.84299661189492,42.84299761190552,42.86608766025996,42.8682686648123,42.87931868794676,42.90499274165634]}]],[[{"lng":[-90.02637581491797,-90.02595081279401,-90.02445481145021,-90.02349281111815,-90.01935481069837,-90.01695081019022,-90.01096481131583,-90.00784281162076,-90.00479881171648,-90.00391781141944,-90.00502881013104,-90.00939980791262,-90.01045980701817,-90.01068680635167,-90.01030880531584,-90.00970380523825,-90.00705380558668,-90.00319180678001,-89.99955680766679,-89.99548480426468,-89.99408680313178,-89.99141380142363,-89.99019080113217,-89.98574379908841,-89.98183479675177,-89.976916793401,-89.97473479101109,-89.97544779073024,-89.97848779250225,-89.983823796048,-89.98469279636694,-89.98349679474332,-89.97716079045279,-89.97465978862242,-89.97377078751234,-89.97268278468654,-89.97177778335028,-89.97155078222445,-89.97031578064527,-89.9701987793603,-89.96938477657606,-89.96974877603458,-89.970932776203,-89.97120677557805,-89.97047977438038,-89.9671917717569,-89.9643317698219,-89.9608607672846,-89.9549157636712,-89.94928175924477,-89.94171075354132,-89.9405497531455,-89.93837575454188,-89.93675575442472,-89.9329877528821,-89.92868174979365,-89.92493574650645,-89.92338474491986,-89.92279974305903,-89.92430074415999,-89.92310274210736,-89.92135973780235,-89.92116873606388,-89.92358473552196,-89.92557373586686,-89.92531073500446,-89.92364673259041,-89.92042772958179,-89.91731872732356,-89.913545724868,-89.90889472140462,-89.90713871996795,-89.90351471616567,-89.90134271267743,-89.90015770971745,-89.90094570861044,-89.9035927086089,-89.90844271255375,-89.91181371585118,-89.91886372233164,-89.92380872644394,-89.92623772803701,-89.9269417279918,-89.92631172632865,-89.92364372285859,-89.91949271873445,-89.91359171366706,-89.90986671034271,-89.90592970577177,-89.90501070418172,-89.90531170297047,-89.9064297031952,-89.90968570514664,-89.9135467085641,-89.92047571437588,-89.92247871574614,-89.92474071617345,-89.92267571264809,-89.91940270845789,-89.91702970593785,-89.91189970099619,-89.90798569650927,-89.90684369448809,-89.90676069319743,-89.90849869382441,-89.90809969207628,-89.90544168944911,-89.90195268700795,-89.89783168253811,-89.89758268114244,-89.89922368096749,-89.9016936816398,-89.90334868037341,-89.90278067524035,-89.90266767512215,-89.83827060723642,-89.81564158363044,-89.80860457627563,-89.72771648952913,-89.72591148724558,-89.72474348608118,-89.71706347718288,-89.60627434980765,-89.59797734024076,-89.59729442705425,-89.59715942850035,-89.59769650029982,-89.59802557935529,-89.59803265707106,-89.59794780524069,-89.59807781640981,-89.59791781698317,-89.59734793152342,-89.59732795789986,-89.59743297817546,-89.5973379795568,-89.59793799926543,-89.59780803083494,-89.59798204116298,-89.59834807314392,-89.59849808416067,-89.59890911388248,-89.59903915184007,-89.59904015191782,-89.5990941552258,-89.59925916585991,-89.59927516741776,-89.59965719484838,-89.59954521631323,-89.59998321608255,-89.65967118041311,-89.69978915621141,-89.71607414649884,-89.71873114493049,-89.74900312804537,-89.75891611891859,-89.75927311857617,-89.76997410835725,-89.77184710656876,-89.78489909412718,-89.78690609064809,-89.78922008334044,-89.78876908111388,-89.78606107850355,-89.78593407572633,-89.78669806593307,-89.78779906131919,-89.78739005766607,-89.78765405254325,-89.78689805314266,-89.78778404959799,-89.78830504752622,-89.79132804049975,-89.79351003631866,-89.79767402974797,-89.80507101493966,-89.80767000842444,-89.81060099825876,-89.8142819827993,-89.81918996473506,-89.82247695089634,-89.82378294404883,-89.82548793072185,-89.82690292342055,-89.82930791359131,-89.82992590814207,-89.83042890123318,-89.83199289435005,-89.83588787714083,-89.8385458583665,-89.84124784214555,-89.84282981163038,-89.8433438105552,-89.842902811302,-89.84612480510354,-89.8489837997404,-89.84957279872087,-89.85046279714817,-89.85175179485438,-89.85500478906619,-89.85689678579935,-89.85848578316802,-89.86075377968724,-89.86403977438189,-89.86512977282571,-89.86961076573166,-89.8735477598626,-89.8769627547851,-89.88977573621082,-89.89360973142898,-89.89706172826502,-89.8990007279001,-89.9028367242263,-89.90418372261189,-89.91013871502869,-89.91369371136518,-89.91619070981083,-89.91738471337423,-89.91817371395584,-89.9207267133898,-89.92230571277854,-89.92602271010755,-89.9285267079463,-89.93605770266176,-89.94013270128339,-89.94399969865889,-89.94877769524638,-89.95276569347753,-89.9584316923353,-89.96056369179902,-89.96121869164305,-89.9636136943631,-89.96394169678723,-89.96285769993865,-89.9628547037573,-89.96374770593438,-89.96280570825756,-89.96294570973892,-89.96426471002506,-89.97059171447707,-89.9740937152666,-89.97862571540465,-89.97954271693962,-89.98003372108414,-89.98067372158047,-89.98247072241553,-89.98404172529544,-89.98391972932241,-89.98271473305209,-89.97939073760919,-89.97636874030306,-89.97169274363566,-89.96914874481085,-89.96242474714616,-89.95906174913908,-89.95444675313162,-89.9520987562783,-89.95119775887649,-89.95153976142112,-89.95285676359872,-89.95574576629308,-89.95629977024112,-89.95564377667289,-89.95499077938813,-89.95480278242715,-89.95526578451329,-89.95744078708844,-89.96043178943115,-89.96227379188632,-89.96270879441335,-89.96240979617012,-89.96259880761345,-89.96311580993353,-89.96356281222674,-89.96553881622344,-89.96629881827056,-89.96815182102154,-89.97429282689971,-89.97724482914494,-89.98344083331057,-89.98676383359758,-89.99374083448897,-90.00109283629665,-90.00479383843602,-90.0058848388659,-90.00565783772269,-90.00470283679766,-90.00138283423392,-89.99992283302305,-89.99855783166636,-89.99846683115632,-89.99897483094723,-90.00027883112656,-90.00277283138423,-90.00362283112754,-90.00588983130177,-90.00926083197284,-90.01564083268903,-90.01677183260223,-90.01869883126203,-90.01777183005429,-90.01828682901407,-90.02006882791926,-90.0196608249791,-90.0221248234309,-90.02533582378985,-90.02494882323215,-90.02560382225771,-90.02542182151282,-90.0236578203419,-90.02357281876897,-90.02605381657554,-90.02637581491797],"lat":[44.08720661519247,44.09174861357309,44.09498261251373,44.0959836122241,44.09832861168746,44.10057461104355,44.10032661159303,44.10107861154954,44.10267761117793,44.10439361059602,44.10813460910348,44.111726607445,44.11354260669252,44.11534060600525,44.11882860472689,44.11970060444015,44.12160760389541,44.12242560383216,44.12253460443252,44.12585660724053,44.12677860829052,44.12672561098321,44.12488461289508,44.12209661837296,44.12169162242053,44.12253862701314,44.12569662803632,44.12800862647857,44.12865362319962,44.12839861795259,44.12925161676634,44.13213861689488,44.13243962314003,44.13297262545455,44.13457062576406,44.14095562453299,44.14309862466659,44.14601062383778,44.14810362432774,44.15167162315273,44.15812962164051,44.16053762039753,44.16271761839894,44.16522161720996,44.16711461726674,44.16728762056992,44.16645562379644,44.16601762750437,44.16344063449694,44.16369464016277,44.16343464798713,44.16229964956472,44.15540765415368,44.15299665662751,44.15036066135126,44.15030466573548,44.15148766913548,44.1524166703976,44.15530867002337,44.15532866849064,44.15768566891929,44.16368166869191,44.16685766782705,44.17177266370703,44.17431566081036,44.17565166063154,44.17782066161607,44.17858166467759,44.17802666806485,44.17684167234122,44.1762616773179,44.17628667911661,44.1778306823463,44.18085468360911,44.18432068371757,44.18742568190354,44.19143467786587,44.19186167269291,44.19113066943338,44.19031366238928,44.19057365717312,44.19158965431127,44.19294265312439,44.19525165300119,44.1975606550022,44.19847565902081,44.1981826652661,44.19824166912759,44.2002156725882,44.20160467309631,44.20427567191551,44.2057036702825,44.20757266626477,44.20779466214793,44.20885965453505,44.20980965211793,44.21320364860603,44.21642064969907,44.21858365242431,44.21908865475762,44.21917766013588,44.22055566381252,44.22224166446873,44.22444466383973,44.22639866136465,44.22888966097465,44.22889666378943,44.22712466805865,44.22786167218608,44.22984467181544,44.23297566907066,44.23615166542322,44.24139266196772,44.249473659964,44.24947166008577,44.24932072915672,44.24899475349963,44.24892076106051,44.24772480455128,44.24785680292463,44.24767880195118,44.24755779523866,44.24580069898512,44.24572569178301,44.1968047232526,44.19592672372875,44.15607375020226,44.11198377921886,44.06850680763165,43.98210089036547,43.97432090690404,43.97393090769683,43.89438107634559,43.87606111520713,43.86193714520587,43.8610111471401,43.84708117689368,43.82517122334372,43.81790423882696,43.79545128661513,43.78769330313956,43.76672834780756,43.73080243284872,43.73069543312491,43.72612944491692,43.71147548276515,43.70933948827876,43.67168458556215,43.64263766038093,43.6425976607747,43.64283369974351,43.64315872543323,43.64316873619101,43.6431557379878,43.64221276078767,43.64187876237516,43.64186676240848,43.64150076343416,43.64144176360038,43.64105276470529,43.6420047618465,43.6451657523502,43.64687774722127,43.65039773672743,43.65228173109126,43.65804471381162,43.66018570735159,43.66283369943553,43.66591069020143,43.66611868962063,43.66769268485344,43.6686026820941,43.67064667576714,43.67152767297269,43.67229867036448,43.67540766042191,43.67719565479175,43.6807466437463,43.68655062570879,43.69258460674062,43.69739259161352,43.69997458352101,43.70559956600072,43.70823955767509,43.71131654783735,43.71359854070299,43.71671453100705,43.71887952406368,43.72417150701909,43.73115048488632,43.73667846717804,43.75234741948085,43.7544104141617,43.75748140653778,43.76014739898682,43.76309839076308,43.76665338158887,43.7686803761953,43.76988937275568,43.77121736843282,43.77273136401164,43.77472735843097,43.77904634666118,43.78151833926486,43.78341533402352,43.78579632639679,43.7887803173254,43.79078431093041,43.79671529080252,43.79974628135821,43.80466626695449,43.81022625134706,43.81408723945312,43.8146762373179,43.81617723080801,43.81841522325612,43.82152121375135,43.82987419048185,43.83241218320422,43.83648317089983,43.83846916471703,43.84106115581861,43.84217015154934,43.84667913535842,43.85062012233475,43.85251311506098,43.85446410710824,43.8571160975419,43.86195408081244,43.86354307513633,43.86402807339776,43.86895805802173,43.87160905027316,43.87372804485062,43.87746703419499,43.88033102550151,43.88183702176837,43.88340001722922,43.88470901269875,43.89342798382673,43.89638497309991,43.89921596201452,43.90105595609235,43.90486594473138,43.90562394210988,43.90724593620554,43.91040992595128,43.9136909164903,43.91626490983865,43.91869390510844,43.91973890420629,43.92069490474499,43.92065290666052,43.91977491390582,43.9201319152564,43.92198691326151,43.92419790869059,43.9265879026001,43.92950989411624,43.93241288496075,43.9363608716531,43.94065785906841,43.94716984113653,43.94985483405068,43.9530108252734,43.95529281844879,43.95833080809172,43.96111879774107,43.96376078870853,43.96628278116213,43.96798777655322,43.97923674433977,43.98148673747617,43.9836957307847,43.98738071851427,43.98925071248949,43.99161270406252,43.9960606857022,43.99754367871601,44.00003366586774,44.00160166220839,44.00421465476089,44.00591264816322,44.00734164713163,44.00839164659205,44.01183664532453,44.01298564501488,44.01498664468403,44.01648264436253,44.02055064409671,44.02255164342345,44.02404564237972,44.02518964094956,44.02907263917734,44.03152463814957,44.03446663677507,44.03685863548841,44.04178863293044,44.04305863233441,44.04800663029611,44.05033262953703,44.05327562839616,44.05697562684814,44.06383562436409,44.06827162249493,44.06832462216828,44.06942862180232,44.07165662092768,44.07321462037645,44.07551561969834,44.07899361843366,44.08374161648216,44.08720661519247]}]],[[{"lng":[-90.31278995656936,-90.31264792125603,-90.31264792085267,-90.31246384727119,-90.31230177211584,-90.31251969668079,-90.31267753492109,-90.25013039892144,-90.23816941522516,-90.19236948499633,-90.09128163887966,-90.08081965490103,-90.07324266646152,-90.05672969163859,-90.04809070480209,-89.95778873342654,-89.95589573144876,-89.92410269779245,-89.91921269270948,-89.91411468722492,-89.90278067524035,-89.90334868037341,-89.9016936816398,-89.89922368096749,-89.89758268114244,-89.89783168253811,-89.90195268700795,-89.90544168944911,-89.90809969207628,-89.90849869382441,-89.90676069319743,-89.90684369448809,-89.90798569650927,-89.91189970099619,-89.91702970593785,-89.91940270845789,-89.92267571264809,-89.92474071617345,-89.92247871574614,-89.92047571437588,-89.9135467085641,-89.90968570514664,-89.9064297031952,-89.90531170297047,-89.90501070418172,-89.90592970577177,-89.90986671034271,-89.91359171366706,-89.91949271873445,-89.92364372285859,-89.92631172632865,-89.9269417279918,-89.92623772803701,-89.92380872644394,-89.91886372233164,-89.91181371585118,-89.90844271255375,-89.9035927086089,-89.90094570861044,-89.90015770971745,-89.90134271267743,-89.90351471616567,-89.90713871996795,-89.90889472140462,-89.913545724868,-89.91731872732356,-89.92042772958179,-89.92364673259041,-89.92531073500446,-89.92557373586686,-89.92358473552196,-89.92116873606388,-89.92135973780235,-89.92310274210736,-89.92430074415999,-89.92279974305903,-89.92338474491986,-89.92493574650645,-89.92868174979365,-89.9329877528821,-89.93675575442472,-89.93837575454188,-89.9405497531455,-89.94171075354132,-89.94928175924477,-89.9549157636712,-89.9608607672846,-89.9643317698219,-89.9671917717569,-89.97047977438038,-89.97120677557805,-89.970932776203,-89.96974877603458,-89.96938477657606,-89.9701987793603,-89.97031578064527,-89.97155078222445,-89.97177778335028,-89.97268278468654,-89.97377078751234,-89.97465978862242,-89.97716079045279,-89.98349679474332,-89.98469279636694,-89.983823796048,-89.97848779250225,-89.97544779073024,-89.97473479101109,-89.976916793401,-89.98183479675177,-89.98574379908841,-89.99019080113217,-89.99141380142363,-89.99408680313178,-89.99548480426468,-89.99955680766679,-90.00319180678001,-90.00705380558668,-90.00970380523825,-90.01030880531584,-90.01068680635167,-90.01045980701817,-90.00939980791262,-90.00502881013104,-90.00391781141944,-90.00479881171648,-90.00784281162076,-90.01096481131583,-90.01695081019022,-90.01935481069837,-90.02349281111815,-90.02445481145021,-90.02595081279401,-90.02637581491797,-90.02605381657554,-90.02357281876897,-90.0236578203419,-90.02542182151282,-90.02560382225771,-90.02494882323215,-90.02533582378985,-90.0221248234309,-90.0196608249791,-90.02006882791926,-90.01828682901407,-90.01777183005429,-90.01869883126203,-90.01677183260223,-90.01564083268903,-90.00926083197284,-90.00588983130177,-90.00362283112754,-90.00277283138423,-90.00027883112656,-89.99897483094723,-89.99846683115632,-89.99855783166636,-89.99992283302305,-90.00138283423392,-90.00470283679766,-90.00565783772269,-90.0058848388659,-90.00479383843602,-90.00109283629665,-89.99374083448897,-89.98676383359758,-89.98344083331057,-89.97724482914494,-89.97429282689971,-89.96815182102154,-89.96629881827056,-89.96553881622344,-89.96356281222674,-89.96311580993353,-89.96259880761345,-89.96240979617012,-89.96270879441335,-89.96227379188632,-89.96043178943115,-89.95744078708844,-89.95526578451329,-89.95480278242715,-89.95499077938813,-89.95564377667289,-89.95629977024112,-89.95574576629308,-89.95285676359872,-89.95153976142112,-89.95119775887649,-89.9520987562783,-89.95444675313162,-89.95906174913908,-89.96242474714616,-89.96914874481085,-89.97169274363566,-89.97636874030306,-89.97939073760919,-89.98271473305209,-89.98391972932241,-89.98404172529544,-89.98247072241553,-89.98067372158047,-89.98003372108414,-89.97954271693962,-89.97862571540465,-89.9740937152666,-89.97059171447707,-89.96426471002506,-89.96294570973892,-89.96280570825756,-89.96374770593438,-89.9628547037573,-89.96285769993865,-89.96394169678723,-89.9636136943631,-89.96121869164305,-89.96056369179902,-89.9584316923353,-89.95276569347753,-89.94877769524638,-89.94399969865889,-89.94013270128339,-89.93605770266176,-89.9285267079463,-89.92602271010755,-89.92230571277854,-89.9207267133898,-89.91817371395584,-89.91738471337423,-89.91619070981083,-89.91369371136518,-89.91013871502869,-89.90418372261189,-89.9028367242263,-89.8990007279001,-89.89706172826502,-89.89360973142898,-89.88977573621082,-89.8769627547851,-89.8735477598626,-89.86961076573166,-89.86512977282571,-89.86403977438189,-89.86075377968724,-89.85848578316802,-89.85689678579935,-89.85500478906619,-89.85175179485438,-89.85046279714817,-89.84957279872087,-89.8489837997404,-89.84612480510354,-89.842902811302,-89.8433438105552,-89.84282981163038,-89.84124784214555,-89.8385458583665,-89.83588787714083,-89.83199289435005,-89.83042890123318,-89.82992590814207,-89.82930791359131,-89.82690292342055,-89.82548793072185,-89.82378294404883,-89.82247695089634,-89.81918996473506,-89.8142819827993,-89.81060099825876,-89.80767000842444,-89.80507101493966,-89.79767402974797,-89.79351003631866,-89.79132804049975,-89.78830504752622,-89.78778404959799,-89.78689805314266,-89.78765405254325,-89.78739005766607,-89.78779906131919,-89.78669806593307,-89.78593407572633,-89.78606107850355,-89.78876908111388,-89.78922008334044,-89.78690609064809,-89.78489909412718,-89.78580709322634,-89.78831209073414,-89.78988908924812,-89.79060508854683,-89.7996610795298,-89.81134706794319,-89.83177904737045,-89.83787204163721,-89.88777799135984,-89.88862799035644,-89.89239998714451,-89.89779298172002,-89.90560297385757,-89.90936197007402,-89.93258794666127,-89.93507694442349,-89.95481292439111,-90.0310680052939,-90.07239017428603,-90.08585922930835,-90.08733923535605,-90.09211525486569,-90.0970272749327,-90.11869136343506,-90.12174737592059,-90.16281654360509,-90.17644759897327,-90.19200866438166,-90.19210866479145,-90.21599976198883,-90.21680076531942,-90.22655880588466,-90.231236825333,-90.24591888637003,-90.25012590277949,-90.2883780273194,-90.29664705469783,-90.30230207281484,-90.31240310601426,-90.3126900819053,-90.31266704869628,-90.31251798090645,-90.31241792098785,-90.31238390056315,-90.31222880478853,-90.31219278199356,-90.3121927819471,-90.31228666922648,-90.3122236008217,-90.31190450894195,-90.31185449732506,-90.31184148572029,-90.31177344334154,-90.31190039583454,-90.31205532448134,-90.31223828247623,-90.31226927524943,-90.31229926438235,-90.31221123896044,-90.31220523179128,-90.31220318460662,-90.31230015397544,-90.31269102157954,-90.31269202143157,-90.31278995656936],"lat":[44.00508459844617,44.0255516006667,44.02578460069155,44.06829360521133,44.11160360973762,44.15519861442312,44.24875062449976,44.24844255938562,44.24900955896616,44.24900555838379,44.24909155706833,44.24901155696107,44.24899055687158,44.24895455667388,44.24894155656868,44.2492166010915,44.24916560313842,44.24940063713316,44.24924364242682,44.24944364782483,44.249473659964,44.24139266196772,44.23615166542322,44.23297566907066,44.22984467181544,44.22786167218608,44.22712466805865,44.22889666378943,44.22888966097465,44.22639866136465,44.22444466383973,44.22224166446873,44.22055566381252,44.21917766013588,44.21908865475762,44.21858365242431,44.21642064969907,44.21320364860603,44.20980965211793,44.20885965453505,44.20779466214793,44.20757266626477,44.2057036702825,44.20427567191551,44.20160467309631,44.2002156725882,44.19824166912759,44.1981826652661,44.19847565902081,44.1975606550022,44.19525165300119,44.19294265312439,44.19158965431127,44.19057365717312,44.19031366238928,44.19113066943338,44.19186167269291,44.19143467786587,44.18742568190354,44.18432068371757,44.18085468360911,44.1778306823463,44.17628667911661,44.1762616773179,44.17684167234122,44.17802666806485,44.17858166467759,44.17782066161607,44.17565166063154,44.17431566081036,44.17177266370703,44.16685766782705,44.16368166869191,44.15768566891929,44.15532866849064,44.15530867002337,44.1524166703976,44.15148766913548,44.15030466573548,44.15036066135126,44.15299665662751,44.15540765415368,44.16229964956472,44.16343464798713,44.16369464016277,44.16344063449694,44.16601762750437,44.16645562379644,44.16728762056992,44.16711461726674,44.16522161720996,44.16271761839894,44.16053762039753,44.15812962164051,44.15167162315273,44.14810362432774,44.14601062383778,44.14309862466659,44.14095562453299,44.13457062576406,44.13297262545455,44.13243962314003,44.13213861689488,44.12925161676634,44.12839861795259,44.12865362319962,44.12800862647857,44.12569662803632,44.12253862701314,44.12169162242053,44.12209661837296,44.12488461289508,44.12672561098321,44.12677860829052,44.12585660724053,44.12253460443252,44.12242560383216,44.12160760389541,44.11970060444015,44.11882860472689,44.11534060600525,44.11354260669252,44.111726607445,44.10813460910348,44.10439361059602,44.10267761117793,44.10107861154954,44.10032661159303,44.10057461104355,44.09832861168746,44.0959836122241,44.09498261251373,44.09174861357309,44.08720661519247,44.08374161648216,44.07899361843366,44.07551561969834,44.07321462037645,44.07165662092768,44.06942862180232,44.06832462216828,44.06827162249493,44.06383562436409,44.05697562684814,44.05327562839616,44.05033262953703,44.04800663029611,44.04305863233441,44.04178863293044,44.03685863548841,44.03446663677507,44.03152463814957,44.02907263917734,44.02518964094956,44.02404564237972,44.02255164342345,44.02055064409671,44.01648264436253,44.01498664468403,44.01298564501488,44.01183664532453,44.00839164659205,44.00734164713163,44.00591264816322,44.00421465476089,44.00160166220839,44.00003366586774,43.99754367871601,43.9960606857022,43.99161270406252,43.98925071248949,43.98738071851427,43.9836957307847,43.98148673747617,43.97923674433977,43.96798777655322,43.96628278116213,43.96376078870853,43.96111879774107,43.95833080809172,43.95529281844879,43.9530108252734,43.94985483405068,43.94716984113653,43.94065785906841,43.9363608716531,43.93241288496075,43.92950989411624,43.9265879026001,43.92419790869059,43.92198691326151,43.9201319152564,43.91977491390582,43.92065290666052,43.92069490474499,43.91973890420629,43.91869390510844,43.91626490983865,43.9136909164903,43.91040992595128,43.90724593620554,43.90562394210988,43.90486594473138,43.90105595609235,43.89921596201452,43.89638497309991,43.89342798382673,43.88470901269875,43.88340001722922,43.88183702176837,43.88033102550151,43.87746703419499,43.87372804485062,43.87160905027316,43.86895805802173,43.86402807339776,43.86354307513633,43.86195408081244,43.8571160975419,43.85446410710824,43.85251311506098,43.85062012233475,43.84667913535842,43.84217015154934,43.84106115581861,43.83846916471703,43.83648317089983,43.83241218320422,43.82987419048185,43.82152121375135,43.81841522325612,43.81617723080801,43.8146762373179,43.81408723945312,43.81022625134706,43.80466626695449,43.79974628135821,43.79671529080252,43.79078431093041,43.7887803173254,43.78579632639679,43.78341533402352,43.78151833926486,43.77904634666118,43.77472735843097,43.77273136401164,43.77121736843282,43.76988937275568,43.7686803761953,43.76665338158887,43.76309839076308,43.76014739898682,43.75748140653778,43.7544104141617,43.75234741948085,43.73667846717804,43.73115048488632,43.72417150701909,43.71887952406368,43.71671453100705,43.71359854070299,43.71131654783735,43.70823955767509,43.70559956600072,43.69997458352101,43.69739259161352,43.69258460674062,43.68655062570879,43.6807466437463,43.67719565479175,43.67540766042191,43.67229867036448,43.67152767297269,43.67064667576714,43.6686026820941,43.66769268485344,43.66611868962063,43.66591069020143,43.66283369943553,43.66018570735159,43.65804471381162,43.65228173109126,43.65039773672743,43.64687774722127,43.6451657523502,43.6420047618465,43.64105276470529,43.64105076470795,43.64104976470176,43.64099676485505,43.64098976487354,43.6409937648294,43.640970764858,43.64109676439724,43.64093076488926,43.6411937638754,43.64125676366989,43.64103776435884,43.6410597642682,43.64109276413235,43.64110776406945,43.64120476366131,43.6411207639291,43.64124176344878,43.64163179387745,43.64173083604264,43.64178084972867,43.64178585123425,43.64180385608667,43.64182186107915,43.64190188309813,43.64191288620543,43.6420919278678,43.64223494142561,43.64175895898814,43.641758959091,43.64196498299986,43.64195098386916,43.64178299444921,43.64170199952165,43.64144801543608,43.64165801895814,43.64132401936904,43.64112501979893,43.64116101959196,43.64099001987976,43.64799300052989,43.65726197492412,43.67609392286834,43.69276987675055,43.69845486102331,43.72511978722276,43.73146776964552,43.73148076960957,43.76560064854585,43.78834554657479,43.8187704100845,43.82261839282338,43.82648637548986,43.84060531221502,43.8565342408988,43.88040813397343,43.89446707100554,43.89688306018248,43.90051104392689,43.90896700602266,43.91135599531637,43.92708592482565,43.9372998790504,43.98133568161003,43.98138468139013,44.00508459844617]}]],[[{"lng":[-91.21499000231063,-91.21335999800139,-91.20736699053582,-91.20607198780932,-91.20483097981112,-91.20070096532893,-91.19895295731772,-91.1976699460816,-91.19804793818761,-91.19940793049817,-91.20052691945477,-91.20035891087632,-91.20122390440307,-91.20314389655422,-91.20555054027787,-91.20182789010298,-91.18810188939862,-91.18748388936474,-91.10730888538875,-91.09074588408258,-91.02886488120893,-90.9885428848941,-90.9678468940571,-90.96241989661306,-90.95468790025184,-90.94927690279999,-90.9474549036556,-90.90278192460337,-90.89412892867286,-90.8869039320689,-90.82782195965976,-90.81720696461605,-90.7982649735565,-90.79752597392405,-90.76924198711701,-90.76758298788316,-90.75947999159764,-90.74668499673973,-90.71286800311698,-90.7088010039089,-90.68884900680565,-90.68365400788572,-90.67873300892897,-90.66856101115511,-90.66858199511057,-90.66862196663206,-90.66601196540893,-90.66581590348505,-90.66591890330818,-90.66605789263886,-90.66606888961751,-90.66610688467605,-90.66613887966963,-90.66615887645933,-90.666177873265,-90.66617587306317,-90.66617887246062,-90.66619487044609,-90.66625386131298,-90.66631485177363,-90.66637584886422,-90.66658084424296,-90.66691582382228,-90.66691381884502,-90.66683673025315,-90.66678565558114,-90.67086266349251,-90.67459167169038,-90.67864568254791,-90.68986270308918,-90.6981417086444,-90.69734170136209,-90.697673693883,-90.69821269233066,-90.70039169329242,-90.70507769743563,-90.70582369662766,-90.7086486981718,-90.71115970171496,-90.7156047056688,-90.71933371014765,-90.72128570958844,-90.72667571330086,-90.72810770995399,-90.73201371076905,-90.7328647086788,-90.73487369943962,-90.73784970015089,-90.73898469738776,-90.7424546980117,-90.74528070289549,-90.75020171390672,-90.75192471302077,-90.75666070703966,-90.75698870636393,-90.76329970228451,-90.76551070226752,-90.76927670435089,-90.77499470593996,-90.78489570524513,-90.78692870485946,-90.79273370641396,-90.7987527044766,-90.79985870385842,-90.80470669909697,-90.8078516954636,-90.80870069329329,-90.80887368573519,-90.80979768205721,-90.81236367933619,-90.81565067726216,-90.81962067252127,-90.82279366567894,-90.8260466636092,-90.83125966246328,-90.83853766599607,-90.83991766518051,-90.84112366332471,-90.8433736567558,-90.84387965359102,-90.845745648497,-90.84862564707892,-90.85478764827415,-90.85903664507056,-90.86311264500725,-90.86656964361285,-90.86971864570128,-90.87241364455659,-90.87767664983049,-90.87958065018857,-90.88294865055084,-90.88764964700026,-90.89225264540543,-90.89822164564572,-90.90314063784071,-90.90398463631033,-90.91184263247062,-90.91413563196585,-90.9162176330001,-90.92366463981107,-90.92918664418725,-90.93184864531193,-90.93748064197672,-90.94008663806352,-90.94549462047053,-90.94915360186276,-90.95061859597308,-90.95307758924504,-90.95911857910608,-90.9634615757963,-90.96511457235081,-90.96604856707076,-90.96943056180071,-90.97392155753973,-90.97675855260434,-90.9829305456386,-90.98568454358249,-90.98917954512903,-90.99292254186915,-90.99773954313845,-91.00092754079546,-91.00442653891326,-91.00817752572307,-91.0111135207807,-91.01207051769165,-91.01442051612862,-91.01815951585044,-91.0228985112204,-91.03388751230749,-91.03685751407608,-91.04094151955586,-91.04319052155353,-91.04758152289493,-91.05258352328612,-91.0535405205294,-91.05367851958323,-91.05477152067567,-91.05727452318885,-91.06221052815623,-91.06526953123701,-91.06891753491396,-91.07722954329209,-91.0797095457892,-91.0870845532194,-91.09101655718051,-91.09536556155945,-91.09892156513916,-91.10144156800715,-91.10493157220327,-91.10958057586819,-91.11050357758394,-91.11453358164928,-91.11832758467494,-91.12276658914244,-91.13123459766801,-91.13655160302429,-91.14501461157762,-91.14905461565475,-91.15301561967004,-91.15681227515655,-91.15748962416787,-91.16798305596987,-91.16828268205624,-91.17260604980335,-91.17432762782087,-91.17445513736556,-91.17469173428864,-91.17531939926548,-91.1754621332931,-91.17655389283141,-91.17808679284937,-91.17789379786186,-91.17945680670668,-91.17876081370007,-91.17726381835506,-91.17722183567949,-91.17519289066888,-91.17772792790005,-91.17825094308607,-91.17793195221209,-91.17700295884954,-91.17525296475429,-91.17037196900145,-91.16044897222129,-91.15619997615732,-91.15585873270075,-91.14619999548393,-91.1460187499349,-91.14328300441194,-91.14149125068036,-91.14135602168774,-91.13864903711385,-91.13591704494516,-91.13417304689719,-91.12442807880092,-91.12389609334576,-91.12217010261742,-91.11911511006291,-91.11374911560891,-91.10964172195678,-91.1079311241766,-91.09745570749259,-91.08745616224313,-91.07927817883701,-91.0718571974094,-91.06639820864352,-91.06427169528096,-91.06256221940153,-91.06169583653448,-91.05968423466953,-91.05791023057573,-91.05791822770561,-91.05864422297282,-91.05975022013357,-91.06179821837719,-91.0699372179037,-91.07169821642134,-91.07264921415589,-91.0727822095768,-91.07157420169263,-91.07172419513429,-91.07371018830317,-91.07987517199813,-91.0856521535036,-91.10723710952482,-91.11766109820694,-91.11972071501573,-91.12912108421831,-91.13281308090316,-91.13734307752065,-91.15480606774155,-91.17105505576193,-91.17149150521817,-91.1811150460031,-91.1880140428289,-91.20184704025498,-91.20396403880585,-91.20662003346725,-91.20715437981339,-91.21477000663361,-91.21491385502983,-91.21499000231063],"lat":[43.36800630690281,43.37009731002156,43.37365932493466,43.37497632769738,43.37888732812335,43.3859303345402,43.38983533647702,43.39533433568604,43.39922333129336,43.40303232404171,43.40848631612954,43.41270131309255,43.41590330782932,43.41980529883892,43.42294879139678,43.42294930011913,43.42299234093982,43.42299534277683,43.42317758126954,43.42345163033478,43.42349481448682,43.42366592221151,43.42393296167658,43.42392397209001,43.42391198692504,43.42390199730752,43.42390000080252,43.4238600864816,43.42383910308168,43.42382111694133,43.42383523020857,43.42384225055886,43.4235932868925,43.42352528831309,43.42306134248264,43.42304234565713,43.42366436122042,43.42455338856449,43.42343448056612,43.42345749166136,43.42227254532274,43.42245755955457,43.42263157304897,43.42299560098916,43.40742158892876,43.37975856751311,43.37942457345773,43.32124252780385,43.32097552739524,43.3107765190645,43.30791451678146,43.30320851299326,43.29844450917248,43.2953885067237,43.29234750428943,43.29215950414432,43.29158650368671,43.28966250214052,43.28095049516683,43.27183948788357,43.26899148554583,43.26428348153506,43.24730346735406,43.24506746528915,43.20530442861763,43.17177839767209,43.17177139280268,43.17219838874311,43.17354138511456,43.17297337119636,43.16819135717763,43.16559335588153,43.16190535230574,43.16072335065429,43.15922834682073,43.15695033941571,43.15591933767466,43.15410733286981,43.15348332944134,43.15131832251007,43.1500283171565,43.14802431327725,43.14488530457536,43.14206430068008,43.13891829375226,43.13719129142334,43.13113428438627,43.12876427922188,43.12646427616949,43.12359727012537,43.12327326677734,43.12399826197482,43.12316425980462,43.11927925269669,43.11889325212132,43.11557324415373,43.11506124185601,43.11514123863078,43.11456423324604,43.11208922297594,43.11148522081933,43.11092421545064,43.10884120895217,43.1083512076976,43.10535720170931,43.10321019774013,43.10213519637403,43.09893219428695,43.09721919248577,43.09561318940897,43.09416018585459,43.09150218107224,43.0881471765875,43.08676117320076,43.08544816832011,43.08570716267315,43.08516116128834,43.08422915984357,43.08126215652873,43.0799261554432,43.07762615281207,43.07664715008884,43.07623614513188,43.07438914097663,43.07380313758112,43.07279513447754,43.07317313224776,43.07237412983874,43.07367812639253,43.07355912488705,43.07324812218526,43.07130211781509,43.07012011386431,43.06946010911022,43.06599410414969,43.06533410328395,43.06302709666515,43.06258509482858,43.06272309334257,43.06431908835568,43.06524408454197,43.06533808259278,43.06353507791788,43.06188307555475,43.05520906990292,43.0484340656363,43.04627606409662,43.04375506180534,43.03980305679922,43.0383460535615,43.0370570521898,43.03520605119613,43.03319404856569,43.0314630452953,43.02963204312376,43.02693903869295,43.02609703679698,43.02640003459901,43.02511603203078,43.02525502897182,43.02409402414482,43.02244201167453,43.01699799780351,43.01446798711826,43.01315298356074,43.0118969750834,43.01061496167684,43.00754494442081,43.00427890487584,43.0038808942541,43.00436987984845,43.00429187184758,43.00325585603338,43.00166583790117,43.00037483420194,42.99792182998701,42.99603482282185,42.99408381060631,42.99255279062731,42.99207477908325,42.99248376695812,42.99444074089745,42.99347673063219,42.99364970495255,42.9945586924875,42.99721468109207,42.99824266999585,43.0001246636302,43.00038065129441,42.99957463402178,43.00029763143333,43.00030261709098,42.99930360254506,42.99965558722149,42.99951355691667,42.99891553727755,42.99419050171958,42.99321448637996,42.99011846901494,42.98817032007872,42.99147545483957,43.01865048938663,43.01942643499966,43.03243689773094,43.03761770349428,43.03800142249764,43.03871342202848,43.04302676452228,43.04400763932528,43.05151026136136,43.06204442198369,43.06420642373244,43.06742742002152,43.07057842398764,43.07298343029107,43.08024743407881,43.10377145264195,43.11873345172167,43.12498245314653,43.12887545615383,43.13184646068652,43.13466546781019,43.13738448506087,43.14057551886472,43.14294553375385,43.14326835193012,43.15240557030268,43.15265460574746,43.15641358141848,43.16303765225148,43.16353759062563,43.16999360197723,43.17342261208777,43.17440561802964,43.18788665417087,43.19353665801537,43.19725566483837,43.20036667554829,43.20290869320097,43.20549965857388,43.20657871259164,43.2144131969559,43.2218917808122,43.22825980774609,43.23516483229173,43.23929384995894,43.2414403331691,43.2431658625558,43.2447917719776,43.24856687256946,43.25396887481952,43.255366873585,43.25767986939886,43.25907486486521,43.2599528579469,43.26027283319631,43.26101482726048,43.26212982343862,43.26436382111062,43.26819382143564,43.2713928182232,43.27474680936128,43.28277378392264,43.29187075874605,43.31364567531435,43.31933263921283,43.32059392414796,43.32635059889598,43.32803058640864,43.32975757137462,43.33482651479304,43.34096746097137,43.34118260411153,43.34592642669303,43.34760240464778,43.34910336201852,43.34985235505975,43.35252434487826,43.35339962441481,43.36587430934349,43.36726835687087,43.36800630690281]}]],[[{"lng":[-87.50507525351864,-87.50443425187774,-87.50060425392905,-87.49715525919048,-87.49588226420911,-87.49433427229509,-87.49291328139995,-87.49180029165329,-87.49202829444857,-87.49283129444294,-87.49301775705771,-87.49577028436073,-87.50152626638734,-87.50469425782772,-87.50507525351864],"lat":[45.05980518244807,45.06030818085363,45.06109517982615,45.06113717174151,45.06056617023654,45.05949416982508,45.05818917063769,45.05657217349967,45.0559721764381,45.05573317970477,45.05579903534836,45.05677118439186,45.05845518950569,45.0591111853114,45.05980518244807]}],[{"lng":[-88.42676414494191,-88.42671115949229,-88.42670021229455,-88.42628034399517,-88.42625435015867,-88.4260074500867,-88.42559462072248,-88.42647571898944,-88.42598287843724,-88.42583094666603,-88.42577804773369,-88.42582610029932,-88.42613213511977,-88.42606765579174,-88.42594869724675,-88.42585221499341,-88.42530214875184,-88.38730915245641,-88.3652531620062,-88.24002117030636,-88.22360816041949,-88.21569015358249,-88.19884314486936,-88.17818113186462,-88.15165411025021,-88.05930105278627,-88.05825628407193,-88.05063427400216,-88.04851427339965,-88.04604927081893,-88.04542627071983,-88.04469727066913,-88.04174426770717,-88.04050526768987,-88.04089226934794,-88.04004226980052,-88.04022127121445,-88.0397292710622,-88.03356826484807,-88.03112426180479,-88.02722825773928,-88.02360025474603,-88.01926622917252,-88.01758825041642,-88.00704323915194,-88.00585657698007,-88.00159323483437,-87.99587622929327,-87.99335422646206,-87.99144722407263,-87.98983122178878,-87.98847347404315,-87.98794221838423,-87.98261720548172,-87.98087019960316,-87.98178919936787,-87.98290986612329,-87.98339220086957,-87.98559720343908,-87.9859722766237,-87.98982920671246,-87.98971843763104,-87.98965620589097,-87.98642920074653,-87.97683518876862,-87.97266210675819,-87.97245118365835,-87.96697017643888,-87.96399617138677,-87.96472517135351,-87.96345216929825,-87.95927716449104,-87.95445916010875,-87.94851615365499,-87.94648815095938,-87.94547814991193,-87.94411314888997,-87.94224004950873,-87.93841314336126,-87.93458513939242,-87.929130134807,-87.92661113183121,-87.92199912590326,-87.92188012041913,-87.92002812403858,-87.91845512317268,-87.91727812208968,-87.9154061200329,-87.91353011734135,-87.91133611474906,-87.91000011344558,-87.9089331129623,-87.90777111213805,-87.90587311019995,-87.90465710886275,-87.90270710639034,-87.90129910443979,-87.90000510202468,-87.89836310000895,-87.89603209757431,-87.8919050939738,-87.88567508759961,-87.88226108436174,-87.87981208187901,-87.87758307950598,-87.87581307754142,-87.87443607553203,-87.87333907414032,-87.8681110671469,-87.86599205590925,-87.864141051535,-87.86221104761393,-87.86178304519466,-87.86195004231818,-87.86305004248914,-87.86387404192746,-87.86351403825302,-87.86432002530812,-87.8554799872865,-87.85333698282454,-87.85042897862168,-87.84656640531601,-87.84331695910249,-87.83734294593363,-87.8314419368379,-87.82791893405684,-87.82598193155825,-87.82417992641388,-87.82242092550989,-87.81716792122575,-87.81233791614102,-87.81014391224269,-87.8058669016494,-87.80508089673144,-87.80507589330227,-87.80918088734332,-87.8090748857701,-87.80600687889762,-87.80499287451715,-87.80187986869244,-87.78772684861055,-87.78472984353147,-87.78222583807786,-87.78080783193106,-87.78073682143841,-87.78100681821313,-87.78162281689535,-87.78802381514463,-87.79535481430477,-87.79890281191524,-87.8013118064865,-87.80266140995687,-87.80328980362914,-87.80662380178072,-87.81427980086252,-87.81658679783996,-87.81990079576696,-87.82316379499809,-87.82386779287741,-87.82273079152662,-87.82251178966769,-87.8236717873524,-87.82242478265427,-87.82269277758478,-87.82467576991503,-87.82410175398689,-87.82181775030865,-87.81727674685106,-87.81019373536465,-87.80448071318595,-87.79961670765445,-87.7969827035278,-87.79617870030218,-87.7958796929675,-87.79398369095885,-87.79201569006199,-87.78290569143225,-87.78084469101385,-87.77924268400787,-87.77767068130478,-87.77761767999573,-87.77841467786125,-87.77756567042769,-87.77570866914591,-87.77468166816071,-87.775854663175,-87.77623765828534,-87.77696619172198,-87.77749364904776,-87.77719863805368,-87.77980863299061,-87.78125462868633,-87.78564662117147,-87.78676661770092,-87.78753361379862,-87.78746195595032,-87.78746174053624,-87.78729159967813,-87.78843958680335,-87.78832558315823,-87.78879757821022,-87.79087357180818,-87.79237156780457,-87.79473656362134,-87.79753555992987,-87.80610355217034,-87.80821055192011,-87.81041955344946,-87.81175955261641,-87.81374454952682,-87.81982054787836,-87.82580054279261,-87.82934554235479,-87.83168853790487,-87.83168074391966,-87.83164453303476,-87.83268052425407,-87.83359052083483,-87.83296751314778,-87.83229551202717,-87.82721450949467,-87.81879051045517,-87.81708850594075,-87.81373650790241,-87.81151650520741,-87.80715850381205,-87.80635750034911,-87.80345261301143,-87.80338949621567,-87.80336349324071,-87.80452748524257,-87.80471947741952,-87.80420246236865,-87.80262345019021,-87.80226644043945,-87.80224043768295,-87.79879342754829,-87.7932144344077,-87.79276842370429,-87.79344642076678,-87.79463841757658,-87.79640841129405,-87.79794240772885,-87.79824240629915,-87.79782340509237,-87.79836139860669,-87.79895939586004,-87.80689037316024,-87.80738736969501,-87.80587236962651,-87.80577236836389,-87.81146835026597,-87.81297034473816,-87.81297466740898,-87.81297534230416,-87.81555033504941,-87.82026332425545,-87.82040632257338,-87.81983332292511,-87.82105631942254,-87.8246603104498,-87.82550830707858,-87.82742930292207,-87.82913329896374,-87.8312162933325,-87.83269328826745,-87.83245528750859,-87.8330412841641,-87.83475659321644,-87.83600727355184,-87.84481424980586,-87.84742823720481,-87.85529721432135,-87.85660220891877,-87.85721120412391,-87.85848119867097,-87.8601281931962,-87.86169618756955,-87.86194918458143,-87.86012618314787,-87.86043117216617,-87.85884617263159,-87.85800817423274,-87.85712317501452,-87.8572521709322,-87.85723411503493,-87.85621517059971,-87.85270072736027,-87.85180917717335,-87.85053217824954,-87.84966717708589,-87.84932116907352,-87.85096816152669,-87.85599114532738,-87.85913013444026,-87.85977212984905,-87.85960212886175,-87.8568291310756,-87.85941711568026,-87.86131510792912,-87.86467609559676,-87.8709040739849,-87.87356706313021,-87.87542305413457,-87.8756910491223,-87.87442805018703,-87.87157105485917,-87.87126705217956,-87.87511003772934,-87.87686103006875,-87.87783402428016,-87.87916801794813,-87.88300600303045,-87.88485399499319,-87.88686752605661,-87.88782697683318,-87.88805096950639,-87.8869479699199,-87.88516897291791,-87.8811129849275,-87.87983398938466,-87.87745999938858,-87.87545900898202,-87.87168402282745,-87.8703660279147,-87.86961203242028,-87.87008303368017,-87.87120303204378,-87.87566902581854,-87.87579602741042,-87.87511003065163,-87.87294903826668,-87.87023704634346,-87.86817605072623,-87.86599805359997,-87.86516205257584,-87.86567404597282,-87.86576204235175,-87.86487204253054,-87.86348804389395,-87.86087004908487,-87.85861605489025,-87.85278307204608,-87.85041707641004,-87.84989807356965,-87.85147406476035,-87.85131706369012,-87.85013206611482,-87.84836707227547,-87.83814011229776,-87.83678111867111,-87.83530213001443,-87.8326111403822,-87.82977414902665,-87.82691715606424,-87.8248541628689,-87.82355316825137,-87.82302717127843,-87.81416577508625,-87.8100752105706,-87.80046324375668,-87.79032327557969,-87.78796628217168,-87.78307529483382,-87.7815312997315,-87.77390032544615,-87.77138333342879,-87.76917134044392,-87.76212736063646,-87.75410338707505,-87.75145139712933,-87.75162539823604,-87.75092740102565,-87.74495541944951,-87.73963343466232,-87.73845643846022,-87.73835143939317,-87.73780044177143,-87.733408456882,-87.71889050327681,-87.71360951821276,-87.70832853318801,-87.70676653824651,-87.70433654522402,-87.69979655792868,-87.69870754079056,-87.693955573734,-87.69028058331679,-87.68593359448026,-87.68286560196312,-87.67646561875371,-87.67501662254672,-87.67454962372631,-87.67440262382496,-87.67351262614714,-87.65869766662554,-87.65734867041026,-87.6566236725056,-87.65693767177767,-87.655806675072,-87.65663167297332,-87.65356768207768,-87.65066069052098,-87.64847569702951,-87.64772869939151,-87.64812769857649,-87.64751770054436,-87.64745370089686,-87.64823669881574,-87.64779770025318,-87.64812569962461,-87.64897469721578,-87.65179768886875,-87.65379368308663,-87.65577467717431,-87.65982966476952,-87.66160265932577,-87.662028658023,-87.66199236511953,-87.66149965975977,-87.66366565294999,-87.66524264793765,-87.66742264098529,-87.66935563470297,-87.67132962827316,-87.67266862385225,-87.67193462609906,-87.67365262046688,-87.67532761504835,-87.67908460258745,-87.6797306003532,-87.68032959812865,-87.68403958567484,-87.68749757366182,-87.68757757306764,-87.69019187323092,-87.69036356251301,-87.69158555804039,-87.69346755139391,-87.69492154575211,-87.6964775401444,-87.69824753344376,-87.69858253187343,-87.6975385350959,-87.69949152779344,-87.69910852866565,-87.69845553017628,-87.6987795283096,-87.70305251240534,-87.70485750578524,-87.70583650208359,-87.7057805016828,-87.70913648831622,-87.71044948318998,-87.70981448518448,-87.70777849255101,-87.70892148795686,-87.70914448627586,-87.71113047835826,-87.71120347740538,-87.70993248904142,-87.7100603292978,-87.71022549812405,-87.71147951225294,-87.71133855269446,-87.71218355688717,-87.71339755596441,-87.7170505415247,-87.71826354032646,-87.7199735533456,-87.72415555867566,-87.72520456812617,-87.72491958121564,-87.72193460343077,-87.72135361774507,-87.72247264117895,-87.72695165975371,-87.72727568056756,-87.72617471129263,-87.72619773641375,-87.72795974183087,-87.734593738391,-87.73633874065303,-87.73949175051315,-87.74074945477003,-87.74173177450442,-87.74180478339126,-87.74115780048993,-87.73949481734861,-87.73905082874664,-87.739470842461,-87.73749388305718,-87.73768590091552,-87.73650592263483,-87.73520995642271,-87.73650898610909,-87.73610399627253,-87.7351350045781,-87.73086602158818,-87.72776804060673,-87.72460106612839,-87.72312108811192,-87.71794513300021,-87.71132216784339,-87.7101081706175,-87.70820118578806,-87.70813419869405,-87.7073912106807,-87.70349223960048,-87.70061825476608,-87.69505527426811,-87.69237528877453,-87.68842531425261,-87.68390234995296,-87.68132737649614,-87.68037539153364,-87.67736241955618,-87.67581643586207,-87.67602444234244,-87.67851145716116,-87.6782094659812,-87.67532649113328,-87.67449950012031,-87.67412752044636,-87.67244754271161,-87.67100055478262,-87.66710257758432,-87.66586607323585,-87.66444889588408,-87.6620886081016,-87.66129662971269,-87.66122720724681,-87.66121166008639,-87.65995266817964,-87.65713567381196,-87.65445267422817,-87.65141267918949,-87.64819170122249,-87.64575770807376,-87.63828772103523,-87.63578911554249,-87.63577556816632,-87.63480173409749,-87.63153573759911,-87.62957174779602,-87.6288297579564,-87.62764076519814,-87.62652347189548,-87.62160978395589,-87.61923754040541,-87.61489781318699,-87.61234105324583,-87.59219289319999,-87.59289089628443,-87.59182041672589,-87.59106491922839,-87.58738995063904,-87.58781995447391,-87.58944695271116,-87.5909829481068,-87.59257595233836,-87.59546894804754,-87.60166195166191,-87.60881997027801,-87.61127698877493,-87.61387787690909,-87.61810475717392,-87.61965017920345,-87.62037123849751,-87.62499541295639,-87.62574915611677,-87.62573473142152,-87.62482761060406,-87.62470268917662,-87.62469436338027,-87.62885954357176,-87.63118155745315,-87.64545953959701,-87.64697747012247,-87.64958144876357,-87.65441855381412,-87.65612807515988,-87.65666229195186,-87.65816256663027,-87.65905358742509,-87.65724160544893,-87.65757661655542,-87.65924461715466,-87.66341603279677,-87.67070882536862,-87.67326558815883,-87.69658956961857,-87.73988290831643,-87.74018356509947,-87.76244690257546,-87.7607985840467,-87.76042952942787,-87.76007246578047,-87.76691350373356,-87.78043157699734,-87.88338814557348,-87.88333211737674,-87.89349516987393,-87.90292722201198,-87.91246027499572,-87.92412633986557,-87.94443845009327,-87.94328424604898,-87.94299704591117,-88.0043103291403,-88.02458652744831,-88.04050768656663,-88.12115546044599,-88.12021136273638,-88.11888026616828,-88.18924852835563,-88.18707176772415,-88.1873056248144,-88.18630919163144,-88.18649912785303,-88.18635398178998,-88.20715194884436,-88.24742682614014,-88.25014582367149,-88.27995929855854,-88.28536320281373,-88.30795378646823,-88.30888977124701,-88.30906076846242,-88.30907937882867,-88.30905238730681,-88.30814657907246,-88.30580716919575,-88.30667915956739,-88.34030877953791,-88.342995751655,-88.34473373012759,-88.39295719264145,-88.39496216892425,-88.40312607934197,-88.42809780076631,-88.42676414494191],"lat":[45.41286645451297,45.41439145632485,45.42013346273308,45.43402747905956,45.43467147982859,45.44531049213803,45.46351651312521,45.47513152430828,45.49204954399425,45.49935655236364,45.50659255721398,45.5102785593887,45.51287356042695,45.54905058271084,45.62145162732251,45.65745464960438,45.7224246907391,45.72189877934451,45.72214783116126,45.71956912137136,45.71925015904146,45.71881017692011,45.71864521576731,45.71809326306299,45.71657032299788,45.71306453376383,45.78071930626401,45.78097160243482,45.78254860767757,45.78243261286694,45.78299061443707,45.78371761630203,45.78373362256914,45.78507562575131,45.78645162550599,45.7878936278895,45.78923562806749,45.78962562925637,45.7898156422013,45.78923264709243,45.78918965522599,45.79009366310987,45.79179570644539,45.79245467635457,45.79219169817011,45.79260518140878,45.79409070988913,45.79543471812698,45.79561272101981,45.79539272313536,45.79482672485164,45.79356745151531,45.79307472663893,45.78294373064814,45.77697673144215,45.77508073001807,45.77481157317023,45.77469572811682,45.77492572565354,45.77475015349984,45.77294472043762,45.77235566223157,45.77202472044896,45.76959572363566,45.76701473405473,45.76635222460911,45.7663187389154,45.76402074471479,45.76079374747783,45.75946074638516,45.7582197475969,45.75736675220069,45.75841375790723,45.7578437645868,45.75670376668629,45.7566867678372,45.75742176953669,45.75765114401884,45.75811977618074,45.75809378054878,45.76036378720297,45.7595897899355,45.75698879472281,45.75701185932375,45.75737079704518,45.75915379916945,45.75948280057393,45.75920980266189,45.75737180446962,45.75653880682509,45.75671580838389,45.75829680988929,45.75927981139424,45.759363813577,45.75916281492955,45.75793181693582,45.75655281829746,45.75349681923019,45.7525028209307,45.75228482355818,45.75405482859141,45.75395683569765,45.7547788397444,45.75484284255523,45.75448784504204,45.7538878469622,45.75155084813458,45.75043884919857,45.74947685475852,45.74653685524104,45.74569685681737,45.74501785859555,45.74435885865785,45.74336685781584,45.74308985636276,45.74265985512722,45.74157285482937,45.73713885097548,45.72694285472399,45.72597385664038,45.7252658596375,45.72252589788391,45.72022086493303,45.71691887004873,45.71493787593954,45.71469888003852,45.71419888207468,45.71265488333493,45.71270088548657,45.71222189155388,45.71130289686725,45.7102298989144,45.70684090220252,45.70497390211794,45.70355590133286,45.70033689449276,45.69971689427287,45.6974368967702,45.69579589710579,45.69386189988635,45.68717991390117,45.68526191664682,45.6830529186409,45.68034891902761,45.67545791659042,45.67393391545922,45.67327991433583,45.67209490554961,45.67133389577803,45.67013989058999,45.66774888618762,45.66689258731984,45.66649388295126,45.66564987818989,45.66512686803163,45.66389786434924,45.66305385957995,45.6627318551744,45.66191985378545,45.66140785495569,45.66069685482151,45.6598168527993,45.65801185335708,45.65607685187101,45.6532108475909,45.64713784475753,45.64558884686202,45.64392585190159,45.63873185834014,45.62893286050012,45.62583686536774,45.62361286772713,45.62207386798435,45.6188458666408,45.61757586854817,45.61675587080357,45.61528988252753,45.61459888500048,45.61090788530463,45.60920388660345,45.60856788635157,45.6077818848451,45.60401088409382,45.60282388607622,45.6020238871031,45.60000888444167,45.59779688277993,45.59549873516251,45.59383487899288,45.58849887668403,45.5871248722737,45.58568186947221,45.58395986231656,45.5828298601237,45.58137585826026,45.5794601581615,45.57945439928257,45.5749058551919,45.56962985074207,45.5679408500131,45.56594684826959,45.56409584425688,45.56305484151132,45.56237183768499,45.56212383345486,45.56286282132993,45.56371181872738,45.56530781640561,45.56555381459193,45.56517481148157,45.56707880373132,45.56754979530977,45.56877579088919,45.56803478703993,45.56771420613821,45.56622478601236,45.56341178280211,45.56252878093697,45.55946077999117,45.55876678055834,45.55561978614875,45.55209979652364,45.54951179754659,45.54861580201062,45.54640280405138,45.54352280892818,45.54166180908328,45.53834390244476,45.53827181164804,45.53701581099001,45.53437280776478,45.53124380573081,45.52467580285962,45.51856180188489,45.514232800039,45.51305879942977,45.50628680105509,45.50502780907127,45.49996680713701,45.49837180945668,45.49743880954485,45.49467881253573,45.49404381140064,45.49326381254676,45.4914678169795,45.48656382634191,45.48514682830109,45.47909182733854,45.4770308306629,45.47437983867612,45.47313884137836,45.46799084167925,45.46609984275206,45.46442096798938,45.46415884660095,45.46279484461595,45.46231383695286,45.46127083871156,45.46059084108213,45.45995484006218,45.45913683497983,45.45802583552491,45.4580758318644,45.45792482898516,45.45718482649527,45.45592182608465,45.45501982820235,45.45359582973705,45.45202336076318,45.45087682911639,45.44841081669979,45.44417681909144,45.44137880848753,45.4399628083075,45.4379338105197,45.43647681042915,45.43556780864179,45.43447280730084,45.43307180910504,45.42958381860703,45.42350382808974,45.4213928349394,45.42107783723421,45.42019184059414,45.41792184414465,45.41789013760404,45.41610084943462,45.41370950462593,45.41310286404027,45.41168486925739,45.40951787490018,45.40387188547381,45.40192488516869,45.40035887656537,45.39896687182515,45.39727787318937,45.39640887502537,45.39310588691619,45.38822688910669,45.38682888699176,45.3852318817223,45.38311587042202,45.38135686687846,45.37937286555326,45.37705186852759,45.37558887386466,45.37347788412996,45.37146688806448,45.36984188119049,45.36853487890835,45.36698687889486,45.3657538774784,45.36404187050979,45.36279186775881,45.3596289856664,45.35812186718859,45.35469687166584,45.35310987684424,45.35173588347659,45.3512778946552,45.35148989764029,45.35283190170487,45.35462590406313,45.35572891199548,45.35626691450774,45.35748091449092,45.35902191083211,45.36005590635075,45.36422788856284,45.36531388655424,45.36594688727455,45.36652589173598,45.36643589861357,45.36536490545615,45.36319391440816,45.36111491989214,45.35821292332237,45.35627992624199,45.35476693098377,45.35301993739966,45.35119194717607,45.35037795437299,45.34949697101251,45.34749198063425,45.34465098691886,45.34233498676203,45.34134598888388,45.34043499360948,45.34067599788685,45.34510101705915,45.3464510181699,45.35098001373649,45.3522490183533,45.35200502613197,45.35053803628584,45.35071304130065,45.35163704290241,45.35265004231846,45.3517052225917,45.35126907848193,45.3536080985039,45.35344412493043,45.35261213279031,45.34972515173025,45.34969515580782,45.35122617218283,45.35121017873275,45.35119518449157,45.34840120924801,45.34944222767916,45.35175522900258,45.35416922274062,45.35503722243879,45.35655922157829,45.35644022233212,45.35715622071859,45.35824321812174,45.35963521483583,45.36443220378889,45.37746217449731,45.37909017133384,45.3812181670304,45.38382716113335,45.38546215764967,45.38792715255229,45.38829370099591,45.38989314884661,45.38982214955771,45.38871115276165,45.384950161848,45.38321916669755,45.38245416864128,45.38164917054071,45.37806517873477,45.37694618139842,45.36972319952058,45.36875220185611,45.36729520521185,45.3645682113108,45.36270621561045,45.35861722472206,45.35420423490036,45.353798236052,45.35224323970623,45.35072124316327,45.34788024947582,45.34651025257723,45.34523225543364,45.34329225971296,45.34224526207807,45.33939626841903,45.3381662711192,45.33641427488929,45.33306128230842,45.33084728719351,45.32914429086606,45.32760829426626,45.32643429690242,45.32608797032957,45.32138630831434,45.31825731533819,45.31711531789535,45.31636031957299,45.31344532616652,45.31178232993194,45.31021333349725,45.30820433807276,45.30754633957323,45.30790733875184,45.30584134348499,45.30484434577166,45.30280035045962,45.30125535404856,45.29805536146876,45.29628336555449,45.29064093557545,45.29027037950588,45.28873938308629,45.28767538561768,45.28485039222186,45.28379539473755,45.2815124001236,45.27999140367632,45.27847140715321,45.2766594114758,45.27496341539837,45.27207242207931,45.26942042826757,45.2670414341223,45.26649243554134,45.26587543705897,45.26403744135207,45.26034145028832,45.25932445279012,45.25845745476673,45.25834345484797,45.25710445785651,45.25464946363255,45.25292846786824,45.25107647222418,45.24903347766727,45.24844839942057,45.24769248192896,45.24522448983032,45.23996550639224,45.23901450944881,45.23856451094921,45.2387435106394,45.23833351200622,45.23584451989559,45.23323652825375,45.23153953357755,45.22997753841712,45.22844454307477,45.22684754803452,45.22330955908775,45.21894957268398,45.21612958142368,45.21264059225443,45.20939160233359,45.20795660672747,45.20565461358654,45.20465361658751,45.20212662417727,45.19992286457822,45.19820163603449,45.19705163953785,45.19514764539489,45.19366665004956,45.19239665397105,45.19049765974322,45.1861106733684,45.18377168051536,45.18145768774861,45.17764269962664,45.17338971250187,45.17224471607622,45.17153871839233,45.1709137209783,45.16959672554022,45.16745273271062,45.16514174015153,45.16115675352974,45.15894676174218,45.15901376176824,45.15768876633068,45.15600477166942,45.15467977601539,45.15220678469195,45.15118878856316,45.15052279192978,45.14950579579832,45.1474338033828,45.14413581513521,45.14138182471976,45.13963783063733,45.13679584069762,45.13505984678982,45.1340898499035,45.13120485861878,45.13008486235875,45.12754587150472,45.12656687495797,45.12385888394006,45.12129489287643,45.12006989736527,45.11810990509613,45.11692940553448,45.11557641621138,45.11332303275273,45.11256692540988,45.10906434293248,45.10827993966435,45.10751294267064,45.10756894351619,45.10833294194654,45.10855894229486,45.10636895082516,45.10612495254835,45.10655195387039,45.10595274799036,45.10594949911114,45.10571595800599,45.10622495748306,45.1053249612919,45.10403996597108,45.10332896885885,45.10315686430092,45.10239997435702,45.1015747080206,45.10006498503702,45.09946793946137,45.09476301272497,45.09405101496367,45.0922459571747,45.09097202664785,45.08708504204633,45.08633804452026,45.08612404457082,45.08639204294722,45.08523604635101,45.08504804574191,45.08264805144891,45.07770406550008,45.07417007666878,45.06895615533894,45.06048265812489,45.05738459831999,45.0559391130878,45.0466691747089,45.04515816944519,45.04473449371047,45.01809095232196,45.01442181802713,45.01417727660472,44.98673535152958,44.9844023552295,44.98524734446956,44.98471770490881,44.98380911915554,44.98212134631516,44.9810848626627,44.9807609667611,44.97985134951261,44.97678335637275,44.97441136307373,44.97278836677872,44.97252336652044,44.97329392005241,44.97464106145586,44.97511335252872,44.97518533943392,44.96954812537642,44.96950897695043,44.96660993949036,44.9761431726301,44.98275615605871,44.99053113570442,44.99049604908265,44.99063687719699,44.9904595725512,44.99304155975477,44.9933014290718,44.99322930945072,44.9931341886985,44.99302004095547,44.99305578235746,45.00739978613442,45.02041684639362,45.02145307259699,45.02183763645314,45.02193429285554,45.02357657483459,45.06683729253363,45.11019401091077,45.11184001975514,45.17127032632237,45.17612142822243,45.19084075243483,45.1930027971744,45.19797190466349,45.1982037521868,45.20036550410323,45.20025648244275,45.20060754183385,45.20069355290567,45.20161060995711,45.20158261085565,45.20157761102275,45.25899062835322,45.2602336291131,45.2878056467435,45.37454669943296,45.3745916973842,45.37493561768729,45.37530061156415,45.37505660726355,45.3763064939325,45.37618948907092,45.37653447007264,45.37700841147828,45.41286645451297]}]],[[{"lng":[-86.95619869687623,-86.95616768540603,-86.95541786639077,-86.9546346742238,-86.94827267934534,-86.94629766807137,-86.9464755863842,-86.94751064338801,-86.94769174395624,-86.95255505063994,-86.95427360455474,-86.95520459191621,-86.95377375582247,-86.95186700743257,-86.95117664610112,-86.94734667852406,-86.94596442352054,-86.9430414791825,-86.94290121203809,-86.94123794270054,-86.93739345607953,-86.93622407793019,-86.93427645313371,-86.93051146227262,-86.92804548118785,-86.9273745683106,-86.92706348749844,-86.92967751541411,-86.92920252280986,-86.92688642453399,-86.92658852422231,-86.92349852418506,-86.92183457674447,-86.92154351507783,-86.91941540635241,-86.91898249649854,-86.91426848111011,-86.90503447506204,-86.90163146757965,-86.89289346280412,-86.88336445659242,-86.8806294833396,-86.87750243460559,-86.86500273934291,-86.86147242914636,-86.85314544505187,-86.85308273058158,-86.83035341019279,-86.83033144749157,-86.82914339006638,-86.83090035887963,-86.82866134860485,-86.8170693452094,-86.81005535479896,-86.80586838500732,-86.80541540382812,-86.80830341027105,-86.81807341034842,-86.8243834218793,-86.82466027491206,-86.82672602223661,-86.83749448078393,-86.8411155005649,-86.84482653210917,-86.84868996124787,-86.84940456237867,-86.85310356251718,-86.85318298474606,-86.85730873575449,-86.85838417987152,-86.86336792148681,-86.86356359003322,-86.86447459936502,-86.86360362042889,-86.86774363282468,-86.86779982294523,-86.86859464526458,-86.86745256633932,-86.8654996720759,-86.86587980741896,-86.86645569059364,-86.86730226842788,-86.86904170061895,-86.87476163883908,-86.87511771258242,-86.87864146688329,-86.87941871042555,-86.88608370645679,-86.89148469891049,-86.89847357028361,-86.9004437121763,-86.90232831543902,-86.90316972369997,-86.90913576209144,-86.90911410974856,-86.90866778231815,-86.90781545032843,-86.90335979247612,-86.90038079407555,-86.89877780458265,-86.89869615948383,-86.89735382022117,-86.89717812143263,-86.89707484356646,-86.89989184826661,-86.90063655460077,-86.90160148561988,-86.90436300121721,-86.90489884589371,-86.90303882731322,-86.90670580161606,-86.9072772752755,-86.91059379227381,-86.91820278718947,-86.92426476701476,-86.92716975099663,-86.93174874512836,-86.93736874660929,-86.94071586797435,-86.94107083082231,-86.9439708494246,-86.94679716124749,-86.9480877463895,-86.95612972884257,-86.95619284156179,-86.95619869687623],"lat":[45.35200598442098,45.35548898410911,45.35699545878294,45.35856898404288,45.35568198519083,45.35868998519222,45.35982586920355,45.36643398431921,45.36678858244679,45.37631102317697,45.37967598217634,45.38372098167984,45.38742996898637,45.39237260745212,45.39416214951628,45.40409012156899,45.40767317771424,45.41524998049772,45.41539193583737,45.41707522356963,45.42096598075732,45.42103463538772,45.421148981171,45.41753598202047,45.41127298293278,45.40982251758685,45.40914998326235,45.40130698361656,45.39896998389558,45.39808306171626,45.39796898434893,45.39730198483777,45.39927147667452,45.39961598489704,45.40379406097315,45.40464398479184,45.40822698511615,45.40799598641437,45.4094839867485,45.40897998800307,45.4120762448244,45.41296491877079,45.41398098967043,45.41248851439445,45.41206699206268,45.40554699381755,45.40556159104137,45.41085199647727,45.41095433006619,45.41648999612002,45.42602299499065,45.42853899506549,45.42696299681143,45.42261899818474,45.4129029996707,45.40732400025473,45.40606699997268,45.40814699842721,45.40613499774189,45.40582936484835,45.40354887571164,45.39166099727265,45.38661099723958,45.37810499751392,45.37137990734231,45.3701359976169,45.37086099703568,45.37081564447414,45.36845971239193,45.36784560036715,45.36499972895798,45.36488799613419,45.36231199624555,45.35589599695972,45.35306499664475,45.35283284439607,45.34954899685088,45.34638731169643,45.34098099807375,45.3388747870187,45.33568399842969,45.33487834487865,45.33322299829594,45.33100789103105,45.33086999766454,45.33209073561896,45.33235999692651,45.33486299576542,45.33819099470549,45.33649584989666,45.33601799365474,45.33400895691958,45.33311199354078,45.32278399365393,45.32249898471687,45.31662399428376,45.3159696501726,45.31254899540024,45.31149499591403,45.30804299645537,45.30775924225856,45.30309399710929,45.29866463201566,45.29606099779423,45.29518499747942,45.29543100191836,45.29574975483214,45.29666198702746,45.29683899662525,45.30205299640792,45.31045599512365,45.31097852425153,45.31401099425359,45.31702099291326,45.32428799140125,45.32969499050153,45.33238298961668,45.33306498876973,45.33376164165153,45.33383552182013,45.33443911699751,45.33502737121864,45.33529598707014,45.34226698531469,45.35117915351915,45.35200598442098]}],[{"lng":[-86.96004769330844,-86.95790981940596,-86.95671696416167,-86.95187382274342,-86.94766939851142,-86.94760182177798,-86.94584083452959,-86.94316584432778,-86.9441608581178,-86.95005555570452,-86.9509078573696,-86.95722285284373,-86.96051183424598,-86.96004769330844],"lat":[45.31177474623353,45.31506698753478,45.31463182062793,45.31286498857963,45.3123295944919,45.31232098922713,45.30810898985682,45.30461999054906,45.30063199077249,45.30196522081883,45.30215798968782,45.30475598856677,45.31105998753407,45.31177474623353]}],[{"lng":[-87.21303512709389,-87.21128912274122,-87.20712213026282,-87.2072451414013,-87.20819414394151,-87.21205813860547,-87.21303512709389],"lat":[45.17914323164641,45.18049822805641,45.17999522503839,45.17763822860764,45.17686523060954,45.17699123395573,45.17914323164641]}],[{"lng":[-87.26870614498235,-87.26472714173428,-87.26222514854719,-87.26361110823079,-87.26365316402631,-87.26828715593641,-87.26870614498235],"lat":[45.15918033526687,45.16129732352421,45.16080131937893,45.15719282547008,45.15708332872146,45.15707333818073,45.15918033526687]}],[{"lng":[-87.37754882850489,-87.3743748067948,-87.3746667772742,-87.37601076353459,-87.37519976077668,-87.36924677153661,-87.36629776880739,-87.36571875774061,-87.36457075706276,-87.36325376226259,-87.36192377218693,-87.36132378339551,-87.35971479161974,-87.3559667991657,-87.35273180273946,-87.34571579450707,-87.34427278542989,-87.34392877132311,-87.33703976360177,-87.33506676934574,-87.33441778112444,-87.33234479857742,-87.33409080584327,-87.33756980893665,-87.33508484744021,-87.33603391929748,-87.33860593915647,-87.33797896916894,-87.33240901786967,-87.33263402384395,-87.33478202057343,-87.3351139742195,-87.37167916502972,-87.37697085858824,-87.37754882850489],"lat":[45.18392448669539,45.18936646612375,45.19511545091537,45.19735244705392,45.19819344338968,45.19822143337083,45.19983842414526,45.20225141678168,45.20280641343825,45.20225341274831,45.20076341447944,45.19874941875781,45.19769741881416,45.19756041288878,45.19802940627639,45.20225338408937,45.20460537593872,45.20756136811269,45.21167334732014,45.21125434525949,45.20912634930482,45.20638435250566,45.20427336030158,45.20236337051362,45.19553638270914,45.18073641967833,45.17581643624367,45.17001044904413,45.16219945674853,45.16091646022318,45.16081246477337,45.16094904273635,45.17599330517365,45.17817050150748,45.18392448669539]}],[{"lng":[-87.7337412390747,-87.72983935121833,-87.71978333067692,-87.71920566038791,-87.71758932182682,-87.71841230495691,-87.71843045230926,-87.72025104286971,-87.72181928736241,-87.72089227729592,-87.71379426137813,-87.70736925176156,-87.70585524231176,-87.69817005812985,-87.68821013982505,-87.68665031612574,-87.68628511931443,-87.68386617997112,-87.67334002971742,-87.66751800153796,-87.66292197090104,-87.66177293895524,-87.66112690870929,-87.64630282905459,-87.64454761821247,-87.64325420210866,-87.63710672246344,-87.63658183281322,-87.62498165226731,-87.61791140220065,-87.61491056960746,-87.61006554589106,-87.61003439004391,-87.60413953311441,-87.59344251165396,-87.58938848454225,-87.58130845256166,-87.57830744191646,-87.57317744291603,-87.57132360240706,-87.55675344523357,-87.55029045113378,-87.5500381274462,-87.54954847564257,-87.55480789278411,-87.55529646603405,-87.5557263382413,-87.55802228302562,-87.55976849756351,-87.56380956212206,-87.56567725652573,-87.56571058714378,-87.56214558923031,-87.56066181999316,-87.55858057966999,-87.55739258775037,-87.55831111911677,-87.55858060501461,-87.55929361687447,-87.55667961702818,-87.55363567996457,-87.55338534572414,-87.55097460353643,-87.547245271997,-87.54717158352366,-87.54194256637973,-87.5400414997446,-87.53600048451199,-87.53338645943339,-87.53457442886612,-87.5343678312703,-87.53395541242524,-87.53100141099871,-87.5308289434516,-87.52986211550699,-87.52982144559617,-87.5296492309392,-87.52175973272003,-87.52166512481689,-87.52078944931264,-87.51890068689755,-87.51460945036658,-87.5089054316017,-87.50415141517389,-87.50343839734005,-87.50771739574368,-87.51080637909401,-87.51833246690725,-87.52126833677988,-87.52078532790247,-87.51884432263358,-87.51818966395989,-87.51501732289454,-87.50727034639627,-87.50381936319179,-87.49911536837008,-87.49844738095642,-87.49877757823722,-87.50057358409487,-87.50058640199863,-87.49345643010263,-87.48672478355564,-87.48561243894373,-87.4846517564952,-87.48133442768061,-87.48115480586578,-87.47988640287035,-87.47879245198457,-87.47849139419445,-87.47212161829452,-87.47153936988178,-87.46190812128259,-87.46140133575153,-87.45885013125783,-87.45751232553533,-87.45338874100558,-87.45251531987614,-87.44332130621677,-87.44235528270336,-87.44018398173625,-87.4370862729274,-87.43313027724798,-87.42032932031226,-87.41910833401417,-87.4311843140505,-87.43641330259307,-87.43902731392146,-87.43855233720068,-87.43261034743644,-87.42761934154419,-87.42500435757118,-87.41995338565522,-87.41993349707069,-87.41430842620578,-87.41206740981993,-87.41001747355297,-87.40554348887569,-87.40433099055639,-87.40112844339984,-87.40009878521651,-87.40004854972743,-87.39999811296178,-87.39743359678059,-87.39723459796478,-87.39334062109053,-87.39313008063533,-87.39006566291209,-87.38787235346909,-87.38593540586973,-87.3855496670968,-87.3832283104028,-87.38222265272724,-87.38251813930013,-87.38439367330592,-87.38474618534271,-87.38507462521588,-87.3866603537905,-87.38697559394457,-87.38707124809901,-87.38745156584923,-87.38616491357193,-87.38446245732155,-87.38422735237849,-87.38341054961762,-87.38317253148222,-87.38459850890116,-87.38482348007059,-87.3845959418455,-87.3845794584109,-87.38607804305265,-87.38626243360007,-87.38363337451246,-87.38539834609966,-87.38611299383798,-87.38649278799326,-87.39060632704272,-87.3934012920019,-87.4062012426151,-87.40500720360362,-87.39997718073573,-87.3952331663363,-87.39553815265404,-87.39790210845347,-87.39825819014662,-87.39837013765644,-87.39375455095274,-87.39340709347896,-87.39013531525873,-87.38900787806723,-87.38725507374571,-87.38506764319182,-87.38467149803124,-87.38250352874184,-87.37480699625478,-87.3700764767018,-87.36349400953306,-87.36028984877966,-87.35481781781655,-87.34776480089293,-87.34497578829536,-87.34412376815843,-87.34252774716592,-87.34011074591777,-87.33645875006657,-87.33216074620258,-87.33103818611607,-87.32663734736248,-87.3265442555042,-87.32643242948548,-87.32526469327986,-87.32176868197509,-87.32184092485356,-87.32211866924115,-87.32135265056338,-87.31903964769091,-87.31421164942874,-87.31419012854975,-87.30854063929884,-87.30711461029568,-87.30408769900832,-87.30283260917233,-87.30164760235216,-87.29998700333327,-87.2987956092982,-87.29711752817265,-87.29665663487107,-87.29533191637513,-87.29285365476869,-87.29085682984028,-87.28941207166748,-87.28738666572804,-87.28405966761873,-87.28287164981766,-87.28282619623891,-87.28239561618564,-87.28412659768973,-87.28415852454265,-87.2842815833521,-87.28269561920813,-87.28237755752926,-87.28098057723311,-87.28040353230813,-87.27706452865597,-87.27578457421383,-87.2735995359526,-87.26998454026933,-87.26487852857116,-87.26272529755647,-87.2617454907754,-87.26171750991794,-87.26054348132089,-87.26059641634053,-87.26009838221448,-87.25745034605978,-87.25030231218207,-87.24848231352786,-87.24398133703811,-87.2394493402557,-87.23955331792234,-87.24124530981035,-87.23985329864269,-87.24174127339631,-87.24292523365946,-87.23890020566792,-87.2387531892559,-87.23390918030229,-87.23462216815969,-87.23784115732133,-87.23767914963824,-87.2312151348592,-87.22311613643164,-87.2208651444919,-87.22175016330431,-87.22478016691332,-87.22479417441356,-87.22208018641518,-87.21156719221473,-87.2039262144536,-87.19900921702812,-87.1946522298953,-87.19361925156825,-87.19219247816859,-87.18720629676275,-87.17861931614654,-87.16977430540334,-87.1706072918947,-87.17230328398848,-87.17246324323679,-87.17506920270768,-87.16825304238745,-87.16718016210363,-87.16317015875748,-87.15935867746981,-87.15736515929972,-87.15452316364885,-87.1532487806108,-87.15302434382818,-87.15188035280245,-87.15167117592384,-87.15124681619957,-87.14810617393164,-87.14905715922552,-87.14771015219516,-87.14629414823294,-87.14331315091785,-87.14157115787434,-87.13660716142353,-87.1330311601791,-87.12932916764161,-87.12453627252783,-87.12369018570394,-87.11997318453942,-87.1199723155062,-87.11961225944052,-87.1194061173298,-87.12161009401562,-87.12282002989274,-87.11906999862626,-87.1164329501898,-87.11213393713865,-87.10983992636156,-87.10996290693343,-87.10874389813354,-87.10574889748479,-87.09966390148529,-87.09624691005864,-87.09208823698104,-87.09201392279856,-87.08965383760273,-87.0841699394899,-87.0786635369281,-87.07751495104951,-87.07466294572598,-87.07556393668165,-87.07727793035693,-87.07831690910403,-87.07371189488919,-87.07322510283885,-87.0720527335324,-87.07120871900452,-87.07103587215676,-87.07025595687381,-87.07005884458862,-87.06898983220934,-87.06744382783852,-87.05971482772274,-87.05810783712836,-87.05762784910415,-87.05517285658694,-87.05170087832069,-87.04389589140328,-87.04203089184443,-87.03830088809698,-87.03483289210348,-87.02997889922626,-87.02636971611319,-87.02546291115748,-87.0221359093043,-87.02356189253216,-87.02235888508713,-87.02012187837131,-87.01703687752641,-87.0143218824041,-87.01219889400704,-87.01016789795966,-87.00752790428916,-87.00242390863454,-87.00091490654667,-86.99766389977073,-86.9941128981299,-86.9908789025431,-86.98335590012074,-86.97778091191455,-86.97506749787274,-86.97246093007695,-86.97148623205781,-86.97035594731021,-86.97452897154626,-86.97735621796463,-86.98359760130707,-86.98439900183142,-86.98497602072734,-86.9824140559157,-86.97671206184901,-86.97353806149196,-86.97340507287832,-86.9760830840182,-86.98212009285561,-86.98500610180801,-86.98642812689161,-86.98303814722969,-86.97960415058888,-86.97963016057828,-86.98540720717223,-86.98796320956336,-86.98948120069956,-86.99250420235407,-86.99634022360505,-86.99953722732558,-87.00071623393058,-87.00280723258983,-87.00536022044272,-87.00754117834946,-87.01072715286951,-87.02106412002509,-87.02199610862299,-87.02764009936547,-87.03683409740276,-87.03812101348218,-87.03937153134829,-87.03945511386736,-87.03580112940055,-87.03585913414985,-87.0381021340671,-87.03858214212404,-87.03285816348691,-87.03371918416242,-87.03756118003677,-87.04162418639419,-87.03967621606017,-87.04051223220679,-87.03901925039557,-87.04653236294421,-87.04581740051513,-87.04376042074588,-87.04578942805912,-87.04128050053144,-87.03809776036951,-87.03704430249198,-87.03362760965584,-87.03033249626012,-87.02989250980872,-87.04073553369983,-87.04244873187328,-87.04458660985557,-87.04513353488356,-87.0505115258475,-87.05063051079318,-87.05588649130479,-87.05598046841904,-87.06248343841364,-87.06605340960851,-87.07942439856963,-87.08064143623261,-87.08501844529883,-87.07756949922388,-87.07650453104087,-87.07269934497403,-87.07062354854148,-87.06874313684555,-87.06515655743708,-87.06340841593989,-87.05808606257678,-87.05731257468364,-87.05447133077828,-87.05434359962196,-87.05105062136494,-87.04895265884669,-87.04884067297662,-87.0527876886477,-87.05178496334955,-87.05132670880003,-87.04709273014633,-87.04788433389932,-87.04802875831544,-87.05029475667642,-87.05079822980392,-87.05232174449334,-87.05741453923166,-87.05744574865724,-87.05826207092267,-87.059645760832,-87.0600327267082,-87.06200877423073,-87.0631587803004,-87.06527578301626,-87.06663694400433,-87.06800877348908,-87.06876627789725,-87.06951580078562,-87.06967274706088,-87.07143960296898,-87.07590972748993,-87.07910400412371,-87.08108069734163,-87.08583468068331,-87.08620372507966,-87.09272768288346,-87.09629270484822,-87.09606278868542,-87.09605472969326,-87.09579061217468,-87.09203674717483,-87.08608944084131,-87.08488375539955,-87.0841707768036,-87.08415471903311,-87.0799911294029,-87.07988078804679,-87.07956952951696,-87.07955380140044,-87.07950180660167,-87.07941782821186,-87.07925816388594,-87.07906943075611,-87.07894186357139,-87.08718986201248,-87.08725934258486,-87.0916408611815,-87.09677485266936,-87.09795682975903,-87.09724380203484,-87.10057078152622,-87.10960276469592,-87.11934776213242,-87.12291621161206,-87.12315077363057,-87.12279765184566,-87.12228979029709,-87.12338780199889,-87.1211578122047,-87.12144928130503,-87.12197586419761,-87.1236905704225,-87.12485381849416,-87.12470283359376,-87.12480988451455,-87.13051890448389,-87.13045949769867,-87.13018993018252,-87.1323240056751,-87.13254439385662,-87.13352096247368,-87.13369684213367,-87.13799879915719,-87.13938600842114,-87.15013599572188,-87.15131524772607,-87.15408600828231,-87.16347947600555,-87.16353101780726,-87.16853904282731,-87.17516509136148,-87.17562970804822,-87.18190310716304,-87.18312341916587,-87.18415012756584,-87.18940915600179,-87.18835477169114,-87.18792036690733,-87.18787521710149,-87.18791906941385,-87.18835253437491,-87.18837725101619,-87.18442626852911,-87.17827328481921,-87.17524229808082,-87.17344775517816,-87.17265031830303,-87.17170233738727,-87.17492235208208,-87.17946335689781,-87.18290335265858,-87.18673435548764,-87.1879866481691,-87.20424038591661,-87.21196596058985,-87.21239140880063,-87.21597942868958,-87.21614881722321,-87.21717332038449,-87.21719747006757,-87.21274149092903,-87.20842597036706,-87.20628753027066,-87.2069505451031,-87.20671049918003,-87.20545542585178,-87.20454757929947,-87.20993959521148,-87.2143295923287,-87.22425060957646,-87.22535762485776,-87.22643327737019,-87.23475917410659,-87.23629964935756,-87.23771623611073,-87.24974867244363,-87.26148068143009,-87.26287544451219,-87.26696622128368,-87.26744369671955,-87.26788945223906,-87.27138271358004,-87.27506292477756,-87.27603275814543,-87.27850879615681,-87.28097083654491,-87.28243704644102,-87.28256384666935,-87.2849108500982,-87.29188385464938,-87.30482687986768,-87.30730789085715,-87.30595890559835,-87.30947691612995,-87.31237592369391,-87.31310533335733,-87.31318689054133,-87.31340479923266,-87.31358432154337,-87.31375093539987,-87.3141652391617,-87.31463113204144,-87.31854195275103,-87.32039996987398,-87.3210679886606,-87.3206535131711,-87.31909701463661,-87.31898504245791,-87.32029621033782,-87.32120006183085,-87.32479555504703,-87.32736909785092,-87.33519614442625,-87.33675515775269,-87.33758718157371,-87.34149420443408,-87.34351123867485,-87.34808479006196,-87.34854426431774,-87.35186127771154,-87.35379229164681,-87.35597929986835,-87.36069131345131,-87.36236832685255,-87.3678138766043,-87.36826634748478,-87.37382736985791,-87.37499770260891,-87.37508169215198,-87.39758837170095,-87.48360935666661,-87.49900535425225,-87.51931035487846,-87.59016035647034,-87.64115435761993,-87.65115235776285,-87.73609541152847,-87.7337412390747],"lat":[44.67890514054898,44.68201712117599,44.69324808748552,44.69449715298442,44.69799207500377,44.70781305399149,44.70787248716941,44.71383498095859,44.71897103246507,44.72455001925955,44.7310059981997,44.73379798582602,44.7382269744736,44.74722831896398,44.75889390759907,44.76101604856019,44.76151289902982,44.7635864938358,44.77260985950633,44.7759868463474,44.7798738331789,44.78430482153738,44.78854881078058,44.79874077644215,44.80157243512991,44.803659086528,44.81357673697165,44.81399287880899,44.82318970940008,44.83149195114494,44.83501567962685,44.8383856706873,44.83839468196395,44.84009966494646,44.84300665530117,44.84704964608048,44.85179263458576,44.8533846307644,44.85311962981583,44.85303734437782,44.8523906264501,44.85129162643104,44.84994053002413,44.847318632799,44.84567082731738,44.84551775453095,44.84538307311717,44.84466374054214,44.84411664160408,44.83400466073405,44.83019564356563,44.83012766837069,44.82962166769206,44.83018312449915,44.83097066379946,44.82962166559452,44.82753644811086,44.82692467075575,44.82507067428017,44.82490167333364,44.8258914142841,44.82597281086079,44.82675666753904,44.82973187322668,44.82979066080652,44.83231865444608,44.84310563646306,44.84546463136046,44.84950862423356,44.85456361673476,44.8554617402541,44.85725461239344,44.85743861136613,44.85659978183429,44.85189742583458,44.85169961980863,44.85168354615418,44.85094717982565,44.85093834959645,44.85085661841741,44.85075362236908,44.85051961706528,44.8535526111781,44.85624860622561,44.85928160196929,44.85961860252789,44.86248259926889,44.86765131440969,44.86966759101519,44.87013883996208,44.87203258718522,44.87202557350662,44.87199158666407,44.86800159094956,44.86511859420954,44.86435659192257,44.86231359272264,44.86171541667199,44.85846182296284,44.8584386024041,44.85473258872209,44.85458753560821,44.85456356687442,44.85516898480142,44.85725955106262,44.85782507587692,44.86181854056338,44.86319478774064,44.86357353411682,44.86860187577325,44.86906150637228,44.87651715753505,44.87690946555468,44.87856848861188,44.87943845043824,44.88104759758748,44.88138843287023,44.88558039938355,44.88993638971063,44.89108322514152,44.8927193696565,44.8927423578368,44.88759732825766,44.88537932834509,44.8865683620113,44.88757837583886,44.88505238756085,44.8810103925613,44.88033737624542,44.88235835835103,44.88000035454971,44.8759413465332,44.87591944953342,44.86972634061554,44.86568661759273,44.86199134145558,44.86004833207366,44.85783425727352,44.8519862667863,44.85010606621243,44.85001433402804,44.84985831490598,44.8419253409578,44.84174471893336,44.83821033626587,44.83775569187252,44.83113833995152,44.83113833399993,44.831138328744,44.83113832769729,44.83337314550784,44.83434131282202,44.8348128318237,44.83780569180885,44.8383682085044,44.83889231234777,44.84339014608645,44.84428430783618,44.84530039018689,44.84934030003822,44.85052059641359,44.85208232600354,44.85229799694682,44.85304728200789,44.85641727520113,44.86029227219107,44.8655332633205,44.8692779788289,44.86954925533139,44.87330600971359,44.87376825254746,44.88511622428339,44.88996522069652,44.89070059119342,44.89109139830585,44.89532421850682,44.89820022980042,44.90449125739053,44.91180724113482,44.9170442165795,44.9207061954729,44.92313019213165,44.92488063480767,44.92514430327535,44.92522719725453,44.93375239572873,44.93439416548419,44.93706815036215,44.93798959117373,44.93942213698748,44.94244634078965,44.94299402615463,44.94599132403959,44.95663206544293,44.96673751927608,44.98079915019687,44.98764395867126,44.99487992607529,44.99997089191951,45.003315874081,45.00760586061543,45.01229284376323,45.01326783334898,45.01353082058935,45.01560280144452,45.01768185712157,45.02583250270915,45.02600491502155,45.02621202424535,45.02837474939514,45.03173573065232,45.03224475092708,45.03420172617157,45.03821571470604,45.03951770462527,45.04067468718153,45.04068924808926,45.04451166150709,45.05085664364677,45.05198129702293,45.05244762753139,45.05421462033058,45.05392115742265,45.05371061293689,45.05015357418437,45.04917661584341,45.04818246021875,45.04632261014958,45.04613851780977,45.04600532189626,45.04581859458956,45.04649058321202,45.05052057190259,45.05119392339282,45.05757255700806,45.06080555584673,45.06140068518235,45.06369455072811,45.06862312001928,45.06961153395859,45.07373376446415,45.07543651737075,45.07729050468006,45.07716010461393,45.07693749579834,45.07724748528825,45.08136146402963,45.08470878383762,45.08623194913892,45.08627544697195,45.0925854330146,45.10600741012481,45.1132383965089,45.12164437589099,45.13118934356648,45.13139434091367,45.12762834208466,45.12808533641382,45.13270332921458,45.13396832901991,45.13663732330286,45.14141431770067,45.14937730622835,45.1562092913472,45.15965928574872,45.16274627619381,45.16509227320877,45.16653127401886,45.1681702712804,45.17288725783963,45.17462224767323,45.17351624727369,45.16937025439308,45.16784825957459,45.1662822619844,45.16447026215464,45.16593024990767,45.16322924655056,45.16394124078958,45.1623592388522,45.15808924390912,45.15634698062016,45.15025824853625,45.14837124243594,45.15286522745347,45.15548722478599,45.15671422482143,45.16521921356586,45.17305020547557,45.18216024213211,45.1835941842043,45.1853311783618,45.18624120198955,45.18671717144601,45.18653816917674,45.1857146424387,45.18556960779301,45.1848303424558,45.1846951690035,45.18485479425201,45.18603616416216,45.18888316141965,45.190711157956,45.19191215523323,45.19212115241035,45.19110915215867,45.19165114721677,45.19284314270681,45.19223314025853,45.19024168799576,45.18989013814708,45.19110313352395,45.19112510501767,45.20022828994581,45.20544011653311,45.20978311328859,45.22299709888031,45.23059008734398,45.24152007297963,45.24542606565583,45.24831806089539,45.25366005765908,45.25700305557507,45.25843005313853,45.25960504888944,45.25822804724417,45.25588982863485,45.25584804540163,45.25519363359154,45.25367304112091,45.25284231842119,45.25266903715993,45.25551303448287,45.25803203430463,45.25936103498009,45.26572303368426,45.27207502902354,45.27358123307053,45.27720871093989,45.27982021227717,45.28035502507801,45.28765185415192,45.28949602193624,45.2938400201398,45.29582001877376,45.29880301395788,45.29644001371867,45.29283801436372,45.29141301339993,45.28588801281985,45.28476700874625,45.28534300759205,45.28794300501826,45.28800900311054,45.28762800052419,45.2860248011899,45.2856219983733,45.28746099625595,45.29214299631188,45.29491299524834,45.29783999364295,45.29925399184731,45.29875199051302,45.29594698976264,45.29548098875237,45.29450798747205,45.29506798472062,45.29627298381401,45.29824598348563,45.29806098400034,45.29607698463281,45.29536798575225,45.29068398695786,45.28733454200433,45.28411698829897,45.2814952379134,45.2784549891073,45.27182298912042,45.26968694922548,45.2649714621623,45.26436598840469,45.25867398883722,45.24817299130862,45.24614599359183,45.2458099942882,45.24330499613306,45.24122999726077,45.24011499720324,45.23856099791507,45.23332300150767,45.2284400055481,45.22722000694146,45.22505100851466,45.21579201437359,45.21566001408291,45.21780301230146,45.21789601177907,45.21389701408965,45.21358101383258,45.21204401543373,45.21177301727909,45.2136940178704,45.22212701326549,45.22672801216413,45.23097701637451,45.23316401529492,45.2336240189344,45.23157302721368,45.22950346974277,45.22749244617727,45.22735803273228,45.22502203204086,45.22399303295869,45.22341103512866,45.22156403707555,45.21853303530684,45.21389003987669,45.21374804299931,45.21131204829667,45.20550205177649,45.20183705563211,45.19835205740372,45.17238608676642,45.16456509303089,45.16078609437928,45.15870209819835,45.15562223186046,45.15344823051152,45.15272865594327,45.15039485090033,45.14814409182017,45.14536409367618,45.13748111166112,45.13694432757118,45.13627448161395,45.13610311752378,45.13665312273397,45.13982911999089,45.14263212291254,45.14747911853807,45.15219112071457,45.15739611930501,45.15629713357531,45.14799314317703,45.14495015075997,45.13541015263618,45.12892715796386,45.12748815524199,45.12670315374054,45.1265301413091,45.12620014823499,45.12582640371745,45.12468850930696,45.12452314118705,45.12016410712504,45.11996814208852,45.11617214183786,45.1087181461498,45.10573614869455,45.1014061572596,45.09871228371287,45.09748115908236,45.09399415710647,45.08872034606093,45.08775816381662,45.08754216681041,45.08806104297933,45.08963116741583,45.08748035621824,45.08746717571834,45.08630281185865,45.08432918137468,45.08376634100645,45.08089218756827,45.07931619051196,45.07821419424481,45.07888556430217,45.07956219641238,45.08193079965942,45.08427444587922,45.08476519345988,45.08550372432811,45.08737219863857,45.09053004844253,45.09248419985445,45.0948332032259,45.09471638171002,45.09265121386628,45.08711422411909,45.08208839412917,45.08191222937459,45.08173409045948,45.07920222717917,45.07922217426609,45.07922621809895,45.0748632216646,45.0748582545821,45.07357034893263,45.07353621750502,45.0709156395401,45.07078321985802,45.06862042366092,45.06512722537736,45.06264922766108,45.05972008077058,45.05774023217676,45.05605524499981,45.05604103991107,45.05514525196203,45.05569625831693,45.0602582550149,45.06630224758941,45.0698272481377,45.07117025837855,45.06932327312278,45.06617333436817,45.06596628198163,45.0646099574863,45.06265928469116,45.05992228933603,45.05831128822248,45.05813574522524,45.05781860032427,45.05678588479441,45.05608529578524,45.05293629926594,45.04216731201576,45.0365813266572,45.03561720126481,45.03124233254248,45.02637136615048,45.02586833642346,45.02363934647173,45.02330726254078,45.01518460203128,45.01256536861221,45.01004389433636,45.00976729368762,45.00911739514761,45.0049134818263,45.00489041502445,44.99834843330436,44.98588547446044,44.98554084129447,44.98088749715503,44.97818785460511,44.97591651286295,44.96863253881524,44.95965618803396,44.95595794507095,44.95557356867128,44.95491879994512,44.948446637579,44.94807758789304,44.9448725899058,44.94223858726264,44.93975358891718,44.93689144123034,44.93561959533049,44.93147660421363,44.92774961819882,44.92608362899479,44.9265756328295,44.92546364119725,44.92484529657766,44.91681968802614,44.91141533223409,44.91111771380115,44.90659773000374,44.90537979030245,44.8980133944132,44.89783975305867,44.89380675648457,44.88853904099803,44.88592876649505,44.88273977522866,44.8820259220097,44.87829356074491,44.87559378929413,44.87198380571,44.87241181084546,44.86844583442191,44.86525384370676,44.86473342133535,44.86070518472823,44.8599598717789,44.85944596948673,44.85508090220588,44.85102494439809,44.85004887621363,44.84718611252814,44.84685197076785,44.84639173444525,44.8427849910868,44.83518407028747,44.83318102585836,44.82529805050742,44.81697807593954,44.81490902052681,44.81473008523292,44.81366309383048,44.81160411678674,44.80460416593008,44.80209317777248,44.79947617991678,44.79690019449266,44.79499920597384,44.79369848531007,44.79355304836336,44.79316446242697,44.79284432905004,44.79254721468984,44.79219768407901,44.79180462990463,44.78850523538133,44.78496424748854,44.78128825684655,44.78030746679918,44.77662426170221,44.77133627251703,44.76896968774782,44.76733828630596,44.76286450874664,44.75966231717719,44.74973735646159,44.74528637462939,44.73775240106858,44.72553619541539,44.7192294745069,44.71152820785678,44.71075451289965,44.70631453435025,44.7019165525487,44.69923156578911,44.69474459005503,44.69064160652921,44.6846412121843,44.68414263925958,44.67730367202323,44.67551844863404,44.67539033114307,44.67551172621695,44.67532490281778,44.67523193456385,44.67519995344365,44.67546901428184,44.67576505786776,44.67587206630523,44.67702755210072,44.67890514054898]}]],[[{"lng":[-91.15681227515655,-91.15301561967004,-91.14905461565475,-91.14501461157762,-91.13655160302429,-91.13123459766801,-91.12276658914244,-91.11832758467494,-91.11453358164928,-91.11050357758394,-91.10958057586819,-91.10493157220327,-91.10144156800715,-91.09892156513916,-91.09536556155945,-91.09101655718051,-91.0870845532194,-91.0797095457892,-91.07722954329209,-91.06891753491396,-91.06526953123701,-91.06221052815623,-91.05727452318885,-91.05477152067567,-91.05367851958323,-91.0535405205294,-91.05258352328612,-91.04758152289493,-91.04319052155353,-91.04094151955586,-91.03685751407608,-91.03388751230749,-91.0228985112204,-91.01815951585044,-91.01442051612862,-91.01207051769165,-91.0111135207807,-91.00817752572307,-91.00442653891326,-91.00092754079546,-90.99773954313845,-90.99292254186915,-90.98917954512903,-90.98568454358249,-90.9829305456386,-90.97675855260434,-90.97392155753973,-90.96943056180071,-90.96604856707076,-90.96511457235081,-90.9634615757963,-90.95911857910608,-90.95307758924504,-90.95061859597308,-90.94915360186276,-90.94549462047053,-90.94008663806352,-90.93748064197672,-90.93184864531193,-90.92918664418725,-90.92366463981107,-90.9162176330001,-90.91413563196585,-90.91184263247062,-90.90398463631033,-90.90314063784071,-90.89822164564572,-90.89225264540543,-90.88764964700026,-90.88294865055084,-90.87958065018857,-90.87767664983049,-90.87241364455659,-90.86971864570128,-90.86656964361285,-90.86311264500725,-90.85903664507056,-90.85478764827415,-90.84862564707892,-90.845745648497,-90.84387965359102,-90.8433736567558,-90.84112366332471,-90.83991766518051,-90.83853766599607,-90.83125966246328,-90.8260466636092,-90.82279366567894,-90.81962067252127,-90.81565067726216,-90.81236367933619,-90.80979768205721,-90.80887368573519,-90.80870069329329,-90.8078516954636,-90.80470669909697,-90.79985870385842,-90.7987527044766,-90.79273370641396,-90.78692870485946,-90.78489570524513,-90.77499470593996,-90.76927670435089,-90.76551070226752,-90.76329970228451,-90.75698870636393,-90.75666070703966,-90.75192471302077,-90.75020171390672,-90.74528070289549,-90.7424546980117,-90.73898469738776,-90.73784970015089,-90.73487369943962,-90.7328647086788,-90.73201371076905,-90.72810770995399,-90.72667571330086,-90.72128570958844,-90.71933371014765,-90.7156047056688,-90.71115970171496,-90.7086486981718,-90.70582369662766,-90.70507769743563,-90.70039169329242,-90.69821269233066,-90.697673693883,-90.69734170136209,-90.6981417086444,-90.68986270308918,-90.67864568254791,-90.67459167169038,-90.67086266349251,-90.66678565558114,-90.66661565521281,-90.66043464179093,-90.65656963584311,-90.65202963205246,-90.65005263124559,-90.64251462398741,-90.64048962133114,-90.63768661520216,-90.63453860973489,-90.62771960276005,-90.62005159267648,-90.61556758409766,-90.61054557579904,-90.60860757324356,-90.60331157223565,-90.59850957243737,-90.59586657120576,-90.58890256999273,-90.58440756482588,-90.58231156319218,-90.57568255376965,-90.5687245419435,-90.56339853428453,-90.56083652979548,-90.55812752465015,-90.54722251321991,-90.54540751111875,-90.5405915014021,-90.53774549175083,-90.5342804824386,-90.5298204721002,-90.52699746676353,-90.52041645221094,-90.51195443992441,-90.50589442941551,-90.49622840662744,-90.49073639890683,-90.48545639055294,-90.47947537801713,-90.47361636888213,-90.46493735485272,-90.46237935132287,-90.45271933946977,-90.44512732436762,-90.44244332018683,-90.4392853156788,-90.42982430604808,-90.42968328788024,-90.42967628623705,-90.42957626526382,-90.42954225761359,-90.42953524959538,-90.42953424949494,-90.42991111993301,-90.42986411203817,-90.42984010790659,-90.42983610726834,-90.42907597714823,-90.42887597366153,-90.42860492299772,-90.42860092244587,-90.42850387413488,-90.42838985719223,-90.42855292005275,-90.42850293484389,-90.42849794455998,-90.4284989458708,-90.42848695386085,-90.42847096309173,-90.42842299554006,-90.42831001701221,-90.42765512645069,-90.42765412672767,-90.42743817011589,-90.42742323428112,-90.42736127886711,-90.42735530834432,-90.42729732077757,-90.42722233501206,-90.42693739870212,-90.42690140887441,-90.42669545167207,-90.42635749634955,-90.42629351845243,-90.42627854033434,-90.42612361499474,-90.42609662233886,-90.42604063665664,-90.42593166513582,-90.42588067932414,-90.42587868839738,-90.42587869065453,-90.42587370762006,-90.4259877214394,-90.42584173012555,-90.42580373231525,-90.42580073488477,-90.4258807498242,-90.42588676594549,-90.42587876782709,-90.42585977140536,-90.42589777577308,-90.42592077867292,-90.42602479236285,-90.42608779908555,-90.42611780283437,-90.42616880912107,-90.42619381233216,-90.42623181688349,-90.42637776992224,-90.43701082447237,-90.43717440058212,-90.47495478828698,-90.47944578413377,-90.4858762393809,-90.49171577226542,-90.53061923918865,-90.53225376143493,-90.54434676009876,-90.54479876004751,-90.55116475947217,-90.55586175927334,-90.56535325763524,-90.56544075823716,-90.58542709630562,-90.58991410913866,-90.60931183314563,-90.60981345158633,-90.61066884199467,-90.61303086684566,-90.61458875296807,-90.61773075263928,-90.62491688677888,-90.62970851135675,-90.63478595620485,-90.63902485859902,-90.64284274974769,-90.6359887415457,-90.63598866328104,-90.63598273732772,-90.64167372298297,-90.64256063738131,-90.64403270982848,-90.6470297039545,-90.6541266965861,-90.65912668631567,-90.66142376758256,-90.66152667359289,-90.668279295445,-90.67272666260126,-90.67475170496263,-90.67705465928118,-90.6793746564212,-90.68548664639015,-90.68697464373741,-90.68777464027255,-90.68799863466202,-90.69104017262362,-90.6920306210762,-90.69399861606958,-90.70009460657195,-90.70085560178016,-90.70267059663816,-90.70630259266643,-90.70920359049279,-90.72020858539626,-90.73113158275793,-90.74367658091342,-90.76038857718434,-90.76253120643631,-90.76949457457424,-90.77875157287846,-90.77936962924217,-90.78092844123759,-90.78822557187645,-90.79701656976071,-90.80541987580195,-90.82815303081274,-90.83270156320779,-90.8439095616602,-90.85249655970054,-90.86712455529945,-90.88117207647969,-90.88742955113061,-90.89689741239916,-90.89889884675821,-90.90026054686257,-90.91339953924569,-90.92115453647322,-90.92363353638345,-90.92988053800995,-90.93704453890251,-90.9415665384237,-90.94921253649011,-90.95241453512696,-90.95450677560393,-90.96504752779325,-90.97423652554379,-90.97773452376781,-90.9805775213554,-90.98877551015573,-90.99553550448212,-91.00012750179262,-91.00815527349815,-91.00957650703063,-91.01510046916158,-91.01568651436899,-91.01723851558555,-91.02678552010613,-91.02969152019412,-91.03071751792258,-91.03096959388056,-91.0309835149157,-91.0320125137663,-91.03541751402308,-91.03938251682831,-91.04413852161028,-91.04480046567933,-91.04657052577313,-91.04997152959508,-91.05127453083502,-91.05373253196869,-91.05480053045997,-91.0548095257242,-91.05629652423613,-91.05809052392364,-91.06017152522469,-91.06467952990405,-91.06578253105585,-91.06549153076492,-91.063119528306,-91.0614315265582,-91.06012852521458,-91.06026052535812,-91.06325352846657,-91.0695485350024,-91.06990930161091,-91.07071553622421,-91.07113753667777,-91.07244653804075,-91.0754805411884,-91.07559946802661,-91.07809654390383,-91.07884399905257,-91.07931354517534,-91.07866454451724,-91.08276954873951,-91.09013555631054,-91.09405956034315,-91.09511356142336,-91.09492939015017,-91.09297767559512,-91.09169888669898,-91.09140155760646,-91.09183655805204,-91.0953285616289,-91.09765556400858,-91.09881956519523,-91.09823756458685,-91.10056456695511,-91.10405057050976,-91.1121575787711,-91.1155115821814,-91.11741058411388,-91.13030217379143,-91.13799960505894,-91.14337461052808,-91.14470561187481,-91.14555961273038,-91.14617661334533,-91.14618161333279,-91.14586761299475,-91.14387761093187,-91.14387502564223,-91.14379961083743,-91.14431461133537,-91.14551661252987,-91.14978361678801,-91.14987961687245,-91.14908961603726,-91.14553961237029,-91.14542961224707,-91.14654961334378,-91.14712226892237,-91.14800061479053,-91.15090561769372,-91.15551862231104,-91.15656162334359,-91.15674262344569,-91.15681227515655],"lat":[42.98817032007872,42.99011846901494,42.99321448637996,42.99419050171958,42.99891553727755,42.99951355691667,42.99965558722149,42.99930360254506,43.00030261709098,43.00029763143333,42.99957463402178,43.00038065129441,43.0001246636302,42.99824266999585,42.99721468109207,42.9945586924875,42.99364970495255,42.99347673063219,42.99444074089745,42.99248376695812,42.99207477908325,42.99255279062731,42.99408381060631,42.99603482282185,42.99792182998701,43.00037483420194,43.00166583790117,43.00325585603338,43.00429187184758,43.00436987984845,43.0038808942541,43.00427890487584,43.00754494442081,43.01061496167684,43.0118969750834,43.01315298356074,43.01446798711826,43.01699799780351,43.02244201167453,43.02409402414482,43.02525502897182,43.02511603203078,43.02640003459901,43.02609703679698,43.02693903869295,43.02963204312376,43.0314630452953,43.03319404856569,43.03520605119613,43.0370570521898,43.0383460535615,43.03980305679922,43.04375506180534,43.04627606409662,43.0484340656363,43.05520906990292,43.06188307555475,43.06353507791788,43.06533808259278,43.06524408454197,43.06431908835568,43.06272309334257,43.06258509482858,43.06302709666515,43.06533410328395,43.06599410414969,43.06946010911022,43.07012011386431,43.07130211781509,43.07324812218526,43.07355912488705,43.07367812639253,43.07237412983874,43.07317313224776,43.07279513447754,43.07380313758112,43.07438914097663,43.07623614513188,43.07664715008884,43.07762615281207,43.0799261554432,43.08126215652873,43.08422915984357,43.08516116128834,43.08570716267315,43.08544816832011,43.08676117320076,43.0881471765875,43.09150218107224,43.09416018585459,43.09561318940897,43.09721919248577,43.09893219428695,43.10213519637403,43.10321019774013,43.10535720170931,43.1083512076976,43.10884120895217,43.11092421545064,43.11148522081933,43.11208922297594,43.11456423324604,43.11514123863078,43.11506124185601,43.11557324415373,43.11889325212132,43.11927925269669,43.12316425980462,43.12399826197482,43.12327326677734,43.12359727012537,43.12646427616949,43.12876427922188,43.13113428438627,43.13719129142334,43.13891829375226,43.14206430068008,43.14488530457536,43.14802431327725,43.1500283171565,43.15131832251007,43.15348332944134,43.15410733286981,43.15591933767466,43.15695033941571,43.15922834682073,43.16072335065429,43.16190535230574,43.16559335588153,43.16819135717763,43.17297337119636,43.17354138511456,43.17219838874311,43.17177139280268,43.17177839767209,43.17176139785914,43.17113140464087,43.17183440991059,43.17408841747756,43.17544542114529,43.17873843339705,43.17930543639478,43.17899643947652,43.17928044355773,43.18205645457752,43.18417146603462,43.18421647154021,43.18484547830743,43.18537348121927,43.18944849196529,43.19362350229289,43.19532550737578,43.2006895218047,43.20221752909013,43.20326853286682,43.20472254279961,43.20539755231291,43.2065195602923,43.20670756373948,43.20673256718812,43.21085858575693,43.21145658876135,43.21124759464122,43.20943359611508,43.20828259913951,43.20751560386518,43.20755160747709,43.20672661479259,43.20842862757625,43.20890963584712,43.20615864434902,43.20599765069771,43.20544065632868,43.20347766118415,43.20290666758398,43.20183767687241,43.2017846799117,43.20223069207773,43.20003769903052,43.19976870203173,43.19963270574968,43.20094171853724,43.19296371115475,43.19223871047707,43.18299070185053,43.1796156987011,43.17606169534757,43.17601769530726,43.11831864011873,43.11484163689811,43.11302163521191,43.11274063495208,43.05539958203374,43.05395458104241,43.03160056048899,43.03135756026793,43.00995654030708,43.0024895335146,42.97695843470636,42.9719554139228,42.96867640025069,42.96823439840488,42.96553638716795,42.96241937418827,42.95146732855991,42.94421429844505,42.90737314521211,42.90728014482391,42.89273108410372,42.87119599395606,42.85624993139517,42.84636088998634,42.84221087260829,42.83746585273026,42.81625076375654,42.81286274953639,42.79865268982659,42.78392762777359,42.77658959689223,42.76929456622671,42.73304549525384,42.7255584997698,42.71096250858175,42.68189452617797,42.6673915349811,42.6580535406678,42.65572954208331,42.63827055271637,42.62384756150707,42.61515056680059,42.61295756813921,42.61031556975051,42.59480457919121,42.57819758930363,42.57627159047978,42.57261359271607,42.56806459546945,42.56504859729426,42.5508276058839,42.54383661008799,42.53994661242744,42.53342561634368,42.53009761834079,42.52537962116713,42.50706006086716,42.50714762089808,42.50714907352986,42.50748458102279,42.50741657633056,42.5075255782302,42.50762456348505,42.50757559798281,42.50757354092001,42.507707535726,42.50771353553207,42.50769153278583,42.50750953073406,42.50759969540564,42.50760052661926,42.50778473331002,42.50782608845001,42.50800487011256,42.5080094933447,42.50801737716255,42.50803914707444,42.50805350553636,42.50807750418922,42.50819311113133,42.50827019639883,42.50835187980128,42.50842007315143,42.50848149348297,42.51540949814424,42.51545255257712,42.51871249896403,42.52962449935924,42.5334729554583,42.53986050103399,42.54435850102822,42.54990049976784,42.55790050006112,42.56756647968301,42.56799950197317,42.57318455505536,42.57659950044701,42.57782351000802,42.57921549970891,42.58150349958886,42.58961449997009,42.59177450013767,42.59460650074659,42.59919850209167,42.60762310952403,42.61036650429372,42.61450950499384,42.62246150570712,42.62644550677376,42.63075650765302,42.6341695077446,42.6360785075659,42.64075850611809,42.64343750409385,42.64556050149696,42.64913149288695,42.64967550200039,42.65144348679907,42.65296548041667,42.65302569383065,42.65317755925718,42.65388847367331,42.6557724682156,42.65715947372723,42.660911689508,42.66166244662828,42.66307143996794,42.66482243569541,42.66872842989808,42.67131723596513,42.67247042094506,42.67526259359915,42.67585283785122,42.67625441768483,42.68294941899507,42.68540641809533,42.68550041683102,42.68412841120259,42.683399405941,42.68384440403439,42.68557340247944,42.68677840268116,42.68784746213733,42.69323340693218,42.69524940583087,42.69681640693726,42.69893240944521,42.70872442412032,42.71370443097445,42.71618943393416,42.71953171020287,42.72012342543034,42.71931516299882,42.71922941326147,42.71956641122168,42.72422840307118,42.72677440242038,42.72968440565563,42.73240041691523,42.73255041014922,42.73448441161955,42.73734041024157,42.73847840479549,42.73860539614935,42.73821399874382,42.73716738929763,42.73690538258445,42.73700138032611,42.73823837770773,42.74052937927625,42.74468638570904,42.74734138695904,42.74924638640503,42.75048138431951,42.75091437624196,42.75338737821926,42.75708138497603,42.75727339003389,42.7579743945962,42.75998640064113,42.76184740355285,42.76394740103337,42.76962839755306,42.77144428739961,42.77550240476411,42.78300441615588,42.787732421027,42.79546642682101,42.79596922914563,42.80652643856811,42.81499166272403,42.82030945759487,42.82767847086327,42.82997746439723,42.82923744511851,42.83081343781228,42.83496644136743,42.83570540955083,42.8435364624354,42.84866747079545,42.84986047308113,42.85122547400626,42.85532047098777,42.85987147154653,42.86442147509228,42.87579849329948,42.88307849741747,42.88597149175607,42.89114947595923,42.89467247113203,42.89583746722015,42.90080584944618,42.90377241731084,42.90467040255944,42.90596440014397,42.90798039995574,42.90985040028316,42.91233840313978,42.9149674071199,42.9206464197532,42.92072036566883,42.92287742260014,42.92659242535484,42.93037842602976,42.94024442391033,42.94195542553951,42.94655443327838,42.95651045622631,42.95821145855854,42.96334546078595,42.96445446123832,42.96615545917314,42.97051445436282,42.97577444457101,42.97822644368671,42.98783045349894,42.98817032007872]}]],[[{"lng":[-89.42596316787058,-89.42532031153647,-89.42538035074477,-89.42521939273067,-89.42471960690119,-89.42454078101775,-89.42428395502856,-89.42453108933741,-89.42456011027102,-89.42482330426122,-89.42482430470118,-89.42089529400512,-89.34426008023739,-89.30128995245968,-89.24759079115061,-89.22867871561661,-89.21600766407315,-89.19519958222217,-89.18008152205917,-89.17407549792475,-89.12511630281456,-89.09833219636018,-89.06766507534599,-89.04648899241842,-89.0393369642908,-89.02641291376328,-88.98767366179489,-88.96968044612051,-88.92305988730627,-88.92524501887681,-88.92655305877854,-88.92612906559427,-88.92609907314421,-88.92602307776629,-88.82195392251978,-88.8025617073387,-88.80253970709435,-88.67799180018731,-88.67921375592127,-88.67923775437973,-88.68006197177165,-88.63816961453097,-88.63848870933789,-88.64031623459928,-88.64115532108534,-88.78554987679874,-88.80678807233575,-88.93055221191564,-88.97128158724126,-88.97678163743987,-88.98245869006989,-88.98167856729859,-89.00010772914808,-89.01211574450426,-89.02230275810069,-89.10190486100518,-89.10897287026225,-89.11067687234268,-89.12224488726007,-89.22381301826154,-89.22381401842175,-89.22428309772867,-89.22421310422288,-89.34606109695763,-89.42597006792086,-89.42580014920448,-89.42598415307573,-89.42596316787058],"lat":[45.15472877932303,45.20607469817553,45.22007167588331,45.23512365210308,45.29317475680399,45.33668788583229,45.38025001504501,45.41363411373619,45.41884012913485,45.46705727177532,45.46716627209755,45.46734527514521,45.47001533189562,45.46934935741575,45.46861539005665,45.46849340478891,45.46793141324686,45.46836943109115,45.46833644302617,45.46815744724886,45.46736148350737,45.46640550136761,45.46555252238995,45.46443953479822,45.46462254104669,45.46436255010371,45.46506553046321,45.46509246787569,45.46513730560966,45.40656408486007,45.39256603475781,45.38609400806992,45.38168999079393,45.3786369786297,45.37827862269292,45.37821055637024,45.37821055629529,45.378682052105,45.28058075383456,45.27705074298887,45.20499264300641,45.20481347564202,45.1932784654145,45.12814040970151,45.11734440357645,45.11765612112877,45.1176742114811,45.11780973783659,45.11806991053614,45.11771893469363,45.11799795822284,45.02891715375842,45.02924924267065,45.02912923373086,45.02944922518245,45.02949716406705,45.0296041584516,45.02950115733682,45.02947714851437,45.02924607096779,45.02941207074822,45.11169496211186,45.11856695309342,45.11867588538106,45.11909783598974,45.14807079002269,45.14945478769705,45.15472877932303]}]],[[{"lng":[-90.97806528272679,-90.97727727750969,-90.97531527505252,-90.97195127852981,-90.97033027517139,-90.96916826911752,-90.9692682628943,-90.96732024979383,-90.96709824426927,-90.96456923669754,-90.96243023905987,-90.95857323165414,-90.95831222175005,-90.95725121463867,-90.95390921307916,-90.95183121046928,-90.94977120391165,-90.94910119542904,-90.94649818546871,-90.94490118697256,-90.94542919467717,-90.94338819666474,-90.94144119201064,-90.94072118633596,-90.93809118036239,-90.93371818113251,-90.92930118045228,-90.92569017766434,-90.92167917059324,-90.92051016423368,-90.91611115101041,-90.90457712888336,-90.89278612375061,-90.79248508349693,-90.77545607671495,-90.77467107642207,-90.67239801236236,-90.65307399882278,-90.59192995610465,-90.5534189292361,-90.54644392439238,-90.46196785062378,-90.43572982181601,-90.31509269932089,-90.31251969668079,-90.31230177211584,-90.31246384727119,-90.31264792085267,-90.31264792125603,-90.31278995656936,-90.31269202143157,-90.31269102157954,-90.31230015397544,-90.31220318460662,-90.31220523179128,-90.31221123896044,-90.31229926438235,-90.31226927524943,-90.31223828247623,-90.31205532448134,-90.31190039583454,-90.31177344334154,-90.31184148572029,-90.31185449732506,-90.31190450894195,-90.3122236008217,-90.31228666922648,-90.3121927819471,-90.33267984698578,-90.33379785053037,-90.34195387641404,-90.34225287736315,-90.35156590660829,-90.35177390725774,-90.36499594973951,-90.36899896278936,-90.37360597772371,-90.37415397946026,-90.3876750226968,-90.38874102582344,-90.39365704182354,-90.40121506583507,-90.41631911401166,-90.43283116694703,-90.4328841671267,-90.43968718766928,-90.44968621783531,-90.45999824903755,-90.48745633250738,-90.50798138268516,-90.55245445050498,-90.55252045061162,-90.5549644545208,-90.5572544574764,-90.58472649883511,-90.58720650253045,-90.58721249142855,-90.597223507015,-90.59964851075772,-90.60702152204831,-90.6070565321552,-90.66512861929328,-90.66613662070799,-90.67093262822522,-90.6844186489509,-90.75519673829017,-90.77050370604773,-90.79065966349822,-90.80179664000693,-90.8057336317265,-90.83659156653793,-90.8407985576286,-90.90924941309075,-90.91063841026184,-90.91065241023408,-90.91053940429828,-90.91066240249614,-90.91072438430305,-90.91074037996367,-90.91077336963315,-90.91097522027508,-90.91099117572233,-90.91096915349415,-90.91055900046993,-90.91032896756157,-90.91026895655935,-90.91009991287054,-90.91009991281582,-90.91008490443708,-90.91008590374518,-90.91009489512363,-90.91009689383429,-90.91008789333799,-90.91007289072549,-90.91009287827269,-90.91014786839381,-90.91019186033286,-90.91028484915616,-90.9105288294966,-90.91070181216904,-90.91152774029644,-90.91174771927869,-90.91194370080241,-90.912535646534,-90.91262063652213,-90.91319452822827,-90.91302541804642,-90.91291639717092,-90.95306647496254,-90.97310551423482,-90.97365932771659,-90.97226032593514,-90.96790731450447,-90.96722930695165,-90.97086329788839,-90.97395029405486,-90.97773829130331,-90.97806528272679],"lat":[44.12852992438934,44.12960892417041,44.12977792060603,44.12818691216251,44.12864790961,44.12988790893923,44.13145491111504,44.13431291105748,44.13565191235532,44.13706290944393,44.13603890410303,44.13717789840694,44.13970590132614,44.14136690161763,44.14116589520913,44.14147789182919,44.1428688900141,44.14505289188446,44.14734289046673,44.14666488662677,44.1446218846265,44.14370387959286,44.14465787745967,44.14613387833792,44.14738587548104,44.14640586615455,44.14580785728199,44.14597985104989,44.14741884615922,44.14919984696682,44.15266484490706,44.15829883455438,44.15845281468814,44.15886764447694,44.15907261600405,44.15905661462375,44.15951261937798,44.15961663092696,44.16006766749657,44.16021569012467,44.16028469427526,44.16089470022582,44.16112968544822,44.1551976158111,44.15519861442312,44.11160360973762,44.06829360521133,44.02578460069155,44.0255516006667,44.00508459844617,43.98138468139013,43.98133568161003,43.9372998790504,43.92708592482565,43.91135599531637,43.90896700602266,43.90051104392689,43.89688306018248,43.89446707100554,43.88040813397343,43.8565342408988,43.84060531221502,43.82648637548986,43.82261839282338,43.8187704100845,43.78834554657479,43.76560064854585,43.73148076960957,43.73056478449163,43.73051678529106,43.73016179111286,43.73014879132549,43.72983279769957,43.72982679783883,43.72912480742473,43.72886381041638,43.72858781378444,43.72856581415859,43.72792382355966,43.72794882412679,43.72764382767156,43.72733383273948,43.72667284285454,43.72589485386055,43.72588985390041,43.72590085775935,43.72592386342069,43.72592386930385,43.72582688511926,43.72579289226314,43.72565089206383,43.72564889206463,43.72558589208414,43.72573689196862,43.72580889174714,43.72582889172762,43.72952789107592,43.72952989155988,43.72954189167729,43.72961189204339,43.72598689162392,43.72642489182766,43.72648189188656,43.72637489179007,43.7262598916712,43.72565286836252,43.72555580344653,43.72551571816972,43.72548167103605,43.72545265434628,43.72544052391583,43.72545350615491,43.72539421681698,43.7253362109014,43.72533521084145,43.72871921400986,43.72956321415668,43.73945722174383,43.74181522354508,43.74743422785736,43.79775410437031,43.81250106584198,43.81986704667445,43.87048291494263,43.88130188671231,43.88491487724409,43.89925383953722,43.89927183948978,43.90202383223688,43.90225183163592,43.90509182415102,43.90551682303113,43.90567682260837,43.90653082035524,43.9106358095388,43.91390980092954,43.91658279390809,43.92030678415474,43.92691076696711,43.93272675187036,43.95708368945215,43.96424367128612,43.97055865534459,43.98922560867854,43.99266260009288,44.02883963147195,44.06475769149573,44.07152270262944,44.07113579657689,44.07088284347866,44.11658590115459,44.11663789839524,44.11827389169763,44.11997989252315,44.12316690376415,44.12485691192549,44.12640392120048,44.12852992438934]}]],[[{"lng":[-92.05035718623289,-92.0502001849017,-92.05008308341587,-92.05027907878333,-92.04983106387959,-92.05043802008889,-92.05040799534234,-92.05040899460204,-92.05043797870772,-92.05027785079842,-92.05020184944436,-92.04963676363445,-91.99899976095726,-91.99622075742866,-91.94472869911269,-91.94176569555387,-91.92299567485721,-91.88768363421354,-91.80945654495488,-91.79803253199471,-91.56168497910444,-91.55128300824775,-91.55065116585176,-91.55064519260098,-91.55095221796144,-91.55157428981343,-91.55177628200927,-91.55180528092247,-91.5491412836228,-91.54843728434383,-91.541807291122,-91.5418042857538,-91.54217228154231,-91.54213225576113,-91.54132224203912,-91.54145123719509,-91.54138022685019,-91.54141720787145,-91.54118920337636,-91.54095619884835,-91.54017518001301,-91.54063917310013,-91.54044716788486,-91.54084615874724,-91.54123714907342,-91.54068379131233,-91.54055975861213,-91.54047266324714,-91.54029461294242,-91.59622951659607,-91.6020385051266,-91.63175545225485,-91.641346435862,-91.64267243392072,-91.66237740014758,-91.67258538193524,-91.67997337073113,-91.682770365783,-91.78285724998901,-91.78581725057892,-91.84666126106823,-91.84701526113739,-91.87567626474845,-91.9086692700035,-91.97902328721658,-91.98479828643157,-91.99273828983728,-92.01135727028705,-92.03122822952811,-92.03141722912625,-92.03122826696638,-92.03154653650601,-92.03141014701674,-92.03167640598224,-92.0315264045342,-92.0318673797333,-92.03191537640886,-92.03193937377392,-92.03197236406183,-92.03196735166131,-92.03249628798891,-92.03270027634707,-92.0327022761419,-92.03306224861701,-92.03340420263183,-92.05064819695629,-92.05035718623289],"lat":[45.99813397593248,45.99992797083853,46.03796089489843,46.03968289141645,46.04528388034418,46.06163884755681,46.07090082907823,46.07117782852512,46.07712481664777,46.12499272115536,46.12549972016679,46.15759865629479,46.15740867312655,46.15754767248273,46.15756166554097,46.15763066503739,46.15744966277883,46.1576676577595,46.15786664719975,46.15787164568832,46.15784753209047,46.1570465267389,46.07034558856672,46.05547759922913,46.04111160960569,45.99756363534834,45.98508161603561,45.98334161334668,45.98310061231318,45.98305061205997,45.98258760966157,45.97441759637498,45.96856858699583,45.92919452305186,45.90742548703432,45.90021147539059,45.88445844965922,45.85570940286001,45.84875939124527,45.84178137955377,45.81307833147535,45.80280031539132,45.794906302158,45.78117728040764,45.76655225726535,45.67588122575638,45.66885822518704,45.64843522408045,45.63760622323306,45.63832333415925,45.63812834566063,45.63815940457571,45.63827342360069,45.63833942623606,45.63853846532404,45.63853048556206,45.63880550024256,45.63880750578868,45.63866672585163,45.63868673367833,45.63889189457746,45.63889389551492,45.63884097120451,45.63889605846852,45.63957624575568,45.63941926073331,45.63962928218877,45.6398973226949,45.63993135899146,45.63993035933351,45.64342036754455,45.66859942994041,45.72546756916325,45.75432461879366,45.75627161325905,45.78367754226831,45.78735753272353,45.79030152504966,45.8012574963475,45.81533045936632,45.88697027181033,45.90002323764826,45.90025523703877,45.93137015525149,45.98382601673377,45.98392301652948,45.99813397593248]}]],[[{"lng":[-90.04519942068829,-90.04283441477139,-90.0428584138711,-89.98146042730511,-89.96276742488668,-89.96213542480561,-89.85789641146182,-89.80167840428147,-89.7961994035836,-89.75680239861096,-89.74796139446613,-89.70615332725076,-89.69751131334149,-89.68037128577946,-89.66396025937209,-89.57050810903355,-89.54974007561376,-89.53805005680066,-89.4849919893103,-89.48443098905966,-89.43560796857108,-89.42527896420097,-89.37305394348905,-89.36250993863405,-89.34157193119889,-89.33354092815929,-89.30047391717645,-89.300943847043,-89.29068883845767,-89.27857883020222,-89.25800981774734,-89.23687582020973,-89.21556483505395,-89.19421884415817,-89.18852884754651,-89.17524585530944,-89.17771598103558,-89.17300998547658,-89.16225799555359,-89.15595400027085,-89.13453802260192,-89.13051502731278,-89.12161803571558,-89.05775211144849,-89.04760212249218,-89.04760306095257,-89.04727874702964,-89.04744248792495,-89.04728547244639,-89.04744746557613,-89.04728931584695,-89.0473802753407,-89.04680523161956,-89.04693179970853,-89.04693179955935,-89.04660440865942,-89.04656428794732,-89.04656528087308,-89.04648899241842,-89.06766507534599,-89.09833219636018,-89.12511630281456,-89.17407549792475,-89.18008152205917,-89.19519958222217,-89.21600766407315,-89.22867871561661,-89.24759079115061,-89.30128995245968,-89.34426008023739,-89.42089529400512,-89.42482430470118,-89.42485234883178,-89.42628844939941,-89.42739846508584,-89.42843053076848,-89.42825854120905,-89.44858659947816,-89.46901165780831,-89.47936768741151,-89.48692970891598,-89.49478073124496,-89.49754773938571,-89.5478217613493,-89.54850476156467,-89.56911576817427,-89.67229479998593,-89.69261480638211,-89.71434381258717,-89.74390582200324,-89.78595286169558,-89.7959078725665,-89.79597587263868,-89.81742489515452,-89.91992200319729,-90.00850509586699,-90.01028209769845,-90.01164409872774,-90.043415127549,-90.0434911287382,-90.04363917005321,-90.04354319432578,-90.0433992345048,-90.04347023494641,-90.04350026492671,-90.0437722932534,-90.04370130252434,-90.04305537537213,-90.0434853973937,-90.04519942068829],"lat":[45.81760530288037,45.88781727106701,45.89726426665683,45.89736625468396,45.89760724293277,45.89769324249409,45.89821617776597,45.89828214301587,45.89829313963128,45.89848811534111,45.89850111092768,45.89863510644976,45.89861510551096,45.89866510366939,45.89864810189167,45.89875709179525,45.8987100895456,45.89864408828002,45.89857408884997,45.89846808902649,45.8984051042378,45.8983481074509,45.89945012390584,45.89901012712569,45.89991013387257,45.90006613643207,45.90146414723721,45.86069013512917,45.86015513750812,45.86056914063968,45.86192714623656,45.86100614041232,45.86026012795573,45.85758211458772,45.8572811111877,45.85658010323609,45.89930112436996,45.8988691216923,45.89791511557294,45.89702111181145,45.8960731000038,45.89605609786358,45.89546409283848,45.89556505901701,45.89535605350595,45.88158704510639,45.81133200204275,45.75338996678612,45.74995896455859,45.74879296328223,45.72368993329165,45.71687992522881,45.70965191637274,45.63724583040811,45.6372208303784,45.57189175292242,45.55170372900665,45.55051872760109,45.46443953479822,45.46555252238995,45.46640550136761,45.46736148350737,45.46815744724886,45.46833644302617,45.46836943109115,45.46793141324686,45.46849340478891,45.46861539005665,45.46934935741575,45.47001533189562,45.46734527514521,45.46716627209755,45.47815130461887,45.50490538272751,45.51206440289001,45.54890650951303,45.55535352835777,45.5555055190128,45.55553450926577,45.55557150439208,45.55551750058834,45.55545949663146,45.55564949588021,45.55572850679985,45.55573050697516,45.55585251244461,45.55570353759563,45.55573854273032,45.55551654752283,45.55561555512447,45.5554756768661,45.55559471050978,45.55559471073779,45.555491782464,45.55511112597252,45.55502038495197,45.55514938285414,45.55503238127134,45.55508334403047,45.55581134390766,45.58258334250183,45.59840334187722,45.62456034081538,45.62482434073029,45.64429433979743,45.66265133868961,45.66869233847943,45.71604433684398,45.73036333582162,45.81760530288037]}]],[[{"lng":[-89.83856049652258,-89.83852145860276,-89.83851644303344,-89.83851540801642,-89.83850139590614,-89.83855238262606,-89.83851338209352,-89.83828025344636,-89.8382612476404,-89.83822713444184,-89.83820811205943,-89.83796201919773,-89.83799396974635,-89.83798596134562,-89.8379769042804,-89.8379108910965,-89.83800686579579,-89.83813378800203,-89.83695478608036,-89.83343577451487,-89.82864376245442,-89.82401774828466,-89.82110274105396,-89.8178707341764,-89.81465071911822,-89.81295870757488,-89.80982469637821,-89.8061056876782,-89.80541168632281,-89.80211868295331,-89.79705568058628,-89.7914816798278,-89.78279567623078,-89.77423867032203,-89.77068066076507,-89.76222065932564,-89.75872265481843,-89.75444564542413,-89.7521486346852,-89.75220862564055,-89.74895361814178,-89.74842162264417,-89.74310462199877,-89.74030361613798,-89.7364206134819,-89.73507361101039,-89.73316761102514,-89.73173660993237,-89.73024160782759,-89.72944960410278,-89.72785160192501,-89.72507460013529,-89.72399659588389,-89.72459859551114,-89.72666059423209,-89.72271659167301,-89.71973558754662,-89.71762858474621,-89.71428757764308,-89.71343657451979,-89.71325257319045,-89.71688356415888,-89.72046155958782,-89.6405425609298,-89.63559156101971,-89.62084356129107,-89.61558056136421,-89.60085356164329,-89.58116756184396,-89.48162857716871,-89.44237060872045,-89.41756862868863,-89.41183463336797,-89.40263064087839,-89.38292365681924,-89.36315767275379,-89.36308369455777,-89.34448971082507,-89.25535278641762,-89.24570879012319,-89.24540379008737,-89.24540479003895,-89.23623178922193,-89.15682778414212,-89.12730778305733,-89.12723778305583,-89.06893677884916,-89.04908077724686,-89.00913777204809,-89.00908479937331,-89.00901681711188,-89.00887380051353,-89.00891879789241,-89.00883079783331,-89.00964677309986,-89.01090974643229,-89.01152873189741,-89.0120197267924,-89.01206872670096,-89.01206872667061,-89.01130569488032,-89.01130169426881,-89.01209765939591,-89.01235665397536,-89.01234165392827,-89.01243065038798,-89.0124316503254,-89.01248864825257,-89.01255364532744,-89.01255864458754,-89.01255164403344,-89.01252564338525,-89.01254164230095,-89.01254364221396,-89.01264863742412,-89.01260163687559,-89.01245763455489,-89.01303363481489,-89.01305763444915,-89.01325063460629,-89.01324763458183,-89.0133056338921,-89.01324363316483,-89.01357663355805,-89.01358063352241,-89.0479337469894,-89.05294676354832,-89.0530557639084,-89.05553477209715,-89.05827378114435,-89.06772281235718,-89.09253189431584,-89.1025739274973,-89.1319770246558,-89.1816161887931,-89.19147922140317,-89.2106982849307,-89.25027541535536,-89.26986244595952,-89.27968446129564,-89.28872347542101,-89.30419449958137,-89.31011550886758,-89.34972757117919,-89.36301859231183,-89.36345959300056,-89.36912760202512,-89.36906858692768,-89.38313860782705,-89.38326360801402,-89.38869961623256,-89.43898269013357,-89.44208969473974,-89.46715873148838,-89.48574275886882,-89.48580475896011,-89.5234518040976,-89.52560080627269,-89.53824881973848,-89.54807582989751,-89.59976488326615,-89.60216488567421,-89.6023738858834,-89.62123590576374,-89.6249419094252,-89.71985500944984,-89.77858696554573,-89.78491394861837,-89.83816680519396,-89.83808578028984,-89.83794971637541,-89.83798467709049,-89.83814263617253,-89.83815261247823,-89.83856651381963,-89.83856049652258],"lat":[42.94994120187,42.9613922299246,42.96608224141777,42.97661926724431,42.98027927620498,42.98421528589184,42.98442128636611,43.02951331397307,43.03174031317526,43.0747032980817,43.08320729508705,43.11857928255191,43.13727527603022,43.14045927491281,43.16206126735424,43.16707326557702,43.17661826227365,43.2060592520036,43.20685125146143,43.21127524919818,43.21565524681919,43.22049424448716,43.22282324330948,43.22492924219348,43.22960624045131,43.23315623929901,43.23633423811732,43.23854123717359,43.23886023702551,43.23941723655325,43.23941023602529,43.23887823553725,43.23876523462837,43.23927823365421,43.24129323307534,43.24059223229877,43.24126323190946,43.24297523141956,43.24520323113492,43.24733323106814,43.24875323082934,43.24770423083798,43.2478352306523,43.24919923052047,43.2498152303706,43.25134922994941,43.25132822987991,43.25220522957148,43.25390222901034,43.25691522807959,43.25867622745064,43.26012422681071,43.26357422563945,43.26387622559631,43.26491122545887,43.26699522442917,43.27035822301419,43.27264622199841,43.27845421954159,43.28100821850869,43.28209421809233,43.28941521614403,43.29308621559179,43.29314419970269,43.29314219872085,43.29313319579876,43.29315019474147,43.29313419182928,43.29326218781078,43.29409620101779,43.29416226574414,43.2941723066729,43.29413231621135,43.29407133152305,43.29403736413974,43.29403839678789,43.28130742447303,43.28117645721086,43.28178061101069,43.28208661547163,43.28209561516432,43.28211761509984,43.28227060621278,43.28270053206928,43.28248850552211,43.28248750546039,43.28304145058801,43.28331543175096,43.28483239185618,43.27160042073045,43.2630094394418,43.20073136890724,43.19772336292928,43.19772636282824,43.16872430573729,43.13607024215884,43.11791520681466,43.11089819356145,43.11068819321778,43.110652193146,43.0749311206517,43.07422411923337,43.030788033954,43.0234970198958,43.02349101985611,43.01897401101994,43.0188960108664,43.01622900565895,43.01251199837588,43.01161099659038,43.01097399530811,43.0102919939001,43.00894099123895,43.00882999102162,43.00272897906913,43.00224497801454,43.00000297326989,42.949941911553,42.93535089328203,42.92013587451289,42.91963987388498,42.89036883722262,42.87282181508904,42.84928678603254,42.84763178395868,42.84756983490451,42.84753784230628,42.84753584246543,42.84752184612785,42.84752085019425,42.84748186417205,42.84735190082026,42.84725591558315,42.84706595892252,42.84638703138701,42.84631704587726,42.84626807426182,42.84591513167977,42.84585112342181,42.84585211934537,42.8458341155587,42.8458331091336,42.84578410658695,42.84540408949775,42.8451430835574,42.8451450833784,42.84503808085759,42.85647309982958,42.85634009339969,42.85633809334128,42.85619509071227,42.8563140687155,42.85629906732236,42.85638605638413,42.85638004817213,42.85638004814476,42.85663404268236,42.8566760427809,42.85664904299609,42.8567530433295,42.85732404511435,42.85737904523504,42.85738404524583,42.85742504567445,42.85753304589142,42.85774104804969,42.85733602445737,42.85730801917279,42.85739897531435,42.86496699388974,42.88434204133942,42.89614907018272,42.90832809992399,42.91545511735819,42.94473118909857,42.94994120187]}]],[[{"lng":[-90.67165198017653,-90.65266598965603,-90.63344199909385,-90.60696201234138,-90.59368901894935,-90.58705802225268,-90.55232403954059,-90.55214003963543,-90.52700905202815,-90.49710305437189,-90.49012902988525,-90.48709601936606,-90.48087999776605,-90.4787559903932,-90.47679998361328,-90.47106396453329,-90.46231993365662,-90.46155293098766,-90.45708091543287,-90.45241589922429,-90.4314738267058,-90.36532659818482,-90.3561835668753,-90.33029047819562,-90.32857447258768,-90.31621243006292,-90.31106841237828,-90.3008813774414,-90.27151927635093,-90.2561422227179,-90.25211220833964,-90.25113520551893,-90.25012620210106,-90.23734314900842,-90.23158412576412,-90.23086512211243,-90.22013707829495,-90.21685306489324,-90.20857003129412,-90.20687502421222,-90.20141400155033,-90.19696698332814,-90.19196296272501,-90.19204997461337,-90.19216900721486,-90.19217503972735,-90.19207205877962,-90.19221006659104,-90.19228007382627,-90.19219107563526,-90.1921950766184,-90.19201411380692,-90.19178014150786,-90.19178713873625,-90.19179813410115,-90.19187911938445,-90.1919371159758,-90.19178611139485,-90.19166010906561,-90.19145910603366,-90.1920191017181,-90.1916010949454,-90.19174409249656,-90.19182908974942,-90.1919790878231,-90.19233008124155,-90.19182107735755,-90.19246507597488,-90.19242005308796,-90.19252798521035,-90.19252098004779,-90.19254595677955,-90.192512955876,-90.19257593888207,-90.19381293669696,-90.19900294601757,-90.20742995847598,-90.20989296268445,-90.21290696904587,-90.21844597714839,-90.2208859815543,-90.22615299281813,-90.23191500733935,-90.24200503346468,-90.24487303872007,-90.25154605118887,-90.25529906218442,-90.26007607338717,-90.26067907435382,-90.2690450834253,-90.2709030848557,-90.27159208529014,-90.27836809020903,-90.28070509380147,-90.28355409953454,-90.2846191029298,-90.2849541085548,-90.28597611474899,-90.2883981237612,-90.29253313563544,-90.29644614306764,-90.29981014848295,-90.31091615972863,-90.31243616266507,-90.31574616778417,-90.321602175207,-90.32625718284068,-90.33104719185015,-90.33311719555195,-90.33549819919581,-90.34567221245328,-90.3505122195554,-90.35265322198316,-90.35601922390697,-90.36031122869329,-90.37090623966043,-90.37722924538589,-90.38208724925539,-90.38708025429771,-90.39418926328241,-90.40089426879058,-90.40517927338165,-90.40866227619826,-90.40977127757782,-90.4162472891673,-90.42040229535205,-90.42707630246156,-90.42982430604808,-90.4392853156788,-90.44244332018683,-90.44512732436762,-90.45271933946977,-90.46237935132287,-90.46493735485272,-90.47361636888213,-90.47947537801713,-90.48545639055294,-90.49073639890683,-90.49622840662744,-90.50589442941551,-90.51195443992441,-90.52041645221094,-90.52699746676353,-90.5298204721002,-90.5342804824386,-90.53774549175083,-90.5405915014021,-90.54540751111875,-90.54722251321991,-90.55812752465015,-90.56083652979548,-90.56339853428453,-90.5687245419435,-90.57568255376965,-90.58231156319218,-90.58440756482588,-90.58890256999273,-90.59586657120576,-90.59850957243737,-90.60331157223565,-90.60860757324356,-90.61054557579904,-90.61556758409766,-90.62005159267648,-90.62771960276005,-90.63453860973489,-90.63768661520216,-90.64048962133114,-90.64251462398741,-90.65005263124559,-90.65202963205246,-90.65656963584311,-90.66043464179093,-90.66661565521281,-90.66678565558114,-90.66683673025315,-90.66691381884502,-90.66691582382228,-90.66658084424296,-90.66637584886422,-90.66631485177363,-90.66625386131298,-90.66619487044609,-90.66617887246062,-90.66617587306317,-90.666177873265,-90.66615887645933,-90.66613887966963,-90.66610688467605,-90.66606888961751,-90.66605789263886,-90.66591890330818,-90.66581590348505,-90.66601196540893,-90.66862196663206,-90.66858199511057,-90.66856101115511,-90.6683950134404,-90.66847804704847,-90.66847805580035,-90.66902506717804,-90.66986608395391,-90.67034508389936,-90.67071806160247,-90.67081105702697,-90.671577988404,-90.67162898269157,-90.67165198017653],"lat":[43.55285770649355,43.55283475497685,43.552880804116,43.55284287174818,43.55283790565856,43.55283492260053,43.55282601134959,43.55282501182041,43.55285107600436,43.55313014642098,43.55326415060841,43.55329015247553,43.55335415628161,43.55337415758388,43.55339015878655,43.55323416264816,43.5534501677769,43.55345916824272,43.55351017095936,43.5535591737974,43.55371918661486,43.55410822707302,43.55408923281615,43.55403724908901,43.55395925036584,43.55398525800938,43.55399326119647,43.55398526757418,43.55407428562144,43.55432329441982,43.55448329641532,43.55432829751592,43.55431529818457,43.55462528533241,43.554557280118,43.55476727876427,43.55479126856444,43.55479526545282,43.55474625779587,43.55479625603459,43.55491225050527,43.55493924622095,43.55499824130657,43.55164625229756,43.54231228278532,43.53287031351817,43.52721133183994,43.52510433882319,43.52308434546072,43.52245334743296,43.52217234835108,43.51115038405687,43.46738536726706,43.45798635203785,43.44228632659636,43.39205524517789,43.38008522576131,43.36614320318257,43.35943819235214,43.35094517866899,43.33178014736662,43.31222911592864,43.30294610078807,43.29313808482307,43.28571807265777,43.26180303346839,43.25160901750942,43.24886301423911,43.23516501567555,43.19434001963632,43.19124701995713,43.17726802132271,43.17674702142556,43.16651102235446,43.16446602059612,43.16691701218281,43.16917999882024,43.17013399493931,43.17195199021125,43.17323598161998,43.17423797786585,43.17727396987681,43.1816159613722,43.18917694700436,43.19015394289082,43.19236193373241,43.19531392954967,43.19769092409576,43.19777192337075,43.19678491285767,43.19628391044396,43.19605190953535,43.19409190061356,43.19433289777334,43.19527689451309,43.19623089348399,43.198720893834,43.20104389330571,43.20381989125868,43.20686088732329,43.20790888304725,43.20834187922583,43.20661886537204,43.2070458637467,43.20737085995924,43.2071738529199,43.20783184771567,43.20904584266297,43.20947884044773,43.20968883775671,43.20950582568629,43.20978782015856,43.2095818175167,43.20838481281309,43.20793980745592,43.20646179389848,43.20521378547993,43.20401977879135,43.2032827722352,43.20305676349476,43.20150875414409,43.2010067485288,43.20018974360127,43.20014674221353,43.20147573550352,43.2017657307288,43.20097372190524,43.20094171853724,43.19963270574968,43.19976870203173,43.20003769903052,43.20223069207773,43.2017846799117,43.20183767687241,43.20290666758398,43.20347766118415,43.20544065632868,43.20599765069771,43.20615864434902,43.20890963584712,43.20842862757625,43.20672661479259,43.20755160747709,43.20751560386518,43.20828259913951,43.20943359611508,43.21124759464122,43.21145658876135,43.21085858575693,43.20673256718812,43.20670756373948,43.2065195602923,43.20539755231291,43.20472254279961,43.20326853286682,43.20221752909013,43.2006895218047,43.19532550737578,43.19362350229289,43.18944849196529,43.18537348121927,43.18484547830743,43.18421647154021,43.18417146603462,43.18205645457752,43.17928044355773,43.17899643947652,43.17930543639478,43.17873843339705,43.17544542114529,43.17408841747756,43.17183440991059,43.17113140464087,43.17176139785914,43.17177839767209,43.20530442861763,43.24506746528915,43.24730346735406,43.26428348153506,43.26899148554583,43.27183948788357,43.28095049516683,43.28966250214052,43.29158650368671,43.29215950414432,43.29234750428943,43.2953885067237,43.29844450917248,43.30320851299326,43.30791451678146,43.3107765190645,43.32097552739524,43.32124252780385,43.37942457345773,43.37975856751311,43.40742158892876,43.42299560098916,43.42517960312753,43.4577876280588,43.46627463460692,43.47775564173832,43.49499065219123,43.50226265677656,43.51303166689762,43.51523966893602,43.5488087023631,43.55161970523068,43.55285770649355]}]],[[{"lng":[-89.22472088290964,-89.22446787881769,-89.22444087841274,-89.22440687498487,-89.22416286509147,-89.22411886303877,-89.22389184883038,-89.22385884676156,-89.22379484272091,-89.2236658391802,-89.22357882896772,-89.22340282107565,-89.22332882047651,-89.22315186800689,-89.22352191192257,-89.22360691874677,-89.22366892683003,-89.22358193460613,-89.22359195744203,-89.22374300548118,-89.18452207720615,-89.14388115124241,-89.14370315144508,-89.1426491533624,-89.10262122679629,-89.10261722664615,-89.10243222714081,-89.06309229884009,-89.06287429925041,-89.03070635815621,-88.9818256635956,-88.97704672920887,-88.9718348007455,-88.95877797995306,-88.95160807838847,-88.94587615709108,-88.91703655304323,-88.90514071623127,-88.88548098621445,-88.88290802152206,-88.87412414197711,-88.85877135288531,-88.82386683284523,-88.81835290843874,-88.79791319006564,-88.7415549759726,-88.73717004193171,-88.73634005474516,-88.70206757113765,-88.69694164826355,-88.68289985944001,-88.67854592490526,-88.64607541236521,-88.61554487023166,-88.60516302653259,-88.60511499919409,-88.60533893907159,-88.60542992070269,-88.60621175957411,-88.60637374924586,-88.60608668837101,-88.61546759631472,-88.71813559173704,-88.73680440883287,-88.73683062086262,-88.73689368096908,-88.73708073825476,-88.73708576783689,-88.73673370929255,-88.73680838479005,-88.73683231172566,-88.73682416943613,-88.73683516546522,-88.73765179789436,-88.73784070070752,-88.73801161288202,-88.73828052139251,-88.73835249709099,-88.73842647201877,-88.73849544877591,-88.73856542559447,-88.73976956636406,-88.76619945448762,-88.77622840504608,-88.77864239313809,-88.78598735682503,-88.79610930678008,-88.79866529414964,-88.80722625186633,-88.82039618698327,-88.8253471626775,-88.85030303985508,-88.88667186117743,-88.96174049229246,-88.98216039193524,-89.00012730400518,-89.00673729186593,-89.00856428850896,-89.06294418868154,-89.06598418310158,-89.09736212539947,-89.10334811440538,-89.12847306829191,-89.13358105890079,-89.20428192882983,-89.224810891117,-89.22472088290964],"lat":[44.25690675941668,44.27293673503384,44.27453573259295,44.28680571396121,44.3231636584589,44.33066364698239,44.38206956820334,44.38955355670129,44.40416753421831,44.41744351354883,44.45389245748729,44.48275841256521,44.50398438492775,44.54906037450763,44.59164136657971,44.59830636538235,44.60613336384328,44.61340636198498,44.63522935721227,44.68136534735157,44.68116727193437,44.6806901933117,44.68057219286152,44.68055719081105,44.68057811348512,44.68042811325539,44.68057611311696,44.68014703622682,44.68015703582465,44.68007097326264,44.6797598600522,44.67978984623934,44.67978683109984,44.67967579305991,44.67963777224335,44.67960775561882,44.67962767208757,44.6797426374937,44.6796725805864,44.67968157310891,44.67975054747073,44.67967850314274,44.6794294031154,44.67947138698371,44.67922432933906,44.67912810620509,44.67914306146681,44.67906505370943,44.67881370802806,44.67878765629696,44.67873751441582,44.67871747050064,44.67823614840401,44.67817484078794,44.67832873309487,44.6708478674264,44.6556341435111,44.65104522688476,44.6101659668575,44.6078390094506,44.59051431900382,44.59043235746929,44.59056576099641,44.5906048344486,44.53861629052824,44.52380642037506,44.50956254491636,44.5023386081374,44.41615573000453,44.3907427603435,44.38502276716181,44.37386678056131,44.37355878091131,44.34497981386659,44.33741282267494,44.33057383064789,44.32347383879779,44.32158784096506,44.31964184320313,44.31783784527858,44.31603884734773,44.24330393978718,44.24336691499941,44.24331390718941,44.24329590532002,44.24318789973968,44.24302089208204,44.24297989014512,44.24284688364651,44.24273687345455,44.24275886949683,44.24259485008443,44.24262282126996,44.24291176139911,44.24277274549988,44.24281273135684,44.24283273267978,44.24284173303979,44.24289174412763,44.24289274475063,44.24306275095586,44.24307075217725,44.24305775736867,44.24307675839543,44.24338177261678,44.24339377684984,44.25690675941668]}]],[[{"lng":[-88.16227406511813,-88.12216812984583,-88.10227416184034,-88.08204419421442,-88.04195425775146,-88.04179425800648,-88.02833627937558,-88.02703128192638,-87.98217334082062,-87.94444737670153,-87.93506038350716,-87.92225339554999,-87.86584244310225,-87.83389347171388,-87.80149250245806,-87.79059851253569,-87.78146952100887,-87.77735852513553,-87.77454852793439,-87.77148053089103,-87.74993455189535,-87.74856055448606,-87.74615555896369,-87.74147856916889,-87.73132297693836,-87.73373521937627,-87.73390365496134,-87.7342909452754,-87.7361784886958,-87.73615797822667,-87.73611158890706,-87.73601743673728,-87.73488107615485,-87.72869828664278,-87.72865137512339,-87.72851890322015,-87.72830723203116,-87.72904831974199,-87.72960012253759,-87.72953898843535,-87.72927016885973,-87.72875604717363,-87.72638359510249,-87.7262320102634,-87.72627242143058,-87.72640696210935,-87.72381022108841,-87.72209804275393,-87.71633583892505,-87.71527927616565,-87.7124940390154,-87.71035802960189,-87.70861676056239,-87.70549371293401,-87.70525869955048,-87.70061557732157,-87.70025067515837,-87.6985508371929,-87.69752166078071,-87.69605366144503,-87.69607064941931,-87.70008462854169,-87.70087879451442,-87.70091239657897,-87.7012880709182,-87.70300860213356,-87.7041995769353,-87.70319841382226,-87.70303256335524,-87.70323352918491,-87.70310608532749,-87.70289752334183,-87.7082844870841,-87.70994380341324,-87.71019645440232,-87.7100982669261,-87.70979393853082,-87.70963941864836,-87.70958710638709,-87.70821102760567,-87.70819302009446,-87.70818438547714,-87.70401433938194,-87.70394832270496,-87.70298430952359,-87.70290937709625,-87.70290728480141,-87.7042752484152,-87.70268421348851,-87.70292925382731,-87.70620316746619,-87.70853389005141,-87.71156190853583,-87.72223473717031,-87.72383982503321,-87.73431093307673,-87.74208620462001,-87.76050377014982,-87.76944393823996,-87.78125365441925,-87.78584845862402,-87.78752117113079,-87.79013358849301,-87.79266654150994,-87.79300151754134,-87.79177149939518,-87.79191139814344,-87.8209115193189,-87.84088353626493,-87.86089355342695,-87.92104560495909,-87.95058062786246,-87.9509526281559,-87.95378163034725,-87.95435963079952,-87.97097564387857,-88.04052664083403,-88.0496436350883,-88.05093963426896,-88.09929360369919,-88.10042060316614,-88.16087156709118,-88.1603937273081,-88.16073172924271,-88.16041773275515,-88.16014482565225,-88.16003386651732,-88.15997391954572,-88.15992592295984,-88.16022203498513,-88.16072916901035,-88.1606162689652,-88.16043732646516,-88.16066446867326,-88.1607085026115,-88.1607485197349,-88.16090955410296,-88.16106758788379,-88.16113462210073,-88.16115165591238,-88.16116067356367,-88.16116868997895,-88.16118670717694,-88.16119772438573,-88.16130979280733,-88.16227406511813],"lat":[43.8915136173512,43.89168372815364,43.89174378316697,43.89177083917462,43.89169495039961,43.89169495084296,43.89167798816391,43.89177599160772,43.89177011393058,43.89220221357315,43.89191923898951,43.89203127288135,43.89160442353204,43.8916475084274,43.89192759423825,43.89197962315092,43.89202564737854,43.89208765824083,43.89212666567023,43.89215567379819,43.89237173077218,43.89231873228776,43.89221873494806,43.89221673990805,43.89218802640522,43.8863439761454,43.88593591350913,43.88499763965299,43.88042475839665,43.87957149344842,43.87764163119072,43.87372476587581,43.8704337551695,43.85252779635174,43.8516777497268,43.84927733091457,43.84544180439886,43.83761416249085,43.83178581789136,43.83107190278307,43.82793266710321,43.82192882936789,43.81687852069331,43.81655583757948,43.81514521661683,43.81044884399343,43.80573501573837,43.80262692199174,43.7921668729359,43.79053735727485,43.78624174162457,43.7829474169803,43.78026189254705,43.77343590251265,43.77316328406474,43.76777720455576,43.76735391351215,43.76580357788403,43.76486491850016,43.7645919200728,43.76307192163016,43.76139891985256,43.76068106777472,43.76065069463792,43.76031112002357,43.75875592005706,43.75584392206649,43.75412300799105,43.75383792517209,43.74930292863954,43.74882426376159,43.74804092827294,43.74289892094902,43.7379078649146,43.73714791627436,43.73587226543909,43.73191843374473,43.7299109129587,43.72965881305566,43.72302730258766,43.72294052195098,43.7228989105603,43.71253790885017,43.71214444787862,43.70639890658133,43.70168940482917,43.7015579041377,43.6948538994172,43.68759989709663,43.68703906088496,43.67954588967785,43.67619985868134,43.67185277627807,43.65653065750067,43.65422636268281,43.63919384172178,43.62947682324805,43.60645978599154,43.59441179349218,43.57849672727092,43.57050800758554,43.56759975935741,43.56305770082749,43.55271569034263,43.54760768706891,43.54400268776381,43.54302514251055,43.54304662764666,43.54308458679292,43.54316154587577,43.54338142284712,43.54298036227237,43.54297636150994,43.54293735570926,43.54293035452443,43.54274532047268,43.54236417254067,43.54236815264183,43.54236814981309,43.54236804427192,43.54241004181378,43.54294590982186,43.58273090779331,43.58327990698582,43.58409090763391,43.60714190648353,43.61727990596434,43.63045290509785,43.63128990514711,43.65922990230081,43.69272789846791,43.71756589681912,43.73181089617055,43.76470186588426,43.77190085191303,43.77553884480577,43.78286683027663,43.79006981599314,43.79733580182686,43.80449978798885,43.80823978076419,43.81171777404656,43.81536476697673,43.81901175992548,43.83353473166118,43.8915136173512]}]],[[{"lng":[-88.30588859729014,-88.30251258981545,-88.29507057330287,-88.26653950973486,-88.26646150956782,-88.22568236026872,-88.18817018539453,-88.18830501931073,-88.18830289247644,-88.16888380499967,-88.11043453106309,-88.10574350784245,-88.08396940511732,-88.0808263914717,-88.07466536260368,-88.07091134501211,-88.02998515481814,-88.02698214088646,-87.95341541092317,-87.95327940916343,-87.95306340637069,-87.91561192231855,-87.89561766404424,-87.8847505237658,-87.86393925543368,-87.84597802440878,-87.8358668945299,-87.82219771732014,-87.80945755203389,-87.80584939147603,-87.80707511728542,-87.81136506533888,-87.81278477009745,-87.81466774515503,-87.81628230443505,-87.81711882211724,-87.81819348829418,-87.81826215550733,-87.81966795866423,-87.81958724881888,-87.81936800329639,-87.81636875216306,-87.81635598962487,-87.81578263750323,-87.81574576704307,-87.81568572322192,-87.81567800852817,-87.8155910200849,-87.81307165884698,-87.81180899932495,-87.81092360571434,-87.80858661413981,-87.80762395007856,-87.80761596318797,-87.8131670394388,-87.81317937255641,-87.81332338023726,-87.81357918386522,-87.81374191862726,-87.81394607652858,-87.81268911462719,-87.81268559396936,-87.81258470715396,-87.81258216573771,-87.81248402024976,-87.81247839763792,-87.8124760076449,-87.81223921238532,-87.81225321048174,-87.81364726666014,-87.81301615140774,-87.81281632283661,-87.8123098026537,-87.81180535967538,-87.81153180343657,-87.81066837260569,-87.80629736933101,-87.80502811108722,-87.80498836836064,-87.80566339396026,-87.8036824061306,-87.80307443410206,-87.80208546181943,-87.80380948362706,-87.816596446627,-87.82190698825934,-87.82523927699525,-87.8446127602836,-87.84657677005519,-87.84784680651944,-87.85286290862113,-87.85286367879067,-87.86256307532454,-87.8736835551469,-87.8829899848363,-87.8867954994116,-87.89798682362508,-87.90009878818394,-87.90034829225633,-87.91745359439848,-87.9510274816374,-87.9584904190593,-87.97157874802514,-87.99040093934551,-88.0031416293976,-88.02504677950914,-88.04977916309645,-88.06206057265361,-88.0689336011061,-88.0777160085028,-88.09420520088455,-88.10098585415363,-88.10146875135436,-88.10220961471894,-88.10850358533499,-88.10957876491734,-88.11152378703913,-88.11528244767914,-88.11811179223766,-88.1238339103752,-88.13846989014202,-88.15014201938378,-88.17686846978837,-88.18709349365365,-88.1984800003799,-88.19857592388594,-88.19938894202102,-88.20016982944514,-88.20658015380918,-88.21144375471378,-88.21404647232563,-88.21689790494955,-88.21885558955972,-88.22370257035661,-88.23134676429872,-88.23789090603192,-88.25008805366888,-88.26171714959428,-88.26537738470564,-88.2716890598422,-88.27458405443109,-88.27742295788379,-88.2799720498511,-88.2849995826606,-88.3026314210247,-88.30273227085954,-88.30298781257335,-88.30469006034218,-88.30469003844424,-88.30478899188499,-88.30486796345625,-88.30494593515928,-88.30502590634727,-88.3052598225848,-88.30531880178526,-88.30533979404824,-88.30541676642726,-88.30557371011869,-88.30557470951294,-88.30580962539538,-88.30588859729014],"lat":[42.61081796748712,42.61083296737453,42.61087296715278,42.61105896644062,42.61105796643305,42.61118005088709,42.61145718306467,42.64454134479673,42.66971046820383,42.66910755307693,42.66940181928445,42.66966784222257,42.66990794254563,42.66971095546162,42.66973998359449,42.66975800074174,42.66964418543845,42.66963119894816,42.66956941107706,42.66956841133217,42.66956641173378,42.66918948099345,42.66896151763402,42.66881953735218,42.66848957450233,42.66809960547844,42.66784762255648,42.66781664857824,42.66781067304938,42.66789164112087,42.66457388941613,42.65296200862657,42.64911920176205,42.64402243126511,42.63837851001572,42.63545434370339,42.62717779383338,42.62664895276242,42.61582214896836,42.61334665487142,42.60662206013534,42.60184733542635,42.60182701781856,42.59609396281912,42.59572528819439,42.59512489880134,42.59504775813583,42.59417794442635,42.59062671246645,42.5888468974358,42.58865268359952,42.58814005723158,42.58792889387098,42.58542686936543,42.58457185397382,42.58449078142404,42.58354413757904,42.58186259581561,42.58079284828959,42.5794508030691,42.56915470413605,42.56882728789441,42.5594449553504,42.5592086071949,42.55643924188934,42.55628058898957,42.55621315069977,42.54953151309466,42.549463483098,42.54268844498484,42.53306148449413,42.53001332208606,42.52527957001116,42.52056523066332,42.51930833729163,42.51534118046069,42.50530308511487,42.50238832280501,42.50229705642669,42.49970003067236,42.497339009672,42.49509898893665,42.49257696563441,42.49257996495975,42.49275620676431,42.4928294015499,42.49287533021855,42.49314235323433,42.49316942299381,42.49318692778385,42.49325606422433,42.49325607483949,42.49338976061593,42.49354303295597,42.49367130237852,42.49372375331968,42.49387800191241,42.49390711084049,42.49391054972192,42.49414630972215,42.49460905335231,42.4947119137443,42.49479907848522,42.49492442910351,42.49500927546345,42.49515513623418,42.49531982282222,42.49548854891916,42.49558297287306,42.49570362850933,42.49593016251914,42.49602331738771,42.49602995158991,42.49604012981702,42.49612659847651,42.49614136965076,42.49616809101073,42.49621972873877,42.49621295836415,42.49619926583497,42.49616424321328,42.4961363128274,42.49607235876689,42.49604789117856,42.49602064426347,42.49602041472693,42.49601846924563,42.49601660065029,42.49598095258855,42.49595390591585,42.49593943210261,42.49592357517566,42.49591767382606,42.49590306282697,42.49588001975847,42.49586029274653,42.49582352518059,42.49528247678303,42.49511218289137,42.49481852973298,42.49481455714676,42.49481066153056,42.49480716360131,42.49480026469266,42.49477606984083,42.49477593145215,42.49477558079143,42.49477324492474,42.49831955682786,42.50925559702863,42.51653462360038,42.52378565006651,42.53117467703323,42.55269075553898,42.55804177505905,42.56003278232144,42.56714480826168,42.5816608611977,42.58181686176643,42.60354594098242,42.61081796748712]}]],[[{"lng":[-88.67923775437973,-88.67921375592127,-88.67799180018731,-88.67781579954558,-88.6284425778715,-88.5543482400571,-88.42809780076631,-88.40312607934197,-88.39496216892425,-88.39295719264145,-88.34473373012759,-88.342995751655,-88.34030877953791,-88.30667915956739,-88.30580716919575,-88.30814657907246,-88.30905238730681,-88.30907937882867,-88.30906076846242,-88.30888977124701,-88.30795378646823,-88.28536320281373,-88.27995929855854,-88.25014582367149,-88.24742682614014,-88.20715194884436,-88.18635398178998,-88.18649912785303,-88.18630919163144,-88.1873056248144,-88.18707176772415,-88.18924852835563,-88.11888026616828,-88.12021136273638,-88.12115546044599,-88.04050768656663,-88.02458652744831,-88.0043103291403,-87.94299704591117,-87.94328424604898,-87.94443845009327,-87.92412633986557,-87.91246027499572,-87.90292722201198,-87.89349516987393,-87.88333211737674,-87.88338814557348,-87.78043157699734,-87.76691350373356,-87.76007246578047,-87.76042952942787,-87.7607985840467,-87.76244690257546,-87.77517076063413,-87.78144393403802,-87.78210947541923,-87.81299109166098,-87.81952716026345,-87.82146718680427,-87.82458325042087,-87.82508004673069,-87.82658271895851,-87.82769830593963,-87.82939099031755,-87.83019133863166,-87.8316073654283,-87.83203138707003,-87.8327243945984,-87.83597641924571,-87.83926346638481,-87.84404658330516,-87.8443016417455,-87.84303759634915,-87.84272169391572,-87.83978404354212,-87.8395637340202,-87.83907233121518,-87.8358311209517,-87.83358977872311,-87.83212855163228,-87.83114476901552,-87.83103991797466,-87.83097079458877,-87.83560587866853,-87.84128394961162,-87.84714003989197,-87.84796605129887,-87.84816408493549,-87.8458790923434,-87.84832715075335,-87.85279224414467,-87.85461706448388,-87.85519433490855,-87.85526672949327,-87.85893142464433,-87.86274289096174,-87.86328650701358,-87.86656059146652,-87.86983663366534,-87.87122320461361,-87.87429449951324,-87.87453960841482,-87.87702471436187,-87.88509162978517,-87.88657185646522,-87.89561199807348,-87.90009646034289,-87.90242307948667,-87.90318413669195,-87.90182213688698,-87.90503921033979,-87.90745826469441,-87.90858332779499,-87.91308142697878,-87.91328545261169,-87.91700053516391,-87.9194346748319,-87.92252344835349,-87.92682088859988,-87.92855596637177,-87.93435212160017,-87.93969757181887,-87.93982119869493,-87.93986818566104,-87.94124724894364,-87.93887124969278,-87.9425826979199,-87.94314931075363,-87.94453077042779,-87.95156546261788,-87.95578957376023,-87.95642690082556,-87.96471959579186,-87.96675002774275,-87.96905661105862,-87.97533760605411,-87.9759495810811,-87.98263259779135,-87.98549856443394,-87.98729650170054,-87.9863734569644,-87.98800592115936,-87.98894172544409,-87.98962847655662,-87.98979914826444,-87.99026036098465,-87.98791325136628,-87.98792013860854,-87.99156627634932,-87.99361500889269,-87.99510530880973,-88.04492980972113,-88.05049999064667,-88.06719553430358,-88.13119160464646,-88.18138710170324,-88.22462741969157,-88.22798852612469,-88.23119062766173,-88.23097097867969,-88.23144499435368,-88.24270036907585,-88.24270842391974,-88.24267770938155,-88.24436091353138,-88.24531734890574,-88.24955631055407,-88.25237544975037,-88.25237844834999,-88.25095716400774,-88.25025452672659,-88.24822543678795,-88.29905258936337,-88.33656313807197,-88.36990185425313,-88.37017984328746,-88.38635822859951,-88.41053630348732,-88.45136373590064,-88.48915229107467,-88.48908427661449,-88.48899733759006,-88.4889922331831,-88.48892245935535,-88.48841137627363,-88.48754792636907,-88.48740772064335,-88.487329690923,-88.48697054528414,-88.4861089964553,-88.48389154752269,-88.48372839694464,-88.50017704157091,-88.54948013689317,-88.55933515663556,-88.64115532108534,-88.64031623459928,-88.63848870933789,-88.63816961453097,-88.68006197177165,-88.67923775437973],"lat":[45.27705074298887,45.28058075383456,45.378682052105,45.37892805206454,45.37839982637032,45.3776704886872,45.37700841147828,45.37653447007264,45.37618948907092,45.3763064939325,45.37505660726355,45.37530061156415,45.37493561768729,45.3745916973842,45.37454669943296,45.2878056467435,45.2602336291131,45.25899062835322,45.20157761102275,45.20158261085565,45.20161060995711,45.20069355290567,45.20060754183385,45.20025648244275,45.20036550410323,45.1982037521868,45.19797190466349,45.1930027971744,45.19084075243483,45.17612142822243,45.17127032632237,45.11184001975514,45.11019401091077,45.06683729253363,45.02357657483459,45.02193429285554,45.02183763645314,45.02145307259699,45.02041684639362,45.00739978613442,44.99305578235746,44.99302004095547,44.9931341886985,44.99322930945072,44.9933014290718,44.99304155975477,44.9904595725512,44.99063687719699,44.99049604908265,44.99053113570442,44.98275615605871,44.9761431726301,44.96660993949036,44.96495303235829,44.96313853414957,44.96294602816083,44.95401361332779,44.95110954653033,44.94960552952654,44.94499451176952,44.94440617800065,44.94262663028745,44.94130549052384,44.94016209668114,44.93962146827298,44.93781645940975,44.93586046297682,44.93556645610833,44.93530141900846,44.93276339176018,44.92425137468219,44.91852439799243,44.91336648036202,44.9120774455431,44.9060588742495,44.90560751065457,44.905010408451,44.90107202290356,44.89834857439219,44.89657304162431,44.89537765027604,44.89368412583781,44.8925676644763,44.88761663520582,44.8849645848999,44.88058454115875,44.87761216494494,44.87689954717042,44.87427558395365,44.87044057546047,44.86486055408167,44.85958154323839,44.85791156173354,44.85780251697054,44.85228254971675,44.84852714549311,44.84799152547296,44.8426565181018,44.84143049070994,44.84113881527011,44.84049274576589,44.84044118530677,44.83991842503416,44.8355693768675,44.83477135494673,44.82945229249813,44.82838036720737,44.82782423329956,44.82337425043435,44.82221627035243,44.81840425981902,44.81564825154391,44.81105526647323,44.80622025045106,44.80416526025257,44.80020024753708,44.79028428211703,44.78537943745119,44.7785552826918,44.77352529684143,44.76568929173329,44.76421436340684,44.76418025201289,44.76408572141529,44.76131125701943,44.75911729163549,44.75809268406498,44.75793626109847,44.75714360305397,44.75310721744314,44.75004466873887,44.74958259148898,44.74357018413651,44.74176120098497,44.73970618484063,44.73122221655417,44.72754924813599,44.72175525405849,44.71485030280927,44.70597738100526,44.70193642926249,44.70139979469774,44.70109217086086,44.70086641745404,44.69728412459037,44.68760355140138,44.67765366980101,44.67761102102415,44.67721165173004,44.67720287268423,44.67768062481837,44.67744030645224,44.6774061470927,44.67738666800958,44.67692484507727,44.67365253981247,44.67235838601149,44.67235529240132,44.67235520308364,44.67955185941063,44.67955284558117,44.67962451472066,44.68067846123176,44.68621118259696,44.7082330131318,44.71587259155076,44.75024868354519,44.76676788010916,44.76679488044324,44.79532713833161,44.80944526597014,44.8527297568409,44.85351871905351,44.85408350045915,44.85448619394394,44.85449619979282,44.85449453434813,44.85466303603519,44.85513088500225,44.85544066953467,44.85595267320764,44.88426095225251,44.88740298331874,44.91072221322533,44.94375853043532,44.98805395211721,44.99434401163871,44.99530401955706,44.99998405859786,45.0301211682285,45.10884547782778,45.11688451189909,45.11645166728737,45.11678592522838,45.11682397667241,45.11734440357645,45.12814040970151,45.1932784654145,45.20481347564202,45.20499264300641,45.27705074298887]}]],[[{"lng":[-89.36916961020954,-89.36912760202512,-89.36345959300056,-89.36301859231183,-89.34972757117919,-89.31011550886758,-89.30419449958137,-89.28872347542101,-89.27968446129564,-89.26986244595952,-89.25027541535536,-89.2106982849307,-89.19147922140317,-89.1816161887931,-89.1319770246558,-89.1025739274973,-89.09253189431584,-89.06772281235718,-89.05827378114435,-89.05553477209715,-89.0530557639084,-89.05294676354832,-89.0479337469894,-89.01358063352241,-89.01351663331096,-89.00010858900704,-88.98772957547247,-88.96987755632524,-88.95390853921485,-88.91867050146637,-88.89483647595056,-88.86513044425556,-88.83652441381383,-88.83151640847325,-88.82694840360195,-88.77707435059679,-88.7770973512645,-88.77711435192877,-88.77714135276605,-88.77759435995065,-88.77887437319487,-88.7778154505577,-88.77749347451032,-88.77718749085355,-88.77656952382236,-88.7766365334099,-88.77667555385221,-88.77667655953792,-88.77629762564987,-88.77632865605391,-88.77635668299727,-88.77635668463039,-88.77630369388041,-88.77634869781775,-88.77658372614248,-88.77663672990371,-88.77652879358918,-88.77644682035803,-88.77660382177184,-88.77658897481723,-88.78667984515161,-88.81989760259881,-88.8945825789157,-88.94038970269378,-88.94326269992531,-88.95189061567292,-88.97783187434138,-88.97847776200292,-88.98559555364612,-88.99178358227783,-88.99248241767275,-88.99255778792453,-88.99265765298929,-88.99298060857107,-89.0012585890437,-89.00137896464223,-89.01156659593009,-89.01210874466153,-89.01366570534724,-89.0138027058981,-89.02002853819747,-89.02623251225016,-89.03655355638345,-89.04197652839954,-89.04209438324976,-89.04289683105907,-89.04658669585038,-89.05470189109073,-89.05635489222738,-89.05977691670202,-89.06744288101942,-89.0696882350192,-89.07076186123575,-89.07113995335277,-89.07954798521442,-89.09891111089551,-89.09901107296899,-89.11694814942203,-89.12020973063311,-89.12036416399249,-89.12060469768112,-89.12511018465551,-89.12992401708638,-89.15714711716856,-89.16490435621346,-89.16672736432369,-89.19787317351566,-89.22626962151379,-89.22827863011344,-89.24697171126584,-89.24791250206856,-89.25075872602361,-89.26262757755234,-89.26266748836596,-89.29089580110667,-89.36156093504495,-89.36579871828367,-89.36659986944811,-89.36661986768853,-89.36668286135144,-89.3667708578471,-89.36685185145448,-89.36688784880756,-89.36691184699482,-89.36700683649111,-89.36701483244326,-89.36704082981034,-89.36711581979642,-89.36743979224198,-89.36757878241129,-89.36785677156013,-89.3680297612223,-89.36816475463628,-89.36821675163594,-89.36883571523971,-89.36909670017097,-89.36917561129206,-89.36916961020954],"lat":[42.83885507059666,42.84503808085759,42.8451450833784,42.8451430835574,42.84540408949775,42.84578410658695,42.8458331091336,42.8458341155587,42.84585211934537,42.84585112342181,42.84591513167977,42.84626807426182,42.84631704587726,42.84638703138701,42.84706595892252,42.84725591558315,42.84735190082026,42.84748186417205,42.84752085019425,42.84752184612785,42.84753584246543,42.84753784230628,42.84756983490451,42.84763178395868,42.84762978386109,42.8472577634914,42.84694875683267,42.84650474735471,42.84610773884296,42.84612272121394,42.84593570899974,42.84496969260504,42.8439776765807,42.8439156739438,42.84386267154309,42.84269564420745,42.83998663940691,42.83726463458045,42.83385762854277,42.80553357850433,42.75475448929889,42.70779635819373,42.6946153200842,42.68561929412688,42.66753924214469,42.66233822717959,42.65122719522077,42.64813518632935,42.61219608328815,42.59568303584441,42.58104599378049,42.58015899123308,42.5751449768973,42.57299797067704,42.55755292599112,42.55549391999688,42.52090882075896,42.50639777921855,42.50555577648777,42.49202398000503,42.49198373021532,42.49264559842451,42.49413370642454,42.49504641938631,42.49511441358619,42.49527352231558,42.49575190907762,42.49576381999179,42.49589508028724,42.49600919467902,42.49602208201045,42.49602347192489,42.49602531355202,42.49602626601786,42.49605068477565,42.49605104028657,42.49608112789599,42.49608272904941,42.49608732729477,42.49609732759458,42.49613115102295,42.49616485570307,42.49622092742735,42.49625038911876,42.49625102939559,42.49625538890004,42.49624925625722,42.49623576860925,42.49623302128178,42.49622733379503,42.49621459277771,42.49621086094509,42.4962090765524,42.49620844815414,42.49629625350074,42.49649846327362,42.49649950718108,42.49691054561467,42.49698884551012,42.49699255295001,42.49699077961355,42.49695756287456,42.49700475072096,42.49727160664207,42.49734764741455,42.49725665106787,42.49762340180217,42.49795777813526,42.49804778258931,42.4981308222459,42.49809703830429,42.49799482853714,42.49824884606746,42.49824970023992,42.49885384350497,42.50001286920747,42.50026126023874,42.5839972245896,42.5860082330635,42.59323126349705,42.59735028085796,42.60468131174482,42.60772332456089,42.60980533333212,42.62176838372367,42.62631140285693,42.62931641551401,42.64069046341758,42.67229859651976,42.68364464428712,42.69649269836197,42.70851074893881,42.71623578144191,42.71973179615109,42.75827993717132,42.77021895690174,42.83803806924074,42.83885507059666]}]],[[{"lng":[-92.88571042391963,-92.8844241553019,-92.88398641101642,-92.88250340260549,-92.87893138677259,-92.87689037139259,-92.87548735349176,-92.87014432943765,-92.87002432853032,-92.87177433124836,-92.86886130933935,-92.86968830862187,-92.86919230447025,-92.86568728992616,-92.86259727816059,-92.85340424731673,-92.85093223847734,-92.85053623653189,-92.85038723217765,-92.84885022570164,-92.8430782061954,-92.84105019841412,-92.83591617780048,-92.83068415999109,-92.82898015350931,-92.82601213951656,-92.8165580998815,-92.81293808658469,-92.80983607380352,-92.80944682765532,-92.8053470532973,-92.80397004492252,-92.80262904763985,-92.7986440412401,-92.78564954120604,-92.78462003901365,-92.78137206714229,-92.78131946854263,-92.77961610335916,-92.77741694592805,-92.77649512707748,-92.77206413778251,-92.7684291402411,-92.76183213709803,-92.75900914211481,-92.75781415118715,-92.75794617336228,-92.7600221986025,-92.7609083436359,-92.76188821468391,-92.76463047877633,-92.76490525404857,-92.76568026687501,-92.76514527909914,-92.7617112882966,-92.75945729015972,-92.74917929696997,-92.74555630917327,-92.73999034549732,-92.73927735336744,-92.73660195267183,-92.73611641571824,-92.73648343496943,-92.73403846310258,-92.72112756587934,-92.71250262148962,-92.70770164661974,-92.70326466189715,-92.69898267240318,-92.68624150499798,-92.68392373835586,-92.67660676461925,-92.67573677139653,-92.67680678463293,-92.67616679107059,-92.67035182165381,-92.66076089777314,-92.65954887318611,-92.65612488668182,-92.63911592130385,-92.63847392868732,-92.64011495346482,-92.63993595840041,-92.6394091512268,-92.63882396327705,-92.63631597020829,-92.62925997453377,-92.62772297874515,-92.62271999919409,-92.61431401289413,-92.61083485673237,-92.60832903955585,-92.60246006215449,-92.59013808986847,-92.58056512640036,-92.57489214465305,-92.5697641545589,-92.56125618200498,-92.5522373119791,-92.55193320209848,-92.5511862058037,-92.54985822700488,-92.55067224000679,-92.54980626976798,-92.54845927636575,-92.54568228548919,-92.53770932940171,-92.5305163576915,-92.52705236876272,-92.52604117569297,-92.52203238109378,-92.51948838442642,-92.51697117553813,-92.50253539938517,-92.49099641421347,-92.48463343413778,-92.47947844296485,-92.47276145952213,-92.46935447254327,-92.46448149499895,-92.461260514572,-92.46113851743915,-92.46342951493612,-92.46417351573939,-92.464326620062,-92.46433101018602,-92.46451252319991,-92.46247753798337,-92.45649456225885,-92.4533735791683,-92.45363558851605,-92.45295259532645,-92.45162760479469,-92.44963060645715,-92.44429460666204,-92.44435660121849,-92.44225959785017,-92.43562760500696,-92.42855561738449,-92.42156107202521,-92.42069663273504,-92.41064965795069,-92.40825966549622,-92.39327445186842,-92.3926817210934,-92.3817077551976,-92.3727177848783,-92.36493219556344,-92.36325481189378,-92.36214181507327,-92.35796582540137,-92.35176083680419,-92.35100393025746,-92.34997783867067,-92.35031983342645,-92.3500048279265,-92.34928182604125,-92.34634582978448,-92.34424483090228,-92.34374582981094,-92.34242982007902,-92.34360480308709,-92.34345979892971,-92.34127879923454,-92.33859079588322,-92.33823979231228,-92.33533578377103,-92.33291278274724,-92.32980678510584,-92.32786878790886,-92.31932980272008,-92.3166332792859,-92.31295536856148,-92.30675682764156,-92.29863884691045,-92.29403385542996,-92.29406984633404,-92.2935307671716,-92.29370519000632,-92.29370625103374,-92.16437176875588,-92.16381176932157,-92.121881767779,-92.11620876812864,-92.04963676363445,-92.05020184944436,-92.05027785079842,-92.05043797870772,-92.05040899460204,-92.05040799534234,-92.05043802008889,-92.04983106387959,-92.05027907878333,-92.05008308341587,-92.0502001849017,-92.05035718623289,-92.05064819695629,-92.03340420263183,-92.03306224861701,-92.0327022761419,-92.03270027634707,-92.03249628798891,-92.03196735166131,-92.03197236406183,-92.03193937377392,-92.03191537640886,-92.0318673797333,-92.0315264045342,-92.03167640598224,-92.03141014701674,-92.03154653650601,-92.03122826696638,-92.03141722912625,-92.15488797156607,-92.15502740696269,-92.15527375951518,-92.15444391440383,-92.16788688898681,-92.24736774146302,-92.25775469834036,-92.28362457041065,-92.28384756931239,-92.29337752226256,-92.31979339740272,-92.36608116518285,-92.38315208278556,-92.40666796785209,-92.46680667474013,-92.46726967229449,-92.47112865305877,-92.48625857900066,-92.48692157544295,-92.52819744223835,-92.52829441597322,-92.52816940939326,-92.52830640638766,-92.52910628462365,-92.55278226235474,-92.57004924600514,-92.61595120213471,-92.65181016726638,-92.7545000832633,-92.76604011355758,-92.76939312209755,-92.88706642921366,-92.88571042391963],"lat":[45.64601766147281,45.65262281233837,45.65487068410549,45.65947169826837,45.6656067236507,45.67528975041252,45.68901478297313,45.69675782119112,45.6972728227556,45.6997748202277,45.71199385793595,45.71514286061991,45.71756886783873,45.72062389030524,45.72224190805508,45.72315295285114,45.72383196592713,45.72437696902571,45.72757697706268,45.72875198703686,45.72916401535731,45.7300250270543,45.73280305836033,45.73312108423214,45.73371509393201,45.73665111586735,45.7420381764051,45.74271019606228,45.74417321547018,45.74446118447965,45.74749424724982,45.74980626084036,45.75188926359915,45.7536552792275,45.76342343067804,45.76419732222008,45.77306331522422,45.77334791015008,45.78256429900772,45.78781455075266,45.79001529425218,45.79523130109942,45.79801131046092,45.80125933195383,45.80396633738844,45.80657533557856,45.81121732206724,45.81547630095432,45.81664118928285,45.81792928588417,45.82422901929998,45.82486025360975,45.8272532437125,45.83018423807285,45.83386224285912,45.83534224847095,45.84071827924043,45.8414563012191,45.84628432378747,45.84758132458693,45.85735632425668,45.85913031015129,45.86335729494964,45.86810929583141,45.8838063256372,45.89170635108638,45.89490236855837,45.89615639028841,45.89645241437623,45.90278796438785,45.90394047438675,45.90637150708697,45.90747950774474,45.91093148821118,45.91207348738449,45.91624850360201,45.92218795577597,45.9229385363074,45.92444354881847,45.92455664136978,45.92597263860444,45.93247960097163,45.93354259724072,45.93383869220644,45.93416760041321,45.93463561169865,45.93240565945511,45.93268366641512,45.93518768154035,45.9345307293822,45.93661359035644,45.93811374385149,45.94081676145627,45.9417748210975,45.94625184758657,45.94810486697855,45.94814789307681,45.95100792094468,45.95163192384861,45.95165296477968,45.95224196523685,45.95704094466708,45.96076091946355,45.96798788262106,45.96905788304669,45.97011989037283,45.97781988367111,45.9819198931112,45.98324690125295,45.9834398779532,45.98420491869375,45.9839189322033,45.98333660201943,45.97999703558579,45.97556207533027,45.97587407299842,45.97399408458518,45.97295409070168,45.97381308508784,45.97626906943014,45.97942904955285,45.98021804462793,45.9815090366483,45.98242503094761,45.98360602357143,45.98363988743511,45.98504001461306,45.9878519970293,45.99024498212776,45.99291496558293,45.99617294536468,45.99778393539498,46.00044291955747,46.00225391090453,46.00916287839507,46.01177886591808,46.01617884550101,46.02123382374383,46.02424281237576,46.02649274070031,46.02677080403967,46.02726080598724,46.02663180966332,46.01981161348861,46.01954184482509,46.01703585804682,46.01419987131283,46.01339378265985,46.01322011306839,46.01310487782796,46.01341487763437,46.01568687101932,46.01623746311791,46.01698386693072,46.01898185982588,46.02188984972808,46.02362584390543,46.02543083873091,46.02743183268333,46.02852682914313,46.03454280922916,46.04091878682976,46.04299177983133,46.04542577293847,46.05011275898223,46.05215075241086,46.05942373050351,46.06269872180932,46.06521771640674,46.06618171509206,46.06929071341768,46.06996007423656,46.07087304591933,46.07241171650762,46.07299072310778,46.07437872398621,46.07834771300364,46.11382561601252,46.15705949865723,46.15732249364559,46.15746161821875,46.15722461890226,46.1571546330525,46.15692763541316,46.15759865629479,46.12549972016679,46.12499272115536,46.07712481664777,46.07117782852512,46.07090082907823,46.06163884755681,46.04528388034418,46.03968289141645,46.03796089489843,45.99992797083853,45.99813397593248,45.98392301652948,45.98382601673377,45.93137015525149,45.90025523703877,45.90002323764826,45.88697027181033,45.81533045936632,45.8012574963475,45.79030152504966,45.78735753272353,45.78367754226831,45.75627161325905,45.75432461879366,45.72546756916325,45.66859942994041,45.64342036754455,45.63993035933351,45.6397445837036,45.67946173053375,45.71164384992757,45.72561889931251,45.72563493540607,45.72597515002771,45.72598316402794,45.7259351868059,45.72593518700418,45.72592319541971,45.7265252218975,45.726058260761,45.72633027738217,45.72654629949667,45.72780536026773,45.72776636046267,45.72777236396119,45.72829038052372,45.72820438062571,45.72868317633404,45.71428909543987,45.71050307531081,45.70900206591242,45.64207868771092,45.64229752309529,45.64246040300026,45.64310208450564,45.64325883379045,45.64334212930801,45.64328108752389,45.64340407586081,45.64414865316179,45.64601766147281]}]],[[{"lng":[-92.88811344633447,-92.88682643848811,-92.88696243572694,-92.88792843616817,-92.88708185008768,-92.88706642921366,-92.76939312209755,-92.76604011355758,-92.7545000832633,-92.65181016726638,-92.61595120213471,-92.57004924600514,-92.55278226235474,-92.52910628462365,-92.52830640638766,-92.52816940939326,-92.52829441597322,-92.52819744223835,-92.48692157544295,-92.48625857900066,-92.47112865305877,-92.46726967229449,-92.46680667474013,-92.40666796785209,-92.38315208278556,-92.36608116518285,-92.31979339740272,-92.29337752226256,-92.28384756931239,-92.28362457041065,-92.25775469834036,-92.24736774146302,-92.16788688898681,-92.15444391440383,-92.15527375951518,-92.15502740696269,-92.15488797156607,-92.15486989335848,-92.15486618265668,-92.1550270252695,-92.15495782900241,-92.15533379887962,-92.15509978463588,-92.1555024765176,-92.15591639263617,-92.15611730209082,-92.15615030163592,-92.15608130103142,-92.15616527157869,-92.15584925172801,-92.15620018184524,-92.1560370663011,-92.15612903490701,-92.15612800590424,-92.15613998947913,-92.15634098202611,-92.15643094651274,-92.1564939217475,-92.15638091858278,-92.15656485928959,-92.15665082951,-92.15672980318546,-92.1568127115344,-92.15664265236227,-92.15675459325679,-92.15650850957844,-92.15646241996831,-92.23950248489086,-92.28392978279584,-92.34439729899621,-92.34667731845893,-92.40650082916589,-92.41197587591729,-92.43228004930785,-92.51872173438385,-92.53735884050705,-92.53966285381752,-92.54474788291787,-92.55228992594859,-92.55999297011581,-92.61026425505256,-92.64299244080304,-92.65154348912301,-92.67309861139005,-92.68518067985038,-92.68879870041624,-92.69224671988228,-92.70256777837184,-92.75800902169188,-92.754009037937,-92.75241065870689,-92.75170905206991,-92.75219305315001,-92.75393204934187,-92.75573304649565,-92.75745704534698,-92.75750405330663,-92.76025005462658,-92.75890803713965,-92.7552000283054,-92.75171000706221,-92.75165997792263,-92.75219202462974,-92.75266694924571,-92.75802289540817,-92.76061585996496,-92.76186881505393,-92.76186880116892,-92.76101379024267,-92.75871078403954,-92.75081979336127,-92.74557541072642,-92.7371226831044,-92.73297296947383,-92.73259463667677,-92.72773758073772,-92.70996842386803,-92.70992146644382,-92.70607064503881,-92.70479436876718,-92.69995630389455,-92.69899663076913,-92.69896728350194,-92.69892026501658,-92.69895377395294,-92.69952424875312,-92.70405419734793,-92.70370517946282,-92.70272016247407,-92.69649910824492,-92.67919299107459,-92.67822298246526,-92.67875596930726,-92.67696094036295,-92.67469403100377,-92.67463104445638,-92.67066965660072,-92.66950486419029,-92.66410182314688,-92.65848579008392,-92.65210021613311,-92.65042175147273,-92.65052674067445,-92.65052692612264,-92.65056972631929,-92.6481566971611,-92.64667566213809,-92.64694265743239,-92.64946665329032,-92.65026864085448,-92.64948402893769,-92.64915158221471,-92.64676753212107,-92.64660151217133,-92.64666609276594,-92.64778530622075,-92.65269745776268,-92.65354845524512,-92.66113045585486,-92.67721846419779,-92.68023346188717,-92.68377639843807,-92.68471043410601,-92.68679242848837,-92.6916184138226,-92.69521138051276,-92.70222333016534,-92.71188929721691,-92.71581329803416,-92.7243363010826,-92.72667630048932,-92.72774329477191,-92.72802228399047,-92.7274773769599,-92.72464926309388,-92.72476126025394,-92.72608125737456,-92.73996402881184,-92.74559024969912,-92.7537687473007,-92.75690525665559,-92.76457326002431,-92.77022226508014,-92.77341126914396,-92.7759872739181,-92.78574029467892,-92.79014230520991,-92.8015023345465,-92.81208235811566,-92.81655189348304,-92.82330838046052,-92.83415539888539,-92.84378241413506,-92.84644641900822,-92.87108146738927,-92.88113548204075,-92.88374848547087,-92.88495348485402,-92.8832764708628,-92.8864204730872,-92.88644146962193,-92.88602472010076,-92.88489946020945,-92.88252844974237,-92.88296944742706,-92.88666845067902,-92.88803444925497,-92.88811344633447],"lat":[45.62837762109724,45.63340363457716,45.63677764020704,45.6390066408135,45.64405666513075,45.64414865316179,45.64340407586081,45.64328108752389,45.64334212930801,45.64325883379045,45.64310208450564,45.64246040300026,45.64229752309529,45.64207868771092,45.70900206591242,45.71050307531081,45.71428909543987,45.72868317633404,45.72820438062571,45.72829038052372,45.72777236396119,45.72776636046267,45.72780536026773,45.72654629949667,45.72633027738217,45.726058260761,45.7265252218975,45.72592319541971,45.72593518700418,45.7259351868059,45.72598316402794,45.72597515002771,45.72563493540607,45.72561889931251,45.71164384992757,45.67946173053375,45.6397445837036,45.63261155735744,45.56782131834606,45.55350626569314,45.53560019955651,45.53293218999465,45.53158518484657,45.50358308166802,45.48938907655244,45.46745809309288,45.4673630931851,45.46718309327609,45.46005309867723,45.45508110217973,45.43822211507968,45.41004013605793,45.40242714185911,45.3953671471514,45.39137215016035,45.38960915171275,45.38098015830283,45.37496016290667,45.37416516336366,45.35975317444021,45.35250818001256,45.34610118495143,45.32375920192197,45.30932321252607,45.29491322357688,45.27452623847854,45.20955617864654,45.20932233145481,45.20928126319409,45.20925710716185,45.20925410127408,45.20926794698724,45.20927893288573,45.20932088058961,45.20963468193854,45.20980465786494,45.20992565507069,45.21005164865198,45.2101736390185,45.21041962941002,45.21024756340767,45.21027352070021,45.2101415092518,45.21010548100545,45.21003146505367,45.21005546037707,45.20998145570757,45.20991744207296,45.20956733977737,45.21276736677979,45.21686759947783,45.21866739191818,45.22105239496722,45.22290639028272,45.2259503878424,45.23052738902155,45.23830940604021,45.24960141567581,45.25340841300438,45.25673442263842,45.26166742528434,45.26591141126543,45.2678425699097,45.26956639360533,45.27482334795897,45.27882832146655,45.28493929538929,45.28701428873438,45.2890292865555,45.29096629178548,45.29298132426867,45.29584490712358,45.30046033028849,45.30391075062275,45.30422532832125,45.30928932383755,45.32130333241895,45.32135074310811,45.32523873578435,45.32652733194436,45.33371732667003,45.33629645192104,45.33637532282027,45.33936531558647,45.33953491701433,45.34242230631289,45.35366126449889,45.35633125876926,45.35847325643922,45.36353026399013,45.37271130130449,45.3736053027758,45.37620229549128,45.38013829365896,45.38286670755304,45.38294251710645,45.38771037789859,45.38911230301658,45.39331031553615,45.39605933221252,45.39799861413468,45.39850835950838,45.40191469713712,45.40192071393886,45.40330935133279,45.40742435464617,45.41322835190376,45.41426634921447,45.41640933527513,45.41916932752618,45.42650930482947,45.42961931604714,45.437930314142,45.44163630931365,45.44177288693485,45.44413984430067,45.45452825979469,45.45534725425922,45.45827921156666,45.46286512167806,45.46434510321607,45.46862697838874,45.46975582281006,45.47227205193701,45.47627401726254,45.48288298229595,45.49304691846306,45.50328185825303,45.50667684887217,45.51222382065816,45.51446281550948,45.51881182584619,45.52565285031324,45.52744475795456,45.53674491316999,45.53861791969383,45.54111292121554,45.54958385889447,45.55301684547944,45.55625713783099,45.55749981728322,45.56359281930224,45.56693981616363,45.56823581220295,45.56847880628619,45.56788877897559,45.56691576451316,45.56285472315521,45.56112269148225,45.56104782961523,45.56093466278383,45.5630966409879,45.56613562378978,45.56651561781214,45.56758155631901,45.57340954119243,45.57548353804193,45.57881854090567,45.58983156596769,45.59488156604182,45.59867957287464,45.60038818585667,45.60500158912291,45.61021660619724,45.61373861135837,45.61976061039881,45.62495961523329,45.62837762109724]}]],[[{"lng":[-92.29385761603788,-92.29355851573247,-92.29361947141703,-92.29315280250025,-92.29307446584255,-92.29300746643634,-92.29284046780667,-92.29283946822831,-92.29288046912086,-92.29280346945247,-92.29278247021264,-92.29299947002886,-92.2929859777099,-92.29298450090702,-92.29286048471428,-92.29284748530489,-92.29272748736584,-92.29251049518759,-92.29237149824877,-92.29197648948448,-92.29188233507388,-92.29169271501178,-92.29167763710885,-92.29164721627183,-92.29159716102961,-92.29173920677489,-92.29206612172754,-92.29219205607718,-92.29219205420803,-92.29219204847013,-92.29129204345892,-92.28739204870536,-92.28709206155679,-92.28619206937914,-92.28369207593376,-92.27849208135662,-92.2743920888046,-92.27279210434492,-92.27059211309093,-92.26599311705013,-92.25969210379772,-92.25659210145278,-92.24249318659328,-92.23559222701979,-92.22849226412258,-92.22628033028269,-92.22349229653723,-92.21639234672348,-92.21239237138037,-92.20709240146462,-92.20302352503906,-92.20229242803777,-92.20159243070174,-92.20160496987276,-92.20213005661481,-92.20219242405997,-92.20549239439251,-92.20409240125764,-92.19949243001261,-92.19249247543294,-92.18759251094586,-92.18144079573835,-92.18139155764869,-92.17759158657589,-92.17609159837914,-92.17649159530256,-92.17789158388615,-92.18309154036628,-92.19849141099442,-92.20519235189491,-92.20569234198116,-92.20469134872059,-92.2015913736647,-92.19739140918277,-92.19329144301561,-92.19149145597588,-92.18909147762723,-92.17889157348431,-92.17429161657232,-92.17308079837957,-92.16729168344156,-92.15519179433174,-92.14869185381687,-92.14629187723922,-92.14478395045673,-92.14129193943772,-92.14339192354117,-92.14334034151626,-92.14333823078358,-92.14329093484685,-92.13789099891535,-92.12528503720067,-92.11659124684259,-92.10819133963292,-92.10738680872836,-92.10114005126866,-92.10096704740643,-92.08949154345048,-92.0713024234484,-92.06479115511304,-92.04284929275049,-92.03399187627275,-92.02472145701492,-92.02029096326744,-92.01529202552237,-92.01109205540804,-92.009419162952,-92.00812508461215,-91.98789098389783,-91.97618960369049,-91.97339086001941,-91.96232488086791,-91.96189077295736,-91.95258971480538,-91.94298966106778,-91.9347815323729,-91.93177499938382,-91.93026148814236,-91.92947540102696,-91.92626559273907,-91.91960379196756,-91.88681044097913,-91.87352915611535,-91.86666463443832,-91.86014962235804,-91.85746330440811,-91.84028920305607,-91.83135658196245,-91.8200281012282,-91.8146701752902,-91.79998829595287,-91.79013296313757,-91.78192854875981,-91.75861960621955,-91.7496507883606,-91.74887953336766,-91.74228374450678,-91.7331098846242,-91.69631873624695,-91.6888602806489,-91.64605156149101,-91.6455026695342,-91.63785435914251,-91.62428626031765,-91.61390262706051,-91.59068458380669,-91.58363457024362,-91.57429155165597,-91.56298353141196,-91.55144551029214,-91.55140851022581,-91.55193551257601,-91.55208047764592,-91.55228547098658,-91.55203447069374,-91.5523874554364,-91.55295245319959,-91.55330344194569,-91.55334143670646,-91.55345042947107,-91.55355942251953,-91.55330541987482,-91.5538884012384,-91.55344239418591,-91.55162239506238,-91.55182346321085,-91.55137358296825,-91.55121758401883,-91.55141861806148,-91.55134461847369,-91.55127765710371,-91.55091166359213,-91.55123266583895,-91.55108469636126,-91.55110280608878,-91.5509578093981,-91.5508788527536,-91.55128300824775,-91.56168497910444,-91.79803253199471,-91.80945654495488,-91.88768363421354,-91.92299567485721,-91.94176569555387,-91.94472869911269,-91.99622075742866,-91.99899976095726,-92.04963676363445,-92.11620876812864,-92.121881767779,-92.16381176932157,-92.16437176875588,-92.29370625103374,-92.29374408564983,-92.29374464633842,-92.29385761603788],"lat":[46.18007443299604,46.22457931130391,46.24404425755739,46.28778720679363,46.29513028161905,46.29798828431733,46.30432029037777,46.30710829277209,46.31375329830934,46.31462929936174,46.31931330346233,46.3218953048145,46.33114929894828,46.33216219570033,46.41722138708509,46.42087739028145,46.43199440039821,46.47876244168312,46.49558645690456,46.50399845638439,46.53277949829695,46.59074231564291,46.59535130477097,46.60465029510495,46.62494226247917,46.63408755218546,46.65513521127787,46.66324319754619,46.66393119643298,46.66604319301565,46.66814319395082,46.66734321403616,46.66284322284771,46.66034323129921,46.65884224588381,46.65864227143241,46.65744229333721,46.65284230887776,46.65074232316054,46.65104234508466,46.65714236521546,46.6587423774669,46.64924244334855,46.65004245777524,46.65294246974125,46.65280975818339,46.65264248178632,46.64984250188046,46.64994251088043,46.65194252066252,46.65457035769384,46.65504252838312,46.6566425283076,46.65669059557516,46.65870344691545,46.65894252438159,46.66474250984595,46.66694251088899,46.67024251905578,46.67674253092213,46.67894254206714,46.68023223512947,46.68024255778418,46.68344256577009,46.68634256785529,46.69024256393823,46.69184255875237,46.69524254098981,46.69614249487358,46.69834247263971,46.70254246637574,46.70404246773442,46.70594247517518,46.70764248641599,46.71124249572775,46.71624249676156,46.71754250336163,46.71674253716456,46.71724255174261,46.71770958965372,46.71994257292084,46.71594161436606,46.71514163562765,46.7159416431314,46.71874642512422,46.7252416573387,46.72814164957367,46.73146165535948,46.73159750976915,46.73464164836584,46.73954166648301,46.74492741898028,46.74864174388385,46.7491417751193,46.74914608045641,46.74917950912796,46.74918043493462,46.74924184454698,46.73603388250547,46.73130575145743,46.71537276621002,46.70894099675455,46.70562554422391,46.70404103215299,46.70647105134989,46.70552706278153,46.70574132693956,46.7059070725748,46.69274105633863,46.68765702677689,46.6864410252434,46.68268822209374,46.68254100316851,46.6808729879923,46.67994097368477,46.68094857107008,46.68131764111848,46.68150343373915,46.68159993066502,46.68199395394119,46.68328054480692,46.68961390851585,46.69085842589399,46.6915016629817,46.69211214934884,46.69236386958085,46.68969484305132,46.6899077734265,46.69017781480341,46.69098413651209,46.69319363245454,46.69467677449169,46.69760611804985,46.70592845103635,46.70913071876078,46.70933476862142,46.71107980726214,46.71350692241964,46.7232407030795,46.72492771636748,46.73461053423301,46.73473468698169,46.73756068331029,46.74257399891344,46.74641067682353,46.75433265558343,46.75503265123658,46.75748964113463,46.75627364125619,46.75567563939198,46.75566763940245,46.74963765506895,46.67589465394606,46.66151365377682,46.66142965370231,46.62894065328076,46.62355665334332,46.60013965304292,46.58942365287209,46.57463865264845,46.56049665243342,46.55508665228675,46.51759265176735,46.50282065143345,46.50232565110054,46.46100562139828,46.39416257028232,46.39373756988701,46.37444155526119,46.37429755511385,46.35273953862919,46.34959453602002,46.34790753491602,46.33103252194505,46.26961747506282,46.26803647374168,46.2439984642001,46.1570465267389,46.15784753209047,46.15787164568832,46.15786664719975,46.1576676577595,46.15744966277883,46.15763066503739,46.15756166554097,46.15754767248273,46.15740867312655,46.15759865629479,46.15692763541316,46.1571546330525,46.15722461890226,46.15746161821875,46.15732249364559,46.16670049282372,46.1668394697132,46.18007443299604]}]],[[{"lng":[-88.77887437319487,-88.77759435995065,-88.77714135276605,-88.77711435192877,-88.7770973512645,-88.77707435059679,-88.77502434841146,-88.77171734484975,-88.76291833546804,-88.75289132477812,-88.73468129773627,-88.73376029629577,-88.72348428022497,-88.71779227132384,-88.71757027097688,-88.71112226089336,-88.69850524116522,-88.69811824056016,-88.66269518518355,-88.65937517999487,-88.65927717984158,-88.65230516894482,-88.60917410152142,-88.60193009013324,-88.56066902540873,-88.55790802105324,-88.55513701669204,-88.5499500085464,-88.54153299527039,-88.54143999512564,-88.46351677215451,-88.42609460957358,-88.42409960091511,-88.4240676007761,-88.38261642065906,-88.38195941780965,-88.36554434651516,-88.34382325218864,-88.33409420989516,-88.31918114508885,-88.30638108934231,-88.30643208909228,-88.30657008848335,-88.30692408495347,-88.30794207018971,-88.30805706880314,-88.30780706757075,-88.3071841907185,-88.30678419291891,-88.30684920738935,-88.30681926319528,-88.30676527859745,-88.30666529090033,-88.30632731435108,-88.30596836126681,-88.30588537212478,-88.30588837479752,-88.30588837529507,-88.30589237720142,-88.30590938655111,-88.30609639657618,-88.3063314091055,-88.30621844362616,-88.3061304714363,-88.30608848478363,-88.30588854209262,-88.30599554537656,-88.30588859729014,-88.30580962539538,-88.30557470951294,-88.30557371011869,-88.30541676642726,-88.30533979404824,-88.30531880178526,-88.3052598225848,-88.30502590634727,-88.30494593515928,-88.30486796345625,-88.30478899188499,-88.30469003844424,-88.30469006034218,-88.3090138699436,-88.31143576421756,-88.31207695578522,-88.31247189642448,-88.31587425316309,-88.31656581484265,-88.3176205813329,-88.32249923941029,-88.33480158916687,-88.33490821622252,-88.3390910608736,-88.35518417970999,-88.41311206205249,-88.41739406212217,-88.41844306212987,-88.42251097613813,-88.43198906222898,-88.44688706233801,-88.46139506244418,-88.47161971551724,-88.50691008326565,-88.54035124137297,-88.5502192659367,-88.5598165491236,-88.58986773507998,-88.59627825744674,-88.59699844262325,-88.59939349129537,-88.59941126250435,-88.60669408440656,-88.60736451302022,-88.63865150838743,-88.65847457115932,-88.67079475582574,-88.70737873545639,-88.70741954413558,-88.72179668514926,-88.72741994012759,-88.7365194175587,-88.73710885856049,-88.76535886304137,-88.77658897481723,-88.77660382177184,-88.77644682035803,-88.77652879358918,-88.77663672990371,-88.77658372614248,-88.77634869781775,-88.77630369388041,-88.77635668463039,-88.77635668299727,-88.77632865605391,-88.77629762564987,-88.77667655953792,-88.77667555385221,-88.7766365334099,-88.77656952382236,-88.77718749085355,-88.77749347451032,-88.7778154505577,-88.77887437319487],"lat":[42.75475448929889,42.80553357850433,42.83385762854277,42.83726463458045,42.83998663940691,42.84269564420745,42.84268864315059,42.84282664171276,42.84279963718402,42.84276763201952,42.84272262905737,42.84272062896911,42.84269562797905,42.84268162743008,42.84268062740781,42.84266662678922,42.8426366255732,42.84263562553573,42.84255162211723,42.84254262179426,42.84254262178525,42.84252562111052,42.84246161701301,42.84254661651765,42.84277261318983,42.84281561302573,42.84284561283402,42.84287861242744,42.84299761190552,42.84299661189492,42.84259164139816,42.84260667647952,42.84258867830047,42.84258867833042,42.8428047177708,42.84278271832304,42.84283273386482,42.84285275430121,42.84254776244794,42.84248777620974,42.84209678686096,42.84067678199762,42.83702376948472,42.82157571682524,42.761554513042,42.75548849248607,42.75548949258302,42.71684835354138,42.71583434994745,42.71216533657161,42.69770728393119,42.69367226924794,42.69039525733182,42.68401923416379,42.67160718899275,42.66874117855899,42.66805617606251,42.66792817559607,42.66744117382102,42.66505016510651,42.66262615625581,42.65959114517769,42.65060311244346,42.64337208610397,42.63990407347024,42.62501801923195,42.62424101640185,42.61081796748712,42.60354594098242,42.58181686176643,42.5816608611977,42.56714480826168,42.56003278232144,42.55804177505905,42.55269075553898,42.53117467703323,42.52378565006651,42.51653462360038,42.50925559702863,42.49831955682786,42.49477324492474,42.49476731168628,42.4947639883033,42.4947631084444,42.49476256649717,42.49475789769988,42.49475694872201,42.49475550134573,42.49474880673238,42.49473192515191,42.4947317788357,42.49472603903665,42.49470395568054,42.49462446574383,42.49461858989152,42.49461859033065,42.49461859203355,42.49461859600123,42.49461860223779,42.49461860831109,42.49467814326177,42.49488362999072,42.49492426894535,42.49493626093953,42.49494792391821,42.4949844432446,42.49499223355091,42.49499310874682,42.49499601929949,42.49499604089568,42.49500489125273,42.49500570598254,42.49504372710441,42.49462378557305,42.49436278872052,42.49358777575095,42.49358670664927,42.49321005576761,42.49306273830793,42.49282435113188,42.49280890901721,42.49206877392516,42.49202398000503,42.50555577648777,42.50639777921855,42.52090882075896,42.55549391999688,42.55755292599112,42.57299797067704,42.5751449768973,42.58015899123308,42.58104599378049,42.59568303584441,42.61219608328815,42.64813518632935,42.65122719522077,42.66233822717959,42.66753924214469,42.68561929412688,42.6946153200842,42.70779635819373,42.75475448929889]}]],[[{"lng":[-92.80736188676967,-92.80611844982197,-92.80528692078056,-92.80031295031173,-92.79603896406798,-92.78877597918422,-92.78520599335999,-92.78296301410515,-92.78149805711857,-92.78043006869916,-92.77266309695133,-92.77190210283976,-92.77266311646716,-92.77226612293097,-92.76974602366583,-92.76936713552136,-92.76610214556061,-92.76527815379475,-92.76527816933974,-92.76857422490639,-92.76909073516568,-92.7661082535447,-92.69820405152041,-92.69498603865806,-92.69413403620224,-92.68534600374569,-92.66496192765473,-92.65990990870536,-92.65794090136419,-92.65752989982894,-92.65389588634814,-92.65207887950598,-92.64970887070464,-92.64966487056114,-92.63633082062475,-92.6245067764474,-92.62386577406912,-92.61849475397777,-92.57984160953799,-92.57971060904903,-92.55243650723931,-92.49701329326139,-92.43574391853886,-92.43158889312707,-92.42564485677349,-92.41547079455313,-92.4049827303063,-92.40017770102236,-92.3749155464553,-92.35408941984305,-92.25836083765179,-92.25106379312116,-92.25088779204492,-92.2364767472763,-92.23503574295773,-92.23317373746718,-92.21854369463199,-92.21618968759958,-92.20190564585873,-92.19732463240517,-92.18095958456507,-92.17245755958585,-92.15663051324766,-92.15280450206235,-92.14034746556673,-92.13634545383967,-92.13632645420101,-92.13628945488824,-92.13617945702354,-92.1359794574723,-92.13637145918301,-92.13639445979629,-92.13629145956362,-92.13632346037816,-92.13632046121916,-92.13563645994584,-92.13515081345159,-92.13519991413726,-92.13512997777492,-92.13507507636388,-92.13505712637705,-92.13504914975992,-92.13502221809465,-92.13499525728449,-92.13497426833737,-92.13486541717599,-92.13482951768924,-92.13481054840351,-92.1350026684038,-92.13502671919346,-92.13511875452113,-92.13515577105935,-92.13526983953176,-92.13540291892711,-92.15533293712056,-92.19580197114759,-92.21613698889092,-92.2427990120409,-92.25017601910606,-92.31622674847094,-92.31735606998129,-92.31766434330241,-92.31993706368642,-92.32901205279433,-92.33573119718571,-92.33611305113482,-92.34756605626244,-92.36151707023978,-92.36829707899511,-92.37564208675072,-92.38903911064838,-92.38975077963592,-92.39928012346944,-92.41508814234015,-92.42639415995166,-92.43373317374943,-92.43734117964036,-92.44073318347056,-92.44810019066989,-92.45889520377642,-92.4701422204411,-92.47373651872422,-92.48100023801527,-92.48473924394894,-92.49047125215164,-92.49188320924286,-92.493807257263,-92.49700900425164,-92.50875828060835,-92.51256328631419,-92.51835729594677,-92.52087729899195,-92.52733630542245,-92.53410671001085,-92.54055031600394,-92.54434532028499,-92.54666514762128,-92.5480593253841,-92.54995632866338,-92.5515093327609,-92.5511813339475,-92.55115268640489,-92.54968433433125,-92.54927933529832,-92.54977633882672,-92.5607953642948,-92.56722537830022,-92.56823807748634,-92.56943338263792,-92.57294238803502,-92.57714739368457,-92.57870224655285,-92.57884939481248,-92.58159039544631,-92.58471039842506,-92.58621540051192,-92.58879640522343,-92.59046641124768,-92.60151543095695,-92.60714043846514,-92.61456844721931,-92.61802445272136,-92.62145545919742,-92.62316246454206,-92.62334746723847,-92.62257046900729,-92.61977347098878,-92.61977838275813,-92.61977847588483,-92.62173248316167,-92.63210450692321,-92.65580654804687,-92.66098755806235,-92.66469856575688,-92.67179775463376,-92.68651061612229,-92.69489360713165,-92.69649063828933,-92.69931570440789,-92.70094764944538,-92.71319767525767,-92.73204171714578,-92.7372587288946,-92.7501997537784,-92.75419975916557,-92.75698976366301,-92.76605378106414,-92.77659662947022,-92.7879058154892,-92.80240184125269,-92.80257924801526,-92.80287484379029,-92.80361183154525,-92.8040348469959,-92.80455033996586,-92.80731685398126,-92.80798785897669,-92.80736188676967],"lat":[44.75890932658399,44.76457351114711,44.76836134630162,44.77737936642343,44.78205637769555,44.78779439262345,44.79230340364193,44.79813141696257,44.80940844155314,44.81258944886486,44.82142447206874,44.82306747605224,44.8263374826633,44.82804648658679,44.8313098596843,44.83180049647338,44.83496650539883,44.83718651077381,44.84107051927063,44.85436854601808,44.86199739449595,44.86196856437117,44.86254170679459,44.86225771425304,44.86250071686215,44.86262573902145,44.86264778988451,44.86261480241953,44.86262080733974,44.86262080836448,44.86266381750241,44.86263882198752,44.86266382794087,44.86267382806837,44.8626108612021,44.86260289066978,44.8626128922846,44.86259290564349,44.8624840018627,44.8624840021894,44.86245607017138,44.86246720363464,44.86234825825595,44.86234026195611,44.86232926724925,44.86230627629961,44.86239928583786,44.86227728990705,44.86230231251938,44.86146132925666,44.85808440411114,44.85799441011584,44.85799441026712,44.85770140673952,44.85780940669906,44.85785040635178,44.85782540258858,44.85801140253828,44.85788039855153,44.85794239757278,44.85775539291618,44.85793639127647,44.85789238716033,44.85779938594304,44.85781238283792,44.85784938192715,44.85302236912358,44.84376334456577,44.81476926768003,44.80155223262921,44.79713322093608,44.79098420463171,44.78953320078178,44.7813921791967,44.77152815304253,44.75655711340814,44.69886492543487,44.6843748770705,44.67517484637541,44.66094679889848,44.6537337748285,44.650361763576,44.64050673069001,44.63485171182092,44.6332527064873,44.61178063484296,44.59729458650366,44.59286657172873,44.57562251415304,44.56830948974367,44.56323547279674,44.56085846485849,44.55100743196544,44.53957939380609,44.53947839050867,44.53972338531781,44.53975338239874,44.53981837865791,44.53971537740014,44.54096657588284,44.54251244561506,44.54280244657647,44.54494045530022,44.55089548113186,44.55383731008776,44.55400449638699,44.55714951509729,44.55893553158209,44.55918253774603,44.55865668547295,44.55769755032539,44.55773889878734,44.55829256024385,44.56035957849567,44.55880358348238,44.55448557829668,44.55278657692975,44.55328958102851,44.55717659689176,44.56274561938124,44.56528663439003,44.56627641069746,44.56827664991876,44.56806765228846,44.56620565234624,44.56614555210096,44.56606365460026,44.5669763621264,44.57032564884499,44.57180164332951,44.57518363735841,44.57520063150791,44.57355461282899,44.57032873624832,44.56725856864531,44.56698655932189,44.56748999560254,44.56779255245461,44.56898855057747,44.57160755244544,44.57344955704884,44.573498374786,44.57600056587169,44.57770457038583,44.58113057638377,44.59495657869342,44.60177057695184,44.60258192636405,44.60353957512474,44.60464956875514,44.6050545592467,44.60403595189008,44.60393955286602,44.60086354010426,44.59986153054185,44.60008852732169,44.60169852415849,44.60593652826713,44.6120525126621,44.61243349941533,44.61173047968165,44.61287047318866,44.61501746854906,44.618224470075,44.62071347409677,44.62351848111451,44.62921449852529,44.63410282531371,44.63419550755838,44.6389835111984,44.64902750211856,44.65804045495481,44.66088444586727,44.66338044003938,44.66947194535496,44.68209641060003,44.6882618294816,44.68943639420742,44.69217144313739,44.69375138825322,44.70108536455182,44.71367096833894,44.71715531819833,44.72212028775027,44.72276728762208,44.72382928832207,44.72960429355116,44.73338103412711,44.73743229800996,44.74516730396476,44.7457974141402,44.74684730594274,44.74785494437661,44.74843330761707,44.74873660313443,44.75036430942269,44.75147031146038,44.75890932658399]}]],[[{"lng":[-91.42518805433772,-91.41629601407263,-91.41220098597014,-91.41123497933791,-91.4009109084577,-91.32257937035206,-91.32149235950234,-91.32204335714995,-91.32323336286626,-91.32732339092472,-91.32854739844336,-91.32887939675422,-91.32996340189918,-91.32803838004963,-91.3289893823387,-91.33543541215199,-91.3380694202319,-91.33811740778978,-91.33688739015297,-91.33771139141098,-91.34323342822161,-91.34467743169476,-91.34377341597319,-91.34115839590322,-91.34009138093163,-91.34092837505956,-91.34046236409193,-91.33881434236778,-91.33832733237408,-91.34007332460149,-91.33963831395215,-91.3373282872226,-91.33411026515009,-91.33230625880766,-91.32838522752516,-91.3277962180986,-91.33141323281346,-91.33240323199081,-91.33207422430559,-91.33035820511014,-91.32690517661729,-91.32501215759467,-91.32188513157929,-91.31863809796464,-91.31702007465465,-91.31636505708559,-91.31607904013991,-91.31007598885813,-91.30747695937289,-91.30475793992272,-91.29561188193055,-91.2910808553352,-91.28648982867166,-91.28419781318193,-91.28149778914047,-91.27972477029098,-91.27665173165076,-91.27482771543106,-91.27045868104689,-91.27007766996576,-91.26741564418242,-91.26453662643259,-91.26290562285713,-91.26156861611514,-91.25804059182839,-91.25665158444686,-91.25536558210811,-91.25452458708148,-91.25265558756648,-91.24910657945804,-91.24747158282076,-91.24204858815732,-91.24026158810733,-91.23440058166659,-91.23187758220264,-91.2294375854826,-91.22687259453087,-91.22188960605608,-91.22096060604093,-91.22095059581609,-91.22001059169634,-91.21651858509743,-91.21589557711148,-91.21719856082959,-91.2167285563053,-91.21447154957427,-91.2118545491617,-91.20954154721368,-91.20824254268821,-91.2082725255315,-91.20794752034878,-91.20448551856822,-91.2010765149701,-91.19940750639138,-91.19979549631937,-91.1988424855048,-91.19908748052362,-91.20130147315339,-91.20060146728221,-91.19821346434566,-91.19510646940176,-91.19178546619058,-91.18928645521595,-91.18769045203459,-91.18598845793487,-91.18736346934359,-91.18699647468148,-91.18040648009116,-91.17718747812309,-91.1718004648346,-91.16887446379656,-91.16794146622094,-91.16805247756183,-91.16642448835522,-91.16411148963711,-91.16116048866635,-91.15820849028029,-91.15604749708626,-91.15193050383645,-91.15184354138306,-91.11231254715393,-91.05730755488383,-91.02335655995255,-90.97310551423482,-90.95306647496254,-90.91291639717092,-90.91302541804642,-90.91319452822827,-90.91262063652213,-90.912535646534,-90.91194370080241,-90.91174771927869,-90.91152774029644,-90.91070181216904,-90.9105288294966,-90.91028484915616,-90.91019186033286,-90.91014786839381,-90.91009287827269,-90.91007289072549,-90.91008789333799,-90.91009689383429,-90.91009489512363,-90.91008590374518,-90.91008490443708,-90.91009991281582,-90.91009991287054,-90.91026895655935,-90.91032896756157,-90.91055900046993,-90.91096915349415,-90.91099117572233,-90.91097522027508,-90.91077336963315,-90.91074037996367,-90.91072438430305,-90.91066240249614,-90.91053940429828,-90.91065241023408,-90.98392325559482,-91.02486226223677,-91.03092527202023,-91.07120233685018,-91.07274333952836,-91.07932235004832,-91.08664736180936,-91.10873139740734,-91.13104943307357,-91.15001446316587,-91.15063846420044,-91.17126249769143,-91.20051454476295,-91.20180654685302,-91.25777306041381,-91.25593163819417,-91.2554929702235,-91.25490263376078,-91.2554306299637,-91.24395453006113,-91.24413452530545,-91.25324429155283,-91.25967641987454,-91.26146391932676,-91.26243552304014,-91.26391809334584,-91.26443550623421,-91.26743550636488,-91.27203649687027,-91.27303648752806,-91.27573648119085,-91.2764416123937,-91.27769445473614,-91.28196746015699,-91.28413745860703,-91.29100147546018,-91.29673849599115,-91.29881450236327,-91.29988784109563,-91.30130150719675,-91.3109905361577,-91.31303652877773,-91.31530952785549,-91.3206045418618,-91.32814257214174,-91.33814061808614,-91.34233463274704,-91.34344696650705,-91.34627064324471,-91.34774064868415,-91.35168766722661,-91.35674069315235,-91.35742569618817,-91.35752257189579,-91.36324171825632,-91.36447847334568,-91.36473571736231,-91.3666417259017,-91.37514177064247,-91.38578482840238,-91.38766186651327,-91.3950858841242,-91.40601095239916,-91.40739496090227,-91.41055497946864,-91.41249099148321,-91.42413406806025,-91.42518805433772],"lat":[43.98432362504334,43.98418662376222,43.98417862326158,43.98418562318064,43.98423062218654,43.98446161400297,43.98623061986048,43.9894636308855,43.99082363569799,43.99109163732398,43.99166663951885,43.99391464732931,43.99531865239998,43.99991266779698,44.00102666888311,44.00484867270492,44.00737567490564,44.01039067666295,44.01248167747232,44.01357067836706,44.01417368056153,44.01578068203406,44.01796668305799,44.0183046823277,44.02004168296941,44.0228316849355,44.02463468582314,44.02698968654403,44.02852868723699,44.03329169077176,44.03507269162381,44.03750069196726,44.03730769035357,44.03577568867627,44.03657568729729,44.03781268766669,44.04041269076983,44.04226869226212,44.04353069278504,44.04518269280407,44.04611569151504,44.04743169119742,44.04832868999078,44.05082268943282,44.05361868983044,44.05667569084978,44.06020569227967,44.06226068954643,44.06487768901468,44.06491568733001,44.06327868106394,44.0619586778661,44.06055167467618,44.06036667325066,44.06152767192759,44.06301967121698,44.06702967023543,44.06781166924152,44.0686216665918,44.07061966672185,44.07226766525582,44.07163266323511,44.06972566187176,44.0690716609077,44.06889665859703,44.06830665763116,44.06668565663344,44.06407065583953,44.06078365438896,44.05824964989734,44.05751464487357,44.05647062828923,44.05655862286266,44.05833960527235,44.05831759761203,44.05764059010322,44.05560158198023,44.05308456634695,44.05312856351681,44.0555495639351,44.05656456126398,44.0582715509877,44.06018454948874,44.06398055419269,44.06506855299592,44.06674654655767,44.06694453874376,44.06749253192643,44.06860852829151,44.07265052932842,44.07388352865045,44.07442651848623,44.07539350860508,44.07746750420643,44.07982050598363,44.08239250386649,44.08355450490076,44.08521551183861,44.0866175101567,44.08738150337842,44.0862914939862,44.08714748452026,44.08979347802743,44.09058547362577,44.08925646824639,44.08654647140188,44.08530946993663,44.08425445026138,44.08481544101244,44.0880764264363,44.0884064180192,44.08787141508722,44.08523341438405,44.08277840864051,44.08255540174852,44.08287539320121,44.08259638440222,44.08109137739008,44.07966636461295,44.0709963604373,44.07109124245053,44.07128607837859,44.07133697708325,44.07088284347866,44.07113579657689,44.07152270262944,44.06475769149573,44.02883963147195,43.99266260009288,43.98922560867854,43.97055865534459,43.96424367128612,43.95708368945215,43.93272675187036,43.92691076696711,43.92030678415474,43.91658279390809,43.91390980092954,43.9106358095388,43.90653082035524,43.90567682260837,43.90551682303113,43.90509182415102,43.90225183163592,43.90202383223688,43.89927183948978,43.89925383953722,43.88491487724409,43.88130188671231,43.87048291494263,43.81986704667445,43.81250106584198,43.79775410437031,43.74743422785736,43.74181522354508,43.73945722174383,43.72956321415668,43.72871921400986,43.72533521084145,43.72526390124734,43.7250148373107,43.72500583827675,43.72502884473764,43.72491484486939,43.72495784596005,43.7249788471513,43.72495585063839,43.72516185456497,43.72556085846805,43.72553785852453,43.72534686151958,43.72547886670109,43.7254728668993,43.72566168658454,43.72984988048334,43.73142038782731,43.7335338946376,43.74487693209847,43.77304701885622,43.77466802335154,43.78337860485048,43.78952886338835,43.7912380306356,43.79216705649132,43.79824566119167,43.80036707695782,43.80416708349085,43.81376710501797,43.81856711782119,43.82486713296572,43.82950386102165,43.83774216903119,43.84273917917413,43.8470661899335,43.852734200082,43.85516620179364,43.8565562040968,43.85783368058017,43.85951621107274,43.86738222742473,43.87575825326472,43.88180927149399,43.88849228988027,43.89343630140325,43.89766530948118,43.90269832471397,43.90478310411485,43.9100753489033,43.91196535494207,43.91454636229977,43.9165653672345,43.91723236937217,43.91738781020683,43.92656440160564,43.93345267703707,43.93488543233439,43.93746444147391,43.9442904652623,43.95424050202909,43.95528385924474,43.95941052147687,43.96393053899384,43.96514954395049,43.97089356771622,43.97341257824996,43.98263261799527,43.98432362504334]}]],[[{"lng":[-87.76602903713523,-87.76552913320889,-87.76531932532791,-87.76497646907586,-87.764996516878,-87.76503160527773,-87.76516758459353,-87.76484357356473,-87.76418753910434,-87.76382552650036,-87.76285849841146,-87.76254949070962,-87.76238476134085,-87.7542324253716,-87.75376961376035,-87.75090239534248,-87.75089227184414,-87.75088638993213,-87.74739037289957,-87.73609541152847,-87.65115235776285,-87.64115435761993,-87.59016035647034,-87.51931035487846,-87.49900535425225,-87.48360935666661,-87.39758837170095,-87.37508169215198,-87.37843139351088,-87.37847454592469,-87.37857741138664,-87.37930020838303,-87.38219798264639,-87.38220343394413,-87.38521745065755,-87.39073247445491,-87.39300948479438,-87.39352449770506,-87.40163253254845,-87.40453134845258,-87.4049689956678,-87.40541354761909,-87.41101855646522,-87.41803157295914,-87.41867097749883,-87.41956990517821,-87.42027299137274,-87.42088259577166,-87.43141561893478,-87.43168170998207,-87.43313769414601,-87.43749663752682,-87.4385769860417,-87.4394216529152,-87.44011967128431,-87.44552064156431,-87.44696671414542,-87.45113175462792,-87.45217776934054,-87.46809686245658,-87.47090688927818,-87.47115581996098,-87.47324191662946,-87.47372494986782,-87.477643562352,-87.48370004151407,-87.48391807065613,-87.48375608828022,-87.48751607945472,-87.4893605812249,-87.49002806117184,-87.49410905435221,-87.4934580494464,-87.49274504574173,-87.49449604552191,-87.49488752621316,-87.49662604790777,-87.49775738502429,-87.49866604500727,-87.49849103361309,-87.49821927266991,-87.49806534435191,-87.49773604052368,-87.50037303883065,-87.50077585801392,-87.50247601700181,-87.50234354946713,-87.50188700445187,-87.50610788695496,-87.50636597576965,-87.51105639892801,-87.51130688117873,-87.51163894732025,-87.51327293045229,-87.5135519578443,-87.51750117106988,-87.51796889951018,-87.51695688535132,-87.51760087070947,-87.52094179203485,-87.52105084768991,-87.52812581345817,-87.5324879066911,-87.53358678347924,-87.53508577090564,-87.53336776762752,-87.5364347522417,-87.54087972938795,-87.54129829080961,-87.54295392611773,-87.58336358612009,-87.6236574585803,-87.64419939390849,-87.68472726564542,-87.70499420124224,-87.73543610476112,-87.76598703719138,-87.76602903713523],"lat":[44.3271868824627,44.3561728244136,44.41450570582644,44.45818361696129,44.47272858724372,44.5017435268655,44.53085144861878,44.54536241016044,44.58914629506227,44.60358825806494,44.63254118610215,44.63962616914086,44.64454068076914,44.65058518461715,44.65136473105905,44.65619418988998,44.65870080099431,44.66015718127508,44.66801916696717,44.67702755210072,44.67587206630523,44.67576505786776,44.67546901428184,44.67519995344365,44.67523193456385,44.67532490281778,44.67551172621695,44.67539033114307,44.67028070309041,44.66876819398367,44.66516271912848,44.66386145882795,44.6586445604086,44.65863474637081,44.65384976690761,44.64712679802101,44.64424681108908,44.64065682288886,44.63119286646619,44.62812617439684,44.62766318216942,44.62719288534003,44.6250009021015,44.62087192695759,44.61954379325365,44.61767659329283,44.61621618382291,44.61494994927986,44.60948598370529,44.60929288223685,44.6082362789325,44.60507300691216,44.60292861031756,44.60125202103896,44.5965890353683,44.58845413835112,44.58627607580391,44.57648210984811,44.57289912144663,44.55192720359639,44.54579822431337,44.54512830693395,44.53951424460028,44.53151326667833,44.52359482189649,44.51135633396294,44.50442735246199,44.49952436591938,44.4911694065208,44.4809313653622,44.47722646942476,44.46997550582466,44.46708851731667,44.46505352507882,44.46376253292384,44.46380296785003,44.46398253480662,44.46215576483295,44.46068855161766,44.46023296135434,44.45952551233271,44.45912480560603,44.45826756074833,44.45620857266842,44.45403107578448,44.44484062160726,44.44273761279169,44.43548966143565,44.42447991013572,44.42380671110951,44.41512412505616,44.41466044963811,44.4140457517565,44.40597478523648,44.40528458292918,44.3955158059368,44.39435883236568,44.38374587661826,44.37569890966753,44.36778719887594,44.36752894170952,44.35926497157065,44.35275416991955,44.35111400105089,44.34640301888719,44.34141804003347,44.33794605162522,44.33274206878917,44.33168739390327,44.32751558785358,44.32756605344211,44.32745201989826,44.32754600229892,44.32745696842479,44.32732695168318,44.32723692620934,44.3271868825454,44.3271868824627]}]],[[{"lng":[-90.42690140887441,-90.42323841447759,-90.42264541537992,-90.34209353588551,-90.32919655492397,-90.30863658488713,-90.2997025980105,-90.28988361241332,-90.2575206597288,-90.25014067042434,-90.24963767048658,-90.19621065014738,-90.19080064845424,-90.15211463592044,-90.14931463526031,-90.1474116339722,-90.13750063079522,-90.12512062788288,-90.11770262413729,-90.11429262442529,-90.10762062224759,-90.1050026198721,-90.09079861583382,-90.08298461323062,-90.07309160939944,-90.06575260631708,-90.0510546001471,-90.03516359567652,-90.0105275854097,-89.99591059134724,-89.99495159348783,-89.95620768341989,-89.95109469522021,-89.87512286789115,-89.86399989225355,-89.86375089280787,-89.85690390809333,-89.85675090844063,-89.8384099493987,-89.83848207642009,-89.83857007841301,-89.83856509355699,-89.83835310721878,-89.83812411855415,-89.83809614215663,-89.83809514305796,-89.83754819790396,-89.83776420379634,-89.83740822979132,-89.83722624024935,-89.83737325637829,-89.83741627446032,-89.8378383143736,-89.8375763178134,-89.83758233986633,-89.8375853421377,-89.83757935715852,-89.83758790678002,-89.90660141563667,-89.92637433830477,-89.92646647603603,-89.9264843381752,-89.9464099670365,-89.95529130411468,-89.95558950271372,-89.96615673309508,-89.98066261074274,-89.98507226747832,-89.98564526684311,-89.99721325258879,-89.99931424985169,-90.01702823182872,-90.01854339275617,-90.01866522998755,-90.07343717796171,-90.07367017448281,-90.08563262575747,-90.093026155521,-90.09500415381102,-90.10395759591876,-90.14292210634849,-90.16436308516209,-90.18157206828009,-90.18708150115569,-90.19284412852141,-90.20280516345319,-90.20607304417422,-90.20609412825698,-90.22091505305372,-90.22319002725817,-90.25062200015618,-90.25312099778102,-90.26714298454897,-90.26933498247509,-90.27286397914486,-90.30231880078838,-90.30382294991173,-90.30909592266562,-90.36265189460447,-90.36787388964572,-90.36796264723087,-90.3706728870105,-90.38188410138429,-90.40170303490372,-90.40592685398271,-90.42637776992224,-90.42623181688349,-90.42619381233216,-90.42616880912107,-90.42611780283437,-90.42608779908555,-90.42602479236285,-90.42592077867292,-90.42589777577308,-90.42585977140536,-90.42587876782709,-90.42588676594549,-90.4258807498242,-90.42580073488477,-90.42580373231525,-90.42584173012555,-90.4259877214394,-90.42587370762006,-90.42587869065453,-90.42587868839738,-90.42588067932414,-90.42593166513582,-90.42604063665664,-90.42609662233886,-90.42612361499474,-90.42627854033434,-90.42629351845243,-90.42635749634955,-90.42669545167207,-90.42690140887441],"lat":[42.81286274953639,42.81287174813927,42.81287474791972,42.81366472057532,42.81381171646761,42.81410571036803,42.8142007075749,42.8143037045227,42.81463469459898,42.81471969243834,42.81472269379185,42.81481689886527,42.81475791921063,42.81440906526844,42.8143360755749,42.81444708349894,42.81434912090521,42.8140211665156,42.81421119599067,42.81390820740867,42.81384723266265,42.81412024416668,42.81387329730824,42.81381132695034,42.8138383650288,42.81390639351592,42.81404345054723,42.81374951005166,42.81396660554196,42.81384865101737,42.81385665237666,42.81343170417614,42.8133857110825,42.81328381610193,42.81352283219898,42.81352583255203,42.81359784222487,42.81359784243656,42.81380086830981,42.77552977442142,42.77487977266342,42.77032676151016,42.76633275213877,42.76304374454801,42.75594872725218,42.75567772659151,42.71952362726331,42.71410761142968,42.69201954934091,42.68317752453928,42.66897048386315,42.65320743896321,42.61802133825167,42.61535433107967,42.59619627660953,42.59422027098796,42.58118323393594,42.50554365173728,42.50573430469359,42.50578892826847,42.50578809055495,42.50578792815288,42.50567654453228,42.50562689815224,42.50563528880984,42.5059326275893,42.50634079125102,42.50646486933319,42.50643186867138,42.50675585741071,42.50691485556922,42.50712785270722,42.50727686995363,42.50728885273898,42.50827166417565,42.50827584499147,42.50820477018698,42.50816084160616,42.50788584115299,42.50793554163365,42.50815183311833,42.50827282937872,42.50806882663598,42.50799664385252,42.5079211438125,42.50779063765894,42.50774782298663,42.50774784515487,42.50776342820578,42.50776582016368,42.50752181568519,42.50734081347483,42.50764279814909,42.50772679568401,42.50753179239808,42.50747277397846,42.50746976012451,42.50743201947818,42.50704869906285,42.50711469350097,42.50711459827638,42.50711169056571,42.50704171604014,42.50691801660614,42.5068916537271,42.50706006086716,42.52537962116713,42.53009761834079,42.53342561634368,42.53994661242744,42.54383661008799,42.5508276058839,42.56504859729426,42.56806459546945,42.57261359271607,42.57627159047978,42.57819758930363,42.59480457919121,42.61031556975051,42.61295756813921,42.61515056680059,42.62384756150707,42.63827055271637,42.65572954208331,42.6580535406678,42.6673915349811,42.68189452617797,42.71096250858175,42.7255584997698,42.73304549525384,42.76929456622671,42.77658959689223,42.78392762777359,42.79865268982659,42.81286274953639]}]],[[{"lng":[-90.04614314214486,-90.04518919885489,-90.04534220547299,-90.04481322042398,-90.04337326130377,-90.04353626628,-90.04247929219794,-90.042222330939,-90.04227337023889,-90.04253065818969,-90.0427207809085,-90.04278785800339,-90.04288394010659,-90.043415127549,-90.01164409872774,-90.01028209769845,-90.00850509586699,-89.91992200319729,-89.81742489515452,-89.79597587263868,-89.7959078725665,-89.78595286169558,-89.74390582200324,-89.71434381258717,-89.69261480638211,-89.67229479998593,-89.56911576817427,-89.54850476156467,-89.5478217613493,-89.49754773938571,-89.49478073124496,-89.48692970891598,-89.47936768741151,-89.46901165780831,-89.44858659947816,-89.42825854120905,-89.42843053076848,-89.42739846508584,-89.42628844939941,-89.42485234883178,-89.42482430470118,-89.42482330426122,-89.42456011027102,-89.42453108933741,-89.42428395502856,-89.42454078101775,-89.42471960690119,-89.42521939273067,-89.42538035074477,-89.42532031153647,-89.42596316787058,-89.42598415307573,-89.42580014920448,-89.42597006792086,-89.49202204448302,-89.59034783622526,-89.59056483578779,-89.63257974058338,-89.63306873945157,-89.72683452578781,-89.75492748087639,-89.79672754725304,-89.84448262414065,-89.96449281586217,-90.04368394425046,-90.04394198322633,-90.04496329103205,-90.0452843336618,-90.04518534796932,-90.04542240900906,-90.04601953889231,-90.04606363965974,-90.04614314214486],"lat":[45.34030995144994,45.35066697805469,45.35178098059355,45.35460598819057,45.36231400891725,45.36313501072482,45.3680600241433,45.3749660414095,45.38186705827336,45.43248318210877,45.45404123474742,45.46760126792385,45.48203830321395,45.55508334403047,45.55503238127134,45.55514938285414,45.55502038495197,45.55511112597252,45.555491782464,45.55559471073779,45.55559471050978,45.5554756768661,45.55561555512447,45.55551654752283,45.55573854273032,45.55570353759563,45.55585251244461,45.55573050697516,45.55572850679985,45.55564949588021,45.55545949663146,45.55551750058834,45.55557150439208,45.55553450926577,45.5555055190128,45.55535352835777,45.54890650951303,45.51206440289001,45.50490538272751,45.47815130461887,45.46716627209755,45.46705727177532,45.41884012913485,45.41363411373619,45.38025001504501,45.33668788583229,45.29317475680399,45.23512365210308,45.22007167588331,45.20607469817553,45.15472877932303,45.14945478769705,45.14807079002269,45.11909783598974,45.11945079504182,45.11970571027592,45.11972071005517,45.11989567274217,45.1198916723204,45.11996558965446,45.11998558739504,45.11992474159749,45.12009091749909,45.12016236030392,45.1202145012145,45.12756551438113,45.18584761778379,45.19383363173682,45.19659763668732,45.20811565688201,45.23255769943297,45.25157673393856,45.34030995144994]}]],[[{"lng":[-90.92283547196047,-90.9233597317489,-90.84608975158294,-90.84379475218773,-90.80007976151626,-90.74495778879019,-90.73986980675029,-90.69939895080607,-90.67870402444379,-90.64305815152132,-90.55705145739906,-90.43382766683914,-90.42761766865603,-90.40640167387876,-90.31503670004348,-90.31566449477157,-90.31572948749718,-90.31576146719551,-90.31578745589667,-90.31589745557265,-90.31606945521031,-90.31607645515501,-90.31655845401524,-90.31654445386516,-90.31657245370008,-90.31659945335082,-90.31659145293827,-90.31606045316929,-90.31582845309063,-90.31507045306452,-90.31516445261862,-90.315324452281,-90.31572045128125,-90.31583445057861,-90.31592244986467,-90.31653044818115,-90.31661044772888,-90.31685544681018,-90.3169544456304,-90.3168614451465,-90.31686144514525,-90.31684744466286,-90.31690944436549,-90.31681044436752,-90.3162512897443,-90.31634725297987,-90.316465219408,-90.31589708340645,-90.31574506487907,-90.31600604943529,-90.31573301507738,-90.31566187678627,-90.31575487663407,-90.31595975341587,-90.31605275327432,-90.37587872556314,-90.39758571602465,-90.43634869947331,-90.4972186733562,-90.55874469597563,-90.55874369609721,-90.68048474432375,-90.70518975413879,-90.70726575488415,-90.72214776075811,-90.76097474638105,-90.76428673871673,-90.80191565162225,-90.8018796381013,-90.8016575827796,-90.80151849222558,-90.80162449177367,-90.92129614704143,-90.92288614244015,-90.92266607715518,-90.92228200679443,-90.9222399767273,-90.92234697635539,-90.92164183582787,-90.92173581004792,-90.92172875371196,-90.92173269767487,-90.92152474650993,-90.92152474674718,-90.92197591697521,-90.922063951211,-90.92224401941237,-90.92224401971396,-90.92250615701752,-90.92252324574412,-90.92277324673555,-90.92266629537944,-90.92243831943856,-90.92243032017953,-90.92239233023456,-90.92241234096453,-90.92241034207883,-90.92250736475003,-90.92266538747488,-90.92339045747822,-90.92283547196047],"lat":[44.99996663144228,45.03114373466134,45.03156862931285,45.03158462620864,45.03160156590435,45.03141149856957,45.03138050125266,45.03131652356593,45.03128253500297,45.0312595548775,45.03112160277063,45.03098162459621,45.03112362373957,45.03149862066845,45.03382960613951,45.00536660937365,45.00436060948243,45.00154660978883,44.99630561279939,44.98910661833334,44.98199762379597,44.98071362478384,44.96023564052727,44.95660164332544,44.95327864588282,44.94580165163845,44.93631765894029,44.93121766287739,44.92401766842242,44.90236368508901,44.89213669295463,44.88770569636312,44.87356670724314,44.85915071833732,44.84407072994353,44.82628674364977,44.81899774926426,44.80794775778228,44.78643077435629,44.77207978540187,44.77205278542267,44.76095079397055,44.7573427967531,44.75279680024664,44.68515472194375,44.66992370311971,44.65603768600013,44.59895461462763,44.59112660471047,44.58489359729479,44.57038757889804,44.51277550710439,44.51277550727398,44.42458353289482,44.42450253309293,44.42334063251925,44.42327966838087,44.42254773247642,44.42261383283142,44.42228786504347,44.42221086502492,44.42223992233902,44.42222793396142,44.42227693496751,44.42229394198488,44.42233696172694,44.42234596372386,44.4224429863984,44.42950299035709,44.45850600659499,44.50955701245006,44.50968401225965,44.50982905966683,44.50984106027669,44.54379999357459,44.58070792105151,44.59629189047528,44.59629389050407,44.67019074541215,44.68332271968661,44.71245066257644,44.74140060581737,44.7704085922139,44.77048359222597,44.82476460124574,44.83564960309003,44.85730960679999,44.85740460681572,44.90082861429385,44.92875161898607,44.92919161937792,44.94442862180578,44.95190062274026,44.95213062276729,44.95528062323805,44.958665623831,44.95901562388641,44.96618362522717,44.97337962667606,44.99552063162827,44.99996663144228]}]],[[{"lng":[-91.27274070125809,-91.26851933229547,-91.26779168261606,-91.26806691529221,-91.26845467891272,-91.26767005241749,-91.26653767248023,-91.26131565683497,-91.2587556484948,-91.25777306041381,-91.20180654685302,-91.20051454476295,-91.17126249769143,-91.15063846420044,-91.15001446316587,-91.13104943307357,-91.10873139740734,-91.08664736180936,-91.07932235004832,-91.07274333952836,-91.07120233685018,-91.03092527202023,-91.02486226223677,-90.98392325559482,-90.91065241023408,-90.91063841026184,-90.90924941309075,-90.8407985576286,-90.83659156653793,-90.8057336317265,-90.80179664000693,-90.79065966349822,-90.77050370604773,-90.75519673829017,-90.6844186489509,-90.67093262822522,-90.66613662070799,-90.66512861929328,-90.6070565321552,-90.60702152204831,-90.59964851075772,-90.597223507015,-90.58721249142855,-90.58720650253045,-90.58472649883511,-90.5572544574764,-90.5549644545208,-90.55252045061162,-90.55245445050498,-90.50798138268516,-90.48745633250738,-90.45999824903755,-90.44968621783531,-90.43968718766928,-90.4328841671267,-90.43283116694703,-90.41631911401166,-90.40121506583507,-90.39365704182354,-90.38874102582344,-90.3876750226968,-90.37415397946026,-90.37360597772371,-90.36899896278936,-90.36499594973951,-90.35177390725774,-90.35156590660829,-90.34225287736315,-90.34195387641404,-90.33379785053037,-90.33267984698578,-90.3121927819471,-90.31219278199356,-90.31222880478853,-90.31238390056315,-90.31241792098785,-90.31251798090645,-90.31266704869628,-90.3126900819053,-90.31240310601426,-90.31243414248269,-90.31192120867856,-90.31164426059823,-90.31154028762545,-90.3114383091584,-90.3111933567406,-90.31099636692011,-90.31106841237828,-90.31621243006292,-90.32857447258768,-90.33029047819562,-90.3561835668753,-90.36532659818482,-90.4314738267058,-90.45241589922429,-90.45708091543287,-90.46155293098766,-90.46231993365662,-90.47106396453329,-90.47679998361328,-90.4787559903932,-90.48087999776605,-90.48709601936606,-90.49012902988525,-90.49710305437189,-90.52700905202815,-90.55214003963543,-90.55232403954059,-90.58705802225268,-90.59368901894935,-90.60696201234138,-90.63344199909385,-90.65266598965603,-90.67165198017653,-90.67162898269157,-90.671577988404,-90.67081105702697,-90.67071806160247,-90.67034508389936,-90.66986608395391,-90.66902506717804,-90.66847805580035,-90.66847804704847,-90.6683950134404,-90.66856101115511,-90.67873300892897,-90.68365400788572,-90.68884900680565,-90.7088010039089,-90.71286800311698,-90.74668499673973,-90.75947999159764,-90.76758298788316,-90.76924198711701,-90.79752597392405,-90.7982649735565,-90.81720696461605,-90.82782195965976,-90.8869039320689,-90.89412892867286,-90.90278192460337,-90.9474549036556,-90.94927690279999,-90.95468790025184,-90.96241989661306,-90.9678468940571,-90.9885428848941,-91.02886488120893,-91.09074588408258,-91.10730888538875,-91.18748388936474,-91.18810188939862,-91.20182789010298,-91.20555054027787,-91.2071448861101,-91.20905598253805,-91.22874984546836,-91.23227583465017,-91.23336682614932,-91.2331868208326,-91.23224081625251,-91.23105043502798,-91.22950281086112,-91.22458580468927,-91.2203987927368,-91.2160347725313,-91.21528176506445,-91.21761475257584,-91.21800047103052,-91.21826973997837,-91.21770573392232,-91.21787572852028,-91.21735272531521,-91.21829172404971,-91.2226127223565,-91.22440663324699,-91.23002672134309,-91.23294072048741,-91.23672471607041,-91.24318271390274,-91.24409271136402,-91.24381970937735,-91.24321370827609,-91.24064870484555,-91.23443169805179,-91.23281169539298,-91.23184635255171,-91.23148968803478,-91.23153902605908,-91.23186468439216,-91.23270668386461,-91.23449868379795,-91.23910868436859,-91.24364107236883,-91.25292569179466,-91.25826670010653,-91.26163070514843,-91.26509071004608,-91.26874771490301,-91.26845670984535,-91.26317769490788,-91.26239669182661,-91.26291565081402,-91.26313662177847,-91.26385569247492,-91.26505069442105,-91.27076670517532,-91.27174870663758,-91.2732517058721,-91.27274070125809],"lat":[43.676609688195,43.69285286829825,43.69565275250421,43.70153605820129,43.70982479671562,43.71151233791515,43.71394781239621,43.71949083772389,43.72342685453763,43.72566168658454,43.7254728668993,43.72547886670109,43.72534686151958,43.72553785852453,43.72556085846805,43.72516185456497,43.72495585063839,43.7249788471513,43.72495784596005,43.72491484486939,43.72502884473764,43.72500583827675,43.7250148373107,43.72526390124734,43.72533521084145,43.7253362109014,43.72539421681698,43.72545350615491,43.72544052391583,43.72545265434628,43.72548167103605,43.72551571816972,43.72555580344653,43.72565286836252,43.7262598916712,43.72637489179007,43.72648189188656,43.72642489182766,43.72598689162392,43.72961189204339,43.72954189167729,43.72952989155988,43.72952789107592,43.72582889172762,43.72580889174714,43.72573689196862,43.72558589208414,43.72564889206463,43.72565089206383,43.72579289226314,43.72582688511926,43.72592386930385,43.72592386342069,43.72590085775935,43.72588985390041,43.72589485386055,43.72667284285454,43.72733383273948,43.72764382767156,43.72794882412679,43.72792382355966,43.72856581415859,43.72858781378444,43.72886381041638,43.72912480742473,43.72982679783883,43.72983279769957,43.73014879132549,43.73016179111286,43.73051678529106,43.73056478449163,43.73148076960957,43.73146776964552,43.72511978722276,43.69845486102331,43.69276987675055,43.67609392286834,43.65726197492412,43.64799300052989,43.64099001987976,43.63081504800349,43.61182210061528,43.59703314163568,43.58937016289806,43.58324617990612,43.56969221759012,43.5666542261191,43.55399326119647,43.55398525800938,43.55395925036584,43.55403724908901,43.55408923281615,43.55410822707302,43.55371918661486,43.5535591737974,43.55351017095936,43.55345916824272,43.5534501677769,43.55323416264816,43.55339015878655,43.55337415758388,43.55335415628161,43.55329015247553,43.55326415060841,43.55313014642098,43.55285107600436,43.55282501182041,43.55282601134959,43.55283492260053,43.55283790565856,43.55284287174818,43.552880804116,43.55283475497685,43.55285770649355,43.55161970523068,43.5488087023631,43.51523966893602,43.51303166689762,43.50226265677656,43.49499065219123,43.47775564173832,43.46627463460692,43.4577876280588,43.42517960312753,43.42299560098916,43.42263157304897,43.42245755955457,43.42227254532274,43.42345749166136,43.42343448056612,43.42455338856449,43.42366436122042,43.42304234565713,43.42306134248264,43.42352528831309,43.4235932868925,43.42384225055886,43.42383523020857,43.42382111694133,43.42383910308168,43.4238600864816,43.42390000080252,43.42390199730752,43.42391198692504,43.42392397209001,43.42393296167658,43.42366592221151,43.42349481448682,43.42345163033478,43.42317758126954,43.42299534277683,43.42299234093982,43.42294930011913,43.42294879139678,43.4250312825478,43.42684516180996,43.44553720114533,43.45095218615232,43.45516817939818,43.45778417775339,43.46001817870148,43.4611437806125,43.4626071846737,43.46552519683749,43.47130620443708,43.48114220916136,43.48479820833639,43.49100819622706,43.4946711155833,43.49722818908626,43.50055019010122,43.50810421243582,43.5124742271057,43.51443423042339,43.51789222917039,43.51878821482627,43.52159522086814,43.52396722077612,43.53293024026615,43.54030924898588,43.54562026478719,43.54913027729788,43.55072228405244,43.55499530411344,43.56178133985948,43.56484235315778,43.57269432746121,43.57559539042361,43.57641467528995,43.58182240973997,43.58353341372644,43.58552941698978,43.58976042284239,43.59323852606988,43.60036344232938,43.60348445529912,43.60617546556945,43.60997747916083,43.61534849734252,43.62735253532006,43.63820357042037,43.64176058214868,43.64385989982931,43.64475378209966,43.64766260101548,43.64914160544114,43.65308061599687,43.65492962138973,43.66662365693445,43.676609688195]}]],[[{"lng":[-91.16621947965247,-91.16600131117308,-91.16599230585631,-91.165935233826,-91.16561109148886,-91.16559907793501,-91.16483486540369,-91.16476484518037,-91.16488269040825,-91.16505157394015,-91.1650355362291,-91.16546344566669,-91.16552443691839,-91.16599640259238,-91.16591235740982,-91.16569230287988,-91.1656151858742,-91.13096529575726,-91.12567031250084,-91.12378931867198,-91.04381157041452,-91.04361457098588,-91.00930367913631,-90.97298280168556,-90.94263990638095,-90.92234697635539,-90.9222399767273,-90.92228200679443,-90.92266607715518,-90.92288614244015,-90.92129614704143,-90.80162449177367,-90.80151849222558,-90.8016575827796,-90.8018796381013,-90.80191565162225,-90.76428673871673,-90.76097474638105,-90.72214776075811,-90.70726575488415,-90.70518975413879,-90.68048474432375,-90.55874369609721,-90.55874469597563,-90.4972186733562,-90.43634869947331,-90.39758571602465,-90.37587872556314,-90.31605275327432,-90.31703368125656,-90.31710866704451,-90.3170806478437,-90.31751259354355,-90.31802954669425,-90.31267753492109,-90.31251969668079,-90.31509269932089,-90.43572982181601,-90.46196785062378,-90.54644392439238,-90.5534189292361,-90.59192995610465,-90.65307399882278,-90.67239801236236,-90.77467107642207,-90.77545607671495,-90.79248508349693,-90.89278612375061,-90.90457712888336,-90.91611115101041,-90.92051016423368,-90.92167917059324,-90.92569017766434,-90.92930118045228,-90.93371818113251,-90.93809118036239,-90.94072118633596,-90.94144119201064,-90.94338819666474,-90.94542919467717,-90.94490118697256,-90.94649818546871,-90.94910119542904,-90.94977120391165,-90.95183121046928,-90.95390921307916,-90.95725121463867,-90.95831222175005,-90.95857323165414,-90.96243023905987,-90.96456923669754,-90.96709824426927,-90.96732024979383,-90.9692682628943,-90.96916826911752,-90.97033027517139,-90.97195127852981,-90.97531527505252,-90.97727727750969,-90.97806528272679,-90.97773829130331,-90.97395029405486,-90.97086329788839,-90.96722930695165,-90.96790731450447,-90.97226032593514,-90.97365932771659,-90.97310551423482,-91.02335655995255,-91.05730755488383,-91.11231254715393,-91.15184354138306,-91.15193050383645,-91.15197843534494,-91.15213135456939,-91.15249016309124,-91.1525071100922,-91.1526779450848,-91.15294188218951,-91.15356077709126,-91.16554577902671,-91.16593374339658,-91.16607462018811,-91.16620648414593,-91.16621947965247],"lat":[44.30375439422372,44.33519134703705,44.33618434554553,44.34962732545828,44.37626228546763,44.37879528169336,44.41875522182011,44.42256421614486,44.45145317352446,44.47314014150288,44.4801961310604,44.49687510637214,44.49847310399889,44.5098640886567,44.52803306461549,44.55011003536637,44.59698797326153,44.5966929610528,44.59666695916638,44.59656795863175,44.59664092945818,44.59666092934949,44.59663091693818,44.5965169055365,44.59637889654007,44.59629389050407,44.59629189047528,44.58070792105151,44.54379999357459,44.50984106027669,44.50982905966683,44.50968401225965,44.50955701245006,44.45850600659499,44.42950299035709,44.4224429863984,44.42234596372386,44.42233696172694,44.42229394198488,44.42227693496751,44.42222793396142,44.42223992233902,44.42221086502492,44.42228786504347,44.42261383283142,44.42254773247642,44.42327966838087,44.42334063251925,44.42450253309293,44.36516556684531,44.35334357335201,44.33742958192674,44.29182260712945,44.24870863007177,44.24875062449976,44.15519861442312,44.1551976158111,44.16112968544822,44.16089470022582,44.16028469427526,44.16021569012467,44.16006766749657,44.15961663092696,44.15951261937798,44.15905661462375,44.15907261600405,44.15886764447694,44.15845281468814,44.15829883455438,44.15266484490706,44.14919984696682,44.14741884615922,44.14597985104989,44.14580785728199,44.14640586615455,44.14738587548104,44.14613387833792,44.14465787745967,44.14370387959286,44.1446218846265,44.14666488662677,44.14734289046673,44.14505289188446,44.1428688900141,44.14147789182919,44.14116589520913,44.14136690161763,44.13970590132614,44.13717789840694,44.13603890410303,44.13706290944393,44.13565191235532,44.13431291105748,44.13145491111504,44.12988790893923,44.12864790961,44.12818691216251,44.12977792060603,44.12960892417041,44.12852992438934,44.12640392120048,44.12485691192549,44.12316690376415,44.11997989252315,44.11827389169763,44.11663789839524,44.11658590115459,44.07088284347866,44.07133697708325,44.07128607837859,44.07109124245053,44.0709963604373,44.07966636461295,44.09548637189698,44.11414238075108,44.15837440164551,44.17061940719385,44.20874542474865,44.22328243190569,44.24758444421372,44.24744647178262,44.25460146684856,44.27757143295766,44.30291839544652,44.30375439422372]}]],[[{"lng":[-88.40441925239378,-88.40420927004813,-88.40449631343846,-88.40442933003168,-88.40450842622684,-88.40444644077823,-88.40430847354479,-88.40439850449245,-88.40450853426869,-88.40450755167488,-88.40453756041752,-88.40452758593757,-88.40442561527439,-88.40440261614376,-88.40435961892955,-88.40434262200841,-88.40432262564902,-88.40431562674506,-88.40425563555191,-88.4042026456906,-88.40418464857864,-88.4040946651503,-88.4040516766659,-88.40400768812367,-88.40400668974755,-88.40393070339648,-88.40392670690838,-88.40400271443644,-88.40406772707554,-88.40407073865808,-88.39804376454823,-88.39289878666803,-88.38334482773026,-88.38029584082726,-88.36930388773716,-88.36601190182461,-88.36310891422946,-88.35847793436474,-88.35572894604783,-88.35403595321291,-88.34293100039427,-88.33430503718672,-88.32318608471245,-88.31412012341086,-88.31305712795208,-88.3039751667711,-88.30311217046244,-88.29290321396977,-88.28885723122738,-88.27874527433866,-88.2755292880564,-88.27522328931465,-88.27442329246452,-88.27238530147544,-88.25464037720354,-88.24360141904602,-88.19261259353753,-88.1629276946351,-88.15256872987955,-88.10390489840094,-88.09548492761748,-88.06021405003158,-88.05043208391596,-88.04324210892113,-88.04378078180123,-88.04376873510225,-88.04376673357061,-88.04371970317244,-88.0436516233554,-88.0431002432491,-88.0430642212205,-88.04302219182306,-88.04293714316967,-88.04271999009941,-88.04251887789719,-88.04234978616745,-88.0421386769432,-88.04213867689045,-88.04192053813163,-88.04189846832074,-88.04177043234552,-88.0417734110176,-88.04177340630898,-88.04170235836338,-88.04183935298879,-88.04182932893444,-88.04179425800648,-88.04195425775146,-88.08204419421442,-88.10227416184034,-88.12216812984583,-88.16227406511813,-88.16186520274772,-88.16165428417699,-88.23147317024936,-88.31494794629737,-88.40418668075742,-88.40330882142091,-88.40350989131385,-88.40410906407106,-88.40428913240611,-88.40440917765335,-88.40459822678216,-88.40441925239378],"lat":[44.10547267762497,44.11028766834949,44.12301664230758,44.12768663306538,44.1552875775766,44.15937756948993,44.1685875512787,44.17754253315619,44.18618751561652,44.19116450563862,44.19370050049719,44.20098748590408,44.20925546951786,44.20947646911819,44.2102214677057,44.21108146601351,44.21209846401222,44.21240346341393,44.21484945862334,44.21768445303979,44.21848845146199,44.22311744235243,44.22635743593867,44.22957942956314,44.23004242863685,44.23385142114596,44.23485041915092,44.23709541450499,44.24078840697687,44.24410340032519,44.24408541192948,44.24407542182472,44.24405344020627,44.24404444607627,44.24392746740499,44.24390347377052,44.2438774793933,44.24393148817504,44.24388949353357,44.24385549684953,44.24368451849615,44.24359253522887,44.24350255674018,44.24341657430272,44.24340757635978,44.24333659392276,44.24333059559016,44.2432186153926,44.24317862323174,44.24307464283023,44.24304364905898,44.24302864967446,44.24295365135132,44.24301565514375,44.24285768948385,44.24274271649689,44.24194886060207,44.24144194460034,44.24126897390842,44.24110911034621,44.24109513392723,44.24104523269129,44.2410202601045,44.24102028021785,44.18221339437285,44.17376341102641,44.17348541157885,44.16796442257074,44.15349945121411,44.08455658839708,44.08056259635712,44.07523560695675,44.06641462455361,44.03869367971337,44.01837072027739,44.00176275344293,43.97918379449656,43.9791727945161,43.95015884666922,43.93559187260053,43.92804588636157,43.9235988942496,43.92261689599332,43.91259391398964,43.91151891551538,43.90649892445765,43.89169495084296,43.89169495039961,43.89177083917462,43.89174378316697,43.89168372815364,43.8915136173512,43.92051656261873,43.93768553014456,43.9375323329652,43.93766716393768,43.93820200308679,43.97998892780996,44.00128788808319,44.05128778681557,44.07101874693917,44.08408772052196,44.09834569159403,44.10547267762497]}]],[[{"lng":[-89.00953069226141,-89.00935068490128,-89.00932767781002,-89.00934066690483,-89.0091616386927,-89.00915563723242,-89.00905162005216,-89.00888960119168,-89.00882859303834,-89.00468459264697,-89.00447558590423,-89.00467056353166,-89.00478056225187,-89.0051435268891,-89.00598442745911,-89.00604542012874,-89.00611541298129,-89.00622538299541,-89.00624533668621,-89.00608632834648,-89.00635232731746,-89.00669832389751,-89.00673732334631,-89.0069233231208,-89.00705532130175,-89.00707532078023,-89.00706832069565,-89.00708632045287,-89.00709232025471,-89.00710531985304,-89.00723831971669,-89.00684630894261,-88.99842731303565,-88.99577631464491,-88.97485332731695,-88.97042832999799,-88.96906133082761,-88.96392433394202,-88.95578533887839,-88.95181634128738,-88.9106633663139,-88.89605737521731,-88.88605038132251,-88.87074539055153,-88.76541345431141,-88.76538845432658,-88.76400845517108,-88.75830045864829,-88.75600146003367,-88.74483946771342,-88.73680147402494,-88.72979247954072,-88.72812648084572,-88.71724348938228,-88.71688148966632,-88.71622949017927,-88.71514549103327,-88.67463852263447,-88.6446465458362,-88.63511355316187,-88.60161857877154,-88.5966385825528,-88.59091258689297,-88.58529559114615,-88.55066961733044,-88.54170162412959,-88.521833639183,-88.51304364588442,-88.50075565530352,-88.4911446621029,-88.49069666241738,-88.401039723916,-88.40095169366919,-88.40087067420316,-88.40042447389695,-88.40060645488323,-88.40070645064201,-88.40070437451365,-88.40048136592108,-88.40049231972864,-88.40067825911747,-88.40117614199791,-88.40154207921596,-88.41843709346219,-88.4185620838322,-88.41876704876536,-88.41876704859658,-88.41876804831101,-88.4187020184892,-88.41870400586276,-88.41870700555599,-88.41921292116011,-88.41865386343014,-88.41827581138119,-88.41798477957371,-88.42930080267553,-88.45760685977665,-88.53584099849353,-88.53591999861423,-88.54855501787391,-88.55229302354945,-88.58029706604258,-88.6324061446812,-88.65221917455492,-88.65424517766911,-88.67326120623545,-88.6870232269786,-88.69144023364248,-88.69380423720992,-88.69417723777269,-88.69961524597063,-88.70707125723567,-88.71147226388321,-88.71644727140736,-88.72028827721289,-88.72236428034253,-88.72442828346803,-88.7307712930297,-88.73455929874645,-88.75876733842195,-88.75979234034715,-88.76701935392312,-88.77220436367023,-88.83209647627254,-88.87245555227187,-88.87380155470173,-88.87510455704577,-88.89053558610684,-88.89057458618014,-88.89152058792723,-88.90094460559031,-88.9060396152763,-88.96125671913303,-88.97043473631184,-88.99028677351923,-89.00883079783331,-89.00891879789241,-89.00887380051353,-89.00901681711188,-89.00908479937331,-89.00913777204809,-89.00920275601388,-89.00937572124163,-89.00953069226141],"lat":[43.3234693077039,43.32703029977632,43.33046329225196,43.3357432807163,43.34940125072642,43.35010824917672,43.35842623092402,43.36755821086135,43.37150620219642,43.37169519920771,43.37496419198256,43.3858101685538,43.3864301672707,43.40357013023873,43.45174802586182,43.45529901815763,43.45876101064863,43.47328897906804,43.4957289302364,43.49977592139766,43.50386591690889,43.52782789186502,43.53167788783761,43.53304788643589,43.54565487324706,43.54928386944717,43.5498878688129,43.55156286706056,43.55294286561526,43.55573786268816,43.55647286194102,43.63304678162388,43.6329517824114,43.63292078530536,43.63296180784783,43.63318781239138,43.63320581384858,43.63309481950841,43.63310782828125,43.6331328325403,43.63339187670675,43.63348289238572,43.63354190313188,43.63334791984775,43.63308403381371,43.6330840338407,43.63309303532204,43.6331110414672,43.63310104395828,43.63311205371094,43.63314605879465,43.63318506322006,43.63318806427765,43.63321707117853,43.63321807140806,43.63322107182044,43.63322707250521,43.63318109832297,43.63302711752253,43.63295412363888,43.63266014513396,43.63260714833281,43.63254415201099,43.63248215561801,43.632126177811,43.63205318354113,43.63189919622351,43.63185420181944,43.63181620962806,43.63177522721399,43.63177322807947,43.63093540142518,43.62034840568801,43.61353140847856,43.54353443636153,43.53691343858213,43.53544043896661,43.5088604492407,43.50585545080759,43.48588644456704,43.45678342677442,43.40040739222554,43.37007337359332,43.37017735124751,43.36522134844085,43.34726433861793,43.34717833857217,43.34703233849325,43.33187433050584,43.32544132707898,43.3252833269914,43.28192630340836,43.25292728852173,43.21715126320689,43.19469924706796,43.1950902347801,43.19568820386701,43.19605015724459,43.19605215724675,43.1963241575411,43.1963781575994,43.19679215805311,43.1970281583129,43.19709615838962,43.19723315854843,43.19707415836233,43.19711815841291,43.19715115845153,43.19717215847618,43.1971751584797,43.19720215851143,43.19731915865,43.19738915873332,43.19750615887293,43.19759115897475,43.19761115899896,43.19768115908293,43.19775015916687,43.19782115925294,43.19771916590154,43.1977171666901,43.19771117225987,43.19773217628811,43.19789922275903,43.19815625434472,43.19798825511358,43.197814255838,43.19791526792071,43.19791526795083,43.19786826860268,43.19780027576409,43.19796127997529,43.19805032280296,43.19796832973708,43.19785934485557,43.19772636282824,43.19772336292928,43.20073136890724,43.2630094394418,43.27160042073045,43.28483239185618,43.29259737493957,43.30943633826962,43.3234693077039]}]],[[{"lng":[-88.73856542559447,-88.73849544877591,-88.73842647201877,-88.73835249709099,-88.73828052139251,-88.73801161288202,-88.73784070070752,-88.73765179789436,-88.73683516546522,-88.73682416943613,-88.73683231172566,-88.73680838479005,-88.73673370929255,-88.73708576783689,-88.73708073825476,-88.73689368096908,-88.73683062086262,-88.73680440883287,-88.71813559173704,-88.61546759631472,-88.60608668837101,-88.57700197361032,-88.51325959053422,-88.5117216065278,-88.51106461056131,-88.50873163583779,-88.50424767676175,-88.48876090137367,-88.44743457615199,-88.38690554384283,-88.36666285212725,-88.32558948780733,-88.3098207286899,-88.3057417831884,-88.28463808740624,-88.25513750417873,-88.25006157914282,-88.24521249716096,-88.2427724599779,-88.23385033766095,-88.2193711308777,-88.21899912519461,-88.19869780895543,-88.19445874274021,-88.19047268326023,-88.19013360907665,-88.19012757878927,-88.19012857492559,-88.19026250267919,-88.18998113270345,-88.19045461673038,-88.19034137361056,-88.19046787966978,-88.19040884579881,-88.1904948027901,-88.19048558933201,-88.19048645398497,-88.19143496158897,-88.1914647733072,-88.19147463637175,-88.19149654555868,-88.19134944659064,-88.19132040721748,-88.19131440023114,-88.19128036676358,-88.19229236486296,-88.19249131459506,-88.19240426432494,-88.19260525073832,-88.19260524321287,-88.19261522815872,-88.19114716247692,-88.19087609654865,-88.19084207075497,-88.19092999849997,-88.19261259353753,-88.24360141904602,-88.25464037720354,-88.27238530147544,-88.27442329246452,-88.27522328931465,-88.2755292880564,-88.27874527433866,-88.28885723122738,-88.29290321396977,-88.30311217046244,-88.3039751667711,-88.31305712795208,-88.31412012341086,-88.32318608471245,-88.33430503718672,-88.34293100039427,-88.35403595321291,-88.35572894604783,-88.35847793436474,-88.36310891422946,-88.36601190182461,-88.36930388773716,-88.38029584082726,-88.38334482773026,-88.39289878666803,-88.39804376454823,-88.40407073865808,-88.40420273808265,-88.41097370886283,-88.41286070062955,-88.41405369543696,-88.41776967944281,-88.42410765266335,-88.42900763190376,-88.43270761562779,-88.4343186090135,-88.435907602527,-88.43653259957006,-88.43909958843984,-88.44051458234576,-88.44441156505296,-88.4501195404122,-88.4532135270552,-88.4534075262265,-88.45475352043032,-88.45595751525563,-88.46601747188866,-88.46630147064256,-88.48537438855976,-88.4968183392602,-88.52479124700534,-88.53867720268399,-88.53925120113253,-88.54073619608454,-88.55742414297774,-88.56498111911776,-88.61840895033662,-88.62420993201945,-88.62653292425193,-88.63288190369101,-88.63632989282266,-88.64210087530488,-88.64518886556307,-88.65076484798084,-88.65519783327967,-88.68418974179916,-88.73976956636406,-88.73856542559447],"lat":[44.31603884734773,44.31783784527858,44.31964184320313,44.32158784096506,44.32347383879779,44.33057383064789,44.33741282267494,44.34497981386659,44.37355878091131,44.37386678056131,44.38502276716181,44.3907427603435,44.41615573000453,44.5023386081374,44.50956254491636,44.52380642037506,44.53861629052824,44.5906048344486,44.59056576099641,44.59043235746929,44.59051431900382,44.59062920184208,44.58983896892719,44.58994696027155,44.58969296395826,44.58996294818589,44.58967493788158,44.58950888232009,44.58924373147361,44.58838653219105,44.58775548156621,44.58706636123086,44.58678831722758,44.58654231397855,44.58585927218855,44.58490121902374,44.58481620634718,44.58474427483645,44.58480230494537,44.58529440169735,44.58598756669603,44.58599857129597,44.58650982822757,44.58662288203725,44.58679792989324,44.58519200191438,44.58448403167171,44.58439303547248,44.58264810684557,44.57407246981001,44.53840496118892,44.50929918290316,44.48959854292636,44.48598953249873,44.48138251921283,44.45858345339466,44.44412641165919,44.39158825902381,44.37152320082212,44.3569301585005,44.34725513041552,44.3366811000066,44.33247808787861,44.33173208572781,44.32815707543177,44.32815907360273,44.32285405779368,44.31748904234009,44.31609003787285,44.31529003554209,44.31369203086646,44.30634201251498,44.2992379925374,44.29647598462552,44.2887899621997,44.24194886060207,44.24274271649689,44.24285768948385,44.24301565514375,44.24295365135132,44.24302864967446,44.24304364905898,44.24307464283023,44.24317862323174,44.2432186153926,44.24333059559016,44.24333659392276,44.24340757635978,44.24341657430272,44.24350255674018,44.24359253522887,44.24368451849615,44.24385549684953,44.24388949353357,44.24393148817504,44.2438774793933,44.24390347377052,44.24392746740499,44.24404444607627,44.24405344020627,44.24407542182472,44.24408541192948,44.24410340032519,44.24410140007584,44.24408338711571,44.24405238355619,44.24403638129859,44.24403837416224,44.24418736169611,44.24428735208804,44.24418734518855,44.24428234190336,44.24438733863981,44.24430933759856,44.24428733271574,44.24428732999956,44.24413632282692,44.24411831190756,44.24410830598933,44.24411030561286,44.24411030302933,44.24411330071221,44.24409928143165,44.24409228090094,44.24410724426108,44.2441012223078,44.24402918759818,44.24387917180658,44.2439661709592,44.2438471694854,44.24371015041713,44.24371114165061,44.24368407974252,44.24368407301466,44.24351607067182,44.24331206373508,44.24331705972578,44.24359505245128,44.24359804886363,44.24360704237791,44.24331703784338,44.24332200420908,44.24330393978718,44.31603884734773]}]],[[{"lng":[-92.15678944059199,-92.15672743818186,-92.15666043533999,-92.1566494344259,-92.15659143221596,-92.15648942650904,-92.15646842529931,-92.15649142344904,-92.15646241996831,-92.14221240885044,-92.1360284040652,-92.12188239301193,-92.10137137700332,-92.09421837141538,-92.07913735962168,-92.05387833983025,-92.05100533761794,-92.04245533081513,-92.03889132806883,-92.03370632400808,-92.03367132398067,-92.0032103001498,-91.9575263867699,-91.95718538751611,-91.93210343987639,-91.9174494704548,-91.91159548261955,-91.90740449135673,-91.90154950367878,-91.90020250658114,-91.88787953238304,-91.86060658951821,-91.85105960937331,-91.84497762213448,-91.82951765401316,-91.82804565646778,-91.820482672373,-91.81005069432302,-91.78884373887452,-91.78370574966056,-91.78355274998053,-91.76828878202659,-91.75014381993094,-91.74839782248968,-91.6656449022726,-91.66571976532687,-91.66573971801249,-91.66605753536405,-91.6660875144381,-91.66612549162888,-91.66616747023124,-91.66623040960971,-91.66632040047027,-91.66639935500963,-91.66107135154536,-91.66030735106291,-91.65146834316577,-91.65150729393436,-91.65157222372598,-91.65174409364033,-91.65147979763131,-91.65138774993343,-91.65138674961034,-91.65112961344951,-91.65099639551146,-91.65099238298549,-91.65101433967111,-91.65101833873638,-91.65106332599656,-91.65078728474595,-91.65045101035473,-91.65044800341508,-91.65005590492206,-91.64984685340325,-91.64966978661137,-91.64961472347126,-91.65025093828615,-91.65028595973736,-91.65035700260513,-91.67555210278947,-91.67896011658037,-91.69014716102313,-91.69062116292059,-91.77153749684911,-91.77169649756723,-91.83733079389656,-91.83910480209478,-91.89276904315378,-91.89945607341521,-91.90044107790926,-91.94870329639701,-91.97407241072798,-92.01674757543438,-92.01894958130994,-92.02841760917936,-92.07485974158794,-92.07861975237952,-92.10425382597947,-92.11488685626378,-92.13519991413726,-92.13515081345159,-92.13563645994584,-92.13632046121916,-92.13632346037816,-92.13629145956362,-92.13639445979629,-92.13637145918301,-92.1359794574723,-92.13617945702354,-92.13628945488824,-92.13632645420101,-92.13634545383967,-92.1362524529835,-92.1361384507813,-92.1352794452915,-92.13525644474497,-92.1353764441597,-92.13541244409848,-92.13544444400888,-92.13557244347894,-92.13566644307146,-92.13586644217619,-92.13609644109889,-92.13627244093284,-92.13642543602361,-92.1364264360012,-92.13644643537812,-92.13646443477026,-92.13648443415708,-92.13635742949216,-92.13632042825377,-92.13647042830304,-92.1361104196728,-92.15706944473827,-92.15678944059199],"lat":[45.13547103590855,45.14399105230044,45.15408407172141,45.15737507806941,45.16522309315469,45.18571913261393,45.19007514099849,45.1969131542581,45.20955617864654,45.20957415236207,45.20936214055369,45.20942811455792,45.20932207651693,45.2092740632383,45.20915503522725,45.20895498835372,45.20911598327768,45.20868196693147,45.2088509605867,45.20885295103271,45.2088529509682,45.20891589489509,45.2087699003163,45.20879490043242,45.20859090704868,45.20850791096009,45.20845491250932,45.20843391363293,45.20846091524626,45.20849791564038,45.20848791898317,45.20848192639431,45.20843192896113,45.20843893061976,45.20828893475002,45.20810493505952,45.20813493713998,45.20817594000691,45.20823094581556,45.2082409472205,45.20824094726223,45.2082689514334,45.20825795637796,45.20839795708233,45.20799298969654,45.18620598299,45.178675980675,45.14959597165578,45.14626097062472,45.14262496949908,45.13921296844094,45.12954596546236,45.12808196498575,45.12082496274133,45.12080196439409,45.12080096463178,45.12043596726848,45.11290996484723,45.10217296139116,45.08225795497028,45.03708694058208,45.02983193828015,45.02978293826469,45.00909093169118,44.9579548367688,44.95462482947877,44.94308080421843,44.94282880366844,44.93940179618704,44.9286527725186,44.85595261280213,44.85410960875386,44.82827655145137,44.8147755214141,44.79719048238309,44.78046344542992,44.69448126050523,44.69086325280865,44.68363423743139,44.68369429407516,44.68366230164921,44.68369532681539,44.6836943278764,44.68374141209075,44.68374141172848,44.68375726223073,44.68373125811927,44.68390313634643,44.68389412108876,44.6838881188276,44.68381800867753,44.68384495097119,44.68392389011814,44.68397989003335,44.68391588865784,44.68412288364061,44.68413188320874,44.68419288026359,44.6842538791611,44.6843748770705,44.69886492543487,44.75655711340814,44.77152815304253,44.7813921791967,44.78953320078178,44.79098420463171,44.79713322093608,44.80155223262921,44.81476926768003,44.84376334456577,44.85302236912358,44.85784938192715,44.86465439994545,44.88674445847172,44.92750856611337,44.93384258287394,44.94480861197616,44.94659761673382,44.94862062210942,44.95871964893269,44.96619666879698,44.98198871076842,44.99996475857204,45.00268076368955,45.03174581688801,45.03188081713548,45.03555782386959,45.03912783040715,45.04274183702771,45.06784688274872,45.07451389488121,45.07543289672907,45.12138998018023,45.12161000947588,45.13547103590855]}]],[[{"lng":[-91.66632040047027,-91.66623040960971,-91.66616747023124,-91.66612549162888,-91.6660875144381,-91.66605753536405,-91.66573971801249,-91.66571976532687,-91.6656449022726,-91.63368793236218,-91.61980194539083,-91.59315496798605,-91.57446698476245,-91.56588699305176,-91.56369099519785,-91.56317599569734,-91.55956099780208,-91.54223201168587,-91.54219004199994,-91.54218604490727,-91.54228519094549,-91.54146639234041,-91.54159043662413,-91.54123854231537,-91.54113663450227,-91.54132065235909,-91.54096065212607,-91.48021582965127,-91.44386500002913,-91.41864211927621,-91.35920939476895,-91.32600055014704,-91.2960076904247,-91.23439890571672,-91.21362290690949,-91.17317990633305,-91.14798690690004,-91.14654690693021,-91.11071890730661,-91.04908990741382,-91.04888690741083,-91.03839790724996,-91.03800990669819,-90.98351788332381,-90.92522179844913,-90.92531071868309,-90.92541265750053,-90.92559557554237,-90.92565855120903,-90.92586736691473,-90.92573218971231,-90.9259398314274,-90.92579548630745,-90.92597946940873,-90.92280846730155,-90.92281245890406,-90.92294939479187,-90.9233597317489,-90.92283547196047,-90.92339045747822,-90.92266538747488,-90.92250736475003,-90.92241034207883,-90.92241234096453,-90.92239233023456,-90.92243032017953,-90.92243831943856,-90.92266629537944,-90.92277324673555,-90.92252324574412,-90.92250615701752,-90.92224401971396,-90.92224401941237,-91.00452679371398,-91.02386274392354,-91.03412271750656,-91.04062270075839,-91.08489658699753,-91.10511853469397,-91.14082544230243,-91.14575642983623,-91.22648122277027,-91.2268252218939,-91.246718171399,-91.26703911804105,-91.34695790958878,-91.38759180291505,-91.40695675228272,-91.41709572586512,-91.41721672555217,-91.42691470026818,-91.43738567301,-91.43745567282613,-91.44250765935431,-91.46447660120171,-91.46471260058198,-91.47811456555739,-91.49471052223718,-91.51446555709374,-91.51474655809224,-91.52384358874821,-91.52846060431143,-91.52871460517207,-91.53864763794321,-91.54704766588677,-91.55393168880873,-91.56920173990886,-91.62104491277923,-91.62715093306169,-91.63035894374482,-91.63869297150897,-91.65045101035473,-91.65078728474595,-91.65106332599656,-91.65101833873638,-91.65101433967111,-91.65099238298549,-91.65099639551146,-91.65112961344951,-91.65138674961034,-91.65138774993343,-91.65147979763131,-91.65174409364033,-91.65157222372598,-91.65150729393436,-91.65146834316577,-91.66030735106291,-91.66107135154536,-91.66639935500963,-91.66632040047027],"lat":[45.12808196498575,45.12954596546236,45.13921296844094,45.14262496949908,45.14626097062472,45.14959597165578,45.178675980675,45.18620598299,45.20799298969654,45.20778000225496,45.20769200770939,45.20722401805727,45.20704702535971,45.20704302874135,45.20704502960808,45.20704502981116,45.20687503116719,45.20654003785509,45.21007503937419,45.21041403951987,45.22748204673373,45.25113005288193,45.2581730292446,45.27478797367801,45.28933492492375,45.2922219152366,45.29206191578753,45.29156289485245,45.29168784945041,45.2919578173856,45.29165974484979,45.29175270353068,45.29183666624537,45.29198459200263,45.29222256878904,45.29200852499,45.29208849729465,45.29209249571317,45.29210745651491,45.29201638925026,45.29201538902951,45.29196237762245,45.2918443773435,45.29194834876336,45.29206239506344,45.27783841419818,45.26691442885679,45.25225844846559,45.24859344685905,45.22653137477544,45.20538830594914,45.16255716632356,45.12134703201861,45.11931402547386,45.11930802405749,45.11830102074511,45.11060599549315,45.03114373466134,44.99996663144228,44.99552063162827,44.97337962667606,44.96618362522717,44.95901562388641,44.958665623831,44.95528062323805,44.95213062276729,44.95190062274026,44.94442862180578,44.92919161937792,44.92875161898607,44.90082861429385,44.85740460681572,44.85730960679999,44.85733367793772,44.85727770971749,44.85724972657678,44.85722973725389,44.85716681002391,44.85707184316728,44.85690790164186,44.85694190979628,44.85693004245272,44.85693104302005,44.85701907589737,44.85698010458966,44.85722121490387,44.85722527073404,44.85726929747329,44.85731231154141,44.85731331171088,44.85735232516562,44.85740433973124,44.85740433982748,44.85736134662907,44.8572623764811,44.85726237680536,44.85730039535549,44.85736141838741,44.85734944390565,44.857361444304,44.85735745579269,44.85735646162737,44.857357461952,44.8571844739345,44.85709148426854,44.85701949276286,44.85691951182177,44.85639857630877,44.85631358388284,44.85627558788239,44.85617859828837,44.85595261280213,44.9286527725186,44.93940179618704,44.94282880366844,44.94308080421843,44.95462482947877,44.9579548367688,45.00909093169118,45.02978293826469,45.02983193828015,45.03708694058208,45.08225795497028,45.10217296139116,45.11290996484723,45.12043596726848,45.12080096463178,45.12080196439409,45.12082496274133,45.12808196498575]}]],[[{"lng":[-89.59965719484838,-89.59927516741776,-89.59925916585991,-89.5990941552258,-89.59904015191782,-89.59903915184007,-89.59890911388248,-89.59849808416067,-89.59834807314392,-89.59798204116298,-89.59780803083494,-89.59793799926543,-89.5973379795568,-89.59743297817546,-89.59732795789986,-89.59734793152342,-89.59791781698317,-89.59807781640981,-89.59794780524069,-89.50940780991607,-89.49768981258396,-89.48250382995494,-89.48234083014302,-89.46214085327597,-89.42972789023641,-89.4100179126546,-89.40735291559172,-89.40399691952999,-89.36542296366268,-89.36534996374121,-89.33034800374593,-89.32812300639385,-89.25102009465843,-89.25011709569328,-89.24708109940171,-89.24332310400629,-89.21879213407227,-89.20879814632666,-89.20141015538761,-89.20112015573891,-89.16861019559505,-89.16830619592332,-89.16822819207252,-89.16799718828831,-89.16763918771858,-89.16848718476751,-89.16823818404069,-89.1681191816722,-89.19832215061822,-89.19824314986171,-89.19812114725728,-89.19801314619197,-89.1959461480965,-89.19622914773662,-89.19437314926819,-89.19712714665987,-89.19829714550565,-89.19795114573273,-89.19500114802216,-89.19257315003567,-89.18929815290461,-89.1849901567323,-89.1824831590346,-89.17678616457808,-89.17347716768047,-89.17024317060461,-89.16801617270455,-89.16757516696869,-89.17268916288798,-89.17501416097323,-89.17885115762654,-89.1815761553495,-89.1853451522754,-89.1909411478107,-89.19457414482949,-89.19972214054688,-89.20847313334353,-89.21539612769028,-89.2196591241859,-89.22218712209363,-89.22745111780372,-89.22977111588594,-89.23583811086866,-89.23901810823511,-89.24043110706624,-89.24333510468816,-89.24052610697899,-89.24505610330253,-89.24537310304527,-89.24529610617223,-89.24558811898891,-89.24557413124448,-89.24536315094093,-89.24542618519899,-89.24543519159063,-89.25045818954334,-89.25117918979019,-89.30695220910209,-89.32777721632627,-89.32918921699351,-89.34085922109765,-89.36474722912207,-89.38488523596165,-89.40727424365944,-89.40921124430407,-89.46941426498552,-89.48355926984087,-89.49925827523836,-89.50342327341019,-89.52237126217791,-89.56055223950999,-89.56096223907554,-89.57836022882334,-89.5849842249887,-89.59954521631323,-89.59965719484838],"lat":[43.67168458556215,43.70933948827876,43.71147548276515,43.72612944491692,43.73069543312491,43.73080243284872,43.76672834780756,43.78769330313956,43.79545128661513,43.81790423882696,43.82517122334372,43.84708117689368,43.8610111471401,43.86193714520587,43.87606111520713,43.89438107634559,43.97393090769683,43.97432090690404,43.98210089036547,43.98200087191661,43.98225087126509,43.98224788337874,43.98224688351077,43.9822248996627,43.9823009253391,43.98241094080276,43.98250994270244,43.9824259455667,43.98245797622832,43.98246397627229,43.98259100384846,43.98242100603851,43.98244706740942,43.98238806828539,43.9825130693354,43.98253307094035,43.98271008130582,43.98279508550166,43.9828570886081,43.98280108887834,43.98283510315705,43.9825091040934,43.95356717532431,43.92392324831778,43.9168702657668,43.90203730202142,43.89474132003227,43.8764713649992,43.87651335910029,43.86611838542042,43.83237047083185,43.81796050729866,43.81800450729963,43.81682351026724,43.81487251528224,43.81376451795384,43.81267852065025,43.81159752339948,43.80711253483059,43.80524353960499,43.80457154137104,43.80431754210388,43.80486754078797,43.80854653179726,43.80947352961162,43.80948252970026,43.81011952820995,43.76552363786217,43.76649063582641,43.76649863596189,43.76491164016169,43.76455564124072,43.76472664108206,43.76608463806586,43.76619363803707,43.76563263980608,43.7655226406892,43.76631563912863,43.76648163898666,43.76622363982295,43.76792663575138,43.76792663589849,43.76773263679129,43.76649464024588,43.76442164579167,43.76330364894741,43.75985065781998,43.75981465828831,43.75981465831446,43.74637968832878,43.73063270619939,43.71585072294391,43.69223374967232,43.65080979660614,43.64308480535846,43.64307080563805,43.64307180502343,43.64286775785544,43.6427587403216,43.64249973951613,43.64234472986342,43.64258070922254,43.64268169195475,43.64264467301734,43.64267867130826,43.64259362038553,43.64257660842145,43.64253459520008,43.6426475965789,43.64259760927095,43.64258363464293,43.64289563413784,43.64274964604096,43.64260065081364,43.64263766038093,43.67168458556215]}]],[[{"lng":[-92.31622674847094,-92.25017601910606,-92.2427990120409,-92.21613698889092,-92.19580197114759,-92.15533293712056,-92.13540291892711,-92.13526983953176,-92.13515577105935,-92.13511875452113,-92.13502671919346,-92.1350026684038,-92.13481054840351,-92.13482951768924,-92.13486541717599,-92.13497426833737,-92.13499525728449,-92.13502221809465,-92.13504914975992,-92.13505712637705,-92.13507507636388,-92.13512997777492,-92.13519991413726,-92.11488685626378,-92.10425382597947,-92.07861975237952,-92.07485974158794,-92.02841760917936,-92.01894958130994,-92.01674757543438,-91.97407241072798,-91.94870329639701,-91.90044107790926,-91.89945607341521,-91.89276904315378,-91.83910480209478,-91.83733079389656,-91.77169649756723,-91.77153749684911,-91.69062116292059,-91.69014716102313,-91.67896011658037,-91.67555210278947,-91.65035700260513,-91.65024451454529,-91.66775858966258,-91.70567875158737,-91.74151490658436,-91.77195506190763,-91.84282944569902,-91.87316861048313,-91.89297571678674,-91.89305771723085,-91.9644451042337,-92.00091829778439,-92.00314430029808,-92.01020334938559,-92.01230935880565,-92.01997137439653,-92.02278638688398,-92.02917843258801,-92.03134949314666,-92.03257251581228,-92.0340705595448,-92.03646159531047,-92.03958363105448,-92.03998265557578,-92.03894167180114,-92.03829369541384,-92.03883677286028,-92.04079581676284,-92.04629488259705,-92.04791791657952,-92.04775194430846,-92.04372899505174,-92.04338904494367,-92.0439130617667,-92.04526308004824,-92.04538008124135,-92.046010087695,-92.04965114233997,-92.0507361656398,-92.0521441766367,-92.0561121891258,-92.05616919469794,-92.05776420332563,-92.05918620932776,-92.05941021714486,-92.06016822045203,-92.05931623531465,-92.0622042465745,-92.06407725231087,-92.06548625961958,-92.07238929277405,-92.0749573034235,-92.07969831488138,-92.08127032287688,-92.08235533490638,-92.08022834396459,-92.07988034825956,-92.08075335247609,-92.08309435690775,-92.08384336224499,-92.08403536851809,-92.08363920443618,-92.0872403716088,-92.0974143740184,-92.11108437914582,-92.11529537760292,-92.12110537162248,-92.12451237055434,-92.13809038275623,-92.13956837540276,-92.16245338541736,-92.16364737366555,-92.1663333807661,-92.17027938736831,-92.18929436422742,-92.19537739089367,-92.21516239100986,-92.21677539020939,-92.22108238952481,-92.23247138224669,-92.23732437365227,-92.23947648333771,-92.24200936226607,-92.2448833562806,-92.24907035064606,-92.26247533413289,-92.2767833083348,-92.28236329598657,-92.29100427235737,-92.29712125020795,-92.30221422682435,-92.30296021341344,-92.30246516107347,-92.30304515253653,-92.30352614798244,-92.30795613159638,-92.31082611663385,-92.31365572326899,-92.31407008375228,-92.31622674847094],"lat":[44.54096657588284,44.53971537740014,44.53981837865791,44.53975338239874,44.53972338531781,44.53947839050867,44.53957939380609,44.55100743196544,44.56085846485849,44.56323547279674,44.56830948974367,44.57562251415304,44.59286657172873,44.59729458650366,44.61178063484296,44.6332527064873,44.63485171182092,44.64050673069001,44.650361763576,44.6537337748285,44.66094679889848,44.67517484637541,44.6843748770705,44.6842538791611,44.68419288026359,44.68413188320874,44.68412288364061,44.68391588865784,44.68397989003335,44.68392389011814,44.68384495097119,44.68381800867753,44.6838881188276,44.68389412108876,44.68390313634643,44.68373125811927,44.68375726223073,44.68374141172848,44.68374141209075,44.6836943278764,44.68369532681539,44.68366230164921,44.68369429407516,44.68363423743139,44.59665005023919,44.59665708677565,44.59678916614602,44.59659124042403,44.59659420056142,44.59661001483112,44.59654993514023,44.59667888359223,44.59667888337732,44.5966336961403,44.59669660303658,44.59683460318589,44.59253958797078,44.59184358537023,44.59145858302647,44.59051957951932,44.58629256460048,44.57946354163126,44.57696353316049,44.5719735163842,44.56805250302585,44.56421048982112,44.56130148010444,44.55919247325262,44.55625246358537,44.54696943268456,44.54188141550105,44.53444038997083,44.53043237641432,44.5270163650919,44.52049034402483,44.51439132382141,44.51237531704582,44.51022530969782,44.51008630921816,44.50933330662019,44.502815284406,44.49996727487943,44.49456027365981,44.48893527182171,44.48611627124213,44.48207527006235,44.47935226915411,44.47546426826504,44.47397526774633,44.46628926632161,44.46138426436303,44.45902126322208,44.45577426198757,44.44149025583228,44.4371172535981,44.4331142504445,44.42980724876165,44.42444424662353,44.41938624609511,44.41720824561354,44.41551024466779,44.4142552431007,44.41200024201028,44.40910124099547,44.40718901796826,44.40884823921857,44.41146423480146,44.41394822877033,44.41605622756491,44.42057222677352,44.42211522587699,44.42442211120763,44.4246732201152,44.42720821109981,44.42742027857538,44.42789734755577,44.42859820847632,44.43253332821137,44.43379220123366,44.43850319680444,44.43901625034363,44.44038619604344,44.44543419615485,44.44941719807625,44.45163913745143,44.45425420103766,44.45684220257632,44.45952420384657,44.46514922043196,44.47364924284238,44.47770725271994,44.48546427014496,44.49273228497822,44.5002983000547,44.50360131118411,44.51648735103986,44.51864635837116,44.51982236252058,44.52447538129865,44.5287563972925,44.53683187630464,44.53801442886916,44.54096657588284]}]],[[{"lng":[-90.92579548630745,-90.9259398314274,-90.92573218971231,-90.92586736691473,-90.92565855120903,-90.92559557554237,-90.92541265750053,-90.92531071868309,-90.92522179844913,-90.92519391677462,-90.92534328889971,-90.92517028881245,-90.90467027742204,-90.86361025284927,-90.82280023119537,-90.80236921849604,-90.79170421289827,-90.7607001964319,-90.6787734436987,-90.64809755226926,-90.5555558808088,-90.53390095748269,-90.53415095694764,-90.50366306545881,-90.500212078188,-90.37514691407337,-90.37218890896803,-90.29801081474787,-90.29068280530879,-90.27499478375118,-90.26966977642465,-90.24948974922253,-90.18783563723528,-90.1670005982768,-90.14374755670208,-90.13795354919556,-90.1124425038869,-90.04227337023889,-90.042222330939,-90.04247929219794,-90.04353626628,-90.04337326130377,-90.04481322042398,-90.04534220547299,-90.04518919885489,-90.04614314214486,-90.04606363965974,-90.04601953889231,-90.04542240900906,-90.04518534796932,-90.0452843336618,-90.04496329103205,-90.04394198322633,-90.04368394425046,-90.05409496147738,-90.07933200315421,-90.11480806148766,-90.12037807072575,-90.15077712067931,-90.16728714831049,-90.19008518626009,-90.19030518658323,-90.19776419891257,-90.19757001342636,-90.1975146498098,-90.31503670004348,-90.40640167387876,-90.42761766865603,-90.43382766683914,-90.55705145739906,-90.64305815152132,-90.67870402444379,-90.69939895080607,-90.73986980675029,-90.74495778879019,-90.80007976151626,-90.84379475218773,-90.84608975158294,-90.9233597317489,-90.92294939479187,-90.92281245890406,-90.92280846730155,-90.92597946940873,-90.92579548630745],"lat":[45.12134703201861,45.16255716632356,45.20538830594914,45.22653137477544,45.24859344685905,45.25225844846559,45.26691442885679,45.27783841419818,45.29206239506344,45.31313036662952,45.37935127711808,45.37935127719673,45.37917128677432,45.37857030642721,45.37846332529304,45.37814833522966,45.37813734014917,45.37808135450373,45.37790825056283,45.37776520365733,45.37738706157131,45.37722102818267,45.37730102859667,45.37717198155445,45.37726697630487,45.3791468829065,45.37890988028986,45.38075082790911,45.38089582275496,45.38090481109032,45.38090580712671,45.38108479355901,45.38151087278482,45.38142089899078,45.38169492914961,45.3823119380021,45.38263797115682,45.38186705827336,45.3749660414095,45.3680600241433,45.36313501072482,45.36231400891725,45.35460598819057,45.35178098059355,45.35066697805469,45.34030995144994,45.25157673393856,45.23255769943297,45.20811565688201,45.19659763668732,45.19383363173682,45.18584761778379,45.12756551438113,45.1202145012145,45.12024950360146,45.1203155093273,45.12035751726261,45.12037751851775,45.12040452527626,45.12050052897048,45.12059453400772,45.12058853405522,45.12060453569259,45.09125853439255,45.0336405318573,45.03382960613951,45.03149862066845,45.03112362373957,45.03098162459621,45.03112160277063,45.0312595548775,45.03128253500297,45.03131652356593,45.03138050125266,45.03141149856957,45.03160156590435,45.03158462620864,45.03156862931285,45.03114373466134,45.11060599549315,45.11830102074511,45.11930802405749,45.11931402547386,45.12134703201861]}]],[[{"lng":[-89.22428525566092,-89.22429426504077,-89.22385741040711,-89.22400746486559,-89.22400646523154,-89.2239015445286,-89.2237377021175,-89.22367771547928,-89.22367272879012,-89.22332675548779,-89.22343077476395,-89.22344878132924,-89.2235348235711,-89.22342093956081,-89.22347699050341,-89.22373401164457,-89.22381301826154,-89.12224488726007,-89.11067687234268,-89.10897287026225,-89.10190486100518,-89.02230275810069,-89.01211574450426,-89.00010772914808,-88.98167856729859,-88.98136054582248,-88.98206754477681,-88.98203056263218,-88.98131756941949,-88.94048540835647,-88.90664227308621,-88.90360626221877,-88.8845521879759,-88.87952816818019,-88.86720312124039,-88.86412410789308,-88.85915908813922,-88.82828496369083,-88.79663983755069,-88.77636975603596,-88.77119873525122,-88.76974272932743,-88.76970072917906,-88.76260270299298,-88.73554579015763,-88.73573885400081,-88.73544391361928,-88.73545018480552,-88.73558923454233,-88.73562538753755,-88.73619357506288,-88.71379288314783,-88.64243887205529,-88.64184188037814,-88.62983004778036,-88.62719408454541,-88.54226528657404,-88.54014931210003,-88.48915229107467,-88.45136373590064,-88.41053630348732,-88.38635822859951,-88.37017984328746,-88.36990185425313,-88.33656313807197,-88.29905258936337,-88.24822543678795,-88.25025452672659,-88.25095716400774,-88.25237844834999,-88.25237544975037,-88.24955631055407,-88.24531734890574,-88.24436091353138,-88.24267770938155,-88.24270842391974,-88.24270036907585,-88.24423142065376,-88.24593047762686,-88.24763853775009,-88.25257553789224,-88.25241526206845,-88.25211017580467,-88.25238670005179,-88.25240451180224,-88.24602149414224,-88.24284539689933,-88.24303817976451,-88.24418072879365,-88.24505002944271,-88.24521249716096,-88.25006157914282,-88.25513750417873,-88.28463808740624,-88.3057417831884,-88.3098207286899,-88.32558948780733,-88.36666285212725,-88.38690554384283,-88.44743457615199,-88.48876090137367,-88.50424767676175,-88.50873163583779,-88.51106461056131,-88.5117216065278,-88.51325959053422,-88.57700197361032,-88.60608668837101,-88.60637374924586,-88.60621175957411,-88.60542992070269,-88.60533893907159,-88.60511499919409,-88.60516302653259,-88.61554487023166,-88.64607541236521,-88.67854592490526,-88.68289985944001,-88.69694164826355,-88.70206757113765,-88.73634005474516,-88.73717004193171,-88.7415549759726,-88.79791319006564,-88.81835290843874,-88.82386683284523,-88.85877135288531,-88.87412414197711,-88.88290802152206,-88.88548098621445,-88.90514071623127,-88.91703655304323,-88.94587615709108,-88.95160807838847,-88.95877797995306,-88.9718348007455,-88.97704672920887,-88.9818256635956,-89.03070635815621,-89.06287429925041,-89.06309229884009,-89.10243222714081,-89.10261722664615,-89.10262122679629,-89.1426491533624,-89.14370315144508,-89.14388115124241,-89.18452207720615,-89.22374300548118,-89.22422314660426,-89.22436525175482,-89.22428525566092],"lat":[44.79901328879914,44.80158028650904,44.84123625092726,44.8561652376512,44.85626523756184,44.87795721821085,44.92110917980243,44.92477517656015,44.92842217331759,44.93578616691432,44.94105616219142,44.94285316058747,44.95441615027202,44.98624312208371,45.00072410886556,45.02244207999933,45.02924607096779,45.02947714851437,45.02950115733682,45.0296041584516,45.02949716406705,45.02944922518245,45.02912923373086,45.02924924267065,45.02891715375842,45.01450718433363,44.98302220613526,44.95667618396492,44.94274516856539,44.94297095245079,44.94324677346891,44.94308475721207,44.94296865614868,44.94296862953448,44.94280956405159,44.94292954788559,44.94294852160677,44.9431603583358,44.94321919080398,44.94328808354597,44.9433030561813,44.94331104848208,44.94331004825812,44.94320501050215,44.94317681766944,44.93999781278199,44.93725080447378,44.92412877728018,44.92165177344852,44.91422875841803,44.85637464520688,44.85648538545671,44.85647455728459,44.85647255034544,44.85643541072679,44.85642638007891,44.85560438726407,44.85573136373392,44.85544066953467,44.85513088500225,44.85466303603519,44.85449453434813,44.85449619979282,44.85448619394394,44.85408350045915,44.85351871905351,44.8527297568409,44.80944526597014,44.79532713833161,44.76679488044324,44.76676788010916,44.75024868354519,44.71587259155076,44.7082330131318,44.68621118259696,44.68067846123176,44.67962451472066,44.67964546912471,44.6796634187839,44.67973536539909,44.67980632682379,44.67446959939049,44.67265268907047,44.6637781493976,44.66021233315894,44.66082337832918,44.66076746375234,44.65646867618691,44.62795209509384,44.59499375519514,44.58474427483645,44.58481620634718,44.58490121902374,44.58585927218855,44.58654231397855,44.58678831722758,44.58706636123086,44.58775548156621,44.58838653219105,44.58924373147361,44.58950888232009,44.58967493788158,44.58996294818589,44.58969296395826,44.58994696027155,44.58983896892719,44.59062920184208,44.59051431900382,44.6078390094506,44.6101659668575,44.65104522688476,44.6556341435111,44.6708478674264,44.67832873309487,44.67817484078794,44.67823614840401,44.67871747050064,44.67873751441582,44.67878765629696,44.67881370802806,44.67906505370943,44.67914306146681,44.67912810620509,44.67922432933906,44.67947138698371,44.6794294031154,44.67967850314274,44.67975054747073,44.67968157310891,44.6796725805864,44.6797426374937,44.67962767208757,44.67960775561882,44.67963777224335,44.67967579305991,44.67978683109984,44.67978984623934,44.6797598600522,44.68007097326264,44.68015703582465,44.68014703622682,44.68057611311696,44.68042811325539,44.68057811348512,44.68055719081105,44.68057219286152,44.6806901933117,44.68116727193437,44.68136534735157,44.76917431542881,44.7979722897779,44.79901328879914]}]],[[{"lng":[-88.06958228333703,-88.0695823003329,-88.0695563770621,-88.06958242261493,-88.06958344884666,-88.0695834544847,-88.06949247284754,-88.06937851672951,-88.06928654028479,-88.06924356081758,-88.06909558238519,-88.06888360405947,-88.06865862237207,-88.06861662573172,-88.06832464733955,-88.0680306689591,-88.06779168219144,-88.06773569121849,-88.06749270427844,-88.06745871369253,-88.06724873369494,-88.06714375085328,-88.06698977941484,-88.0669347970026,-88.06689382565742,-88.06689282571654,-88.06687683706585,-88.06685784859305,-88.06683386960782,-88.06682187163561,-88.06672189475884,-88.06659891759816,-88.0662659628757,-88.06626396337015,-88.06614099292354,-88.06602201168442,-88.06597901716032,-88.06566505165929,-88.06557305858841,-88.06558606364439,-88.06560107584778,-88.06561807878171,-88.06440014956947,-88.0644931518509,-88.06431318912621,-88.06427319572279,-88.06409223127596,-88.06366924102736,-88.0634002829153,-88.06335028956009,-88.02372125931953,-88.00381124385346,-87.9941682301536,-87.98395521160066,-87.96466517621784,-87.95925216629399,-87.94429713859572,-87.92465910244853,-87.92410310142193,-87.89877105560906,-87.89500404832772,-87.89208683221965,-87.88801749672645,-87.88758301069636,-87.88108192720722,-87.88149294187858,-87.88509389704198,-87.88523441626478,-87.88913927373528,-87.88915564118432,-87.89228185409073,-87.90028182268411,-87.90138180763842,-87.90138042018285,-87.90048177420846,-87.89920825593077,-87.89848174861014,-87.89446620028339,-87.89318170492531,-87.87916525544358,-87.87610300977825,-87.87608059471417,-87.87086652660167,-87.87075932751026,-87.87063535813218,-87.86991051144277,-87.8701014855093,-87.87010633577577,-87.87021349527807,-87.8687086128844,-87.86663743803322,-87.86648045668353,-87.86405844942449,-87.86380243161199,-87.8747634165818,-87.87546441045394,-87.88233540683215,-87.88641141470465,-87.89062541140507,-87.89499639924634,-87.89669538412535,-87.89695837959445,-87.8982883551933,-87.8986566729311,-87.89865933833305,-87.89852969093138,-87.89852621436778,-87.89839839479504,-87.89747631004347,-87.89160923362353,-87.8880112000551,-87.88700351063514,-87.88366173105037,-87.88275310855447,-87.88123006517095,-87.87970708249686,-87.87867909296128,-87.871294051316,-87.87063220926078,-87.86885742529959,-87.8645609641936,-87.85717787689642,-87.85430977486705,-87.84996877472254,-87.84863060055781,-87.84766518937143,-87.84501365824623,-87.84555059774321,-87.84347054994997,-87.84341890463881,-87.84334809653171,-87.84330248045592,-87.845939378035,-87.84558060574024,-87.84443560068716,-87.84398026499582,-87.83965916438059,-87.84274010869321,-87.84290003131933,-87.84511710513594,-87.84667707920545,-87.84782904192872,-87.84779359458049,-87.84719583823195,-87.84675018025207,-87.84666797557546,-87.84346494969593,-87.84369390172832,-87.84648491253324,-87.84315479089899,-87.84347878135848,-87.84251995989754,-87.84061248079729,-87.8389246619214,-87.83781151873725,-87.83554254412743,-87.82844036963454,-87.82712913036183,-87.8436044740877,-87.85277456302317,-87.88557887786297,-87.89380595677677,-87.91406814864204,-87.92657626929572,-87.95189951232339,-87.98124879015946,-88.03053707425288,-88.04096811071328,-88.06992021207473,-88.06958228333703],"lat":[42.86726571779039,42.87288172484532,42.89825975682749,42.91328777560418,42.92195478648826,42.92381778882861,42.92995779685821,42.94453581552644,42.95237682564552,42.95918183429826,42.96639284376273,42.97366885346243,42.9798328617727,42.98096286329408,42.98823287310874,42.99548988285368,42.999951888962,43.00281988723827,43.00704088495345,43.01001688299901,43.01640187913802,43.02184287566068,43.03088786982133,43.03643886613892,43.04546086003606,43.04547986002532,43.04905285760707,43.0526828551561,43.05929585066546,43.05993785025149,43.06724284545453,43.07446584075958,43.08881183160705,43.08896783150382,43.09829182533636,43.10422382149403,43.10595782038713,43.11689281348205,43.11909781214542,43.12067981102372,43.12450380834638,43.1254188076786,43.14799579442194,43.1486827937628,43.16041478593506,43.16249278456225,43.17367977709744,43.17684677566334,43.19002776692398,43.19211976554744,43.19248983562812,43.19258387088048,43.19255289259723,43.19254391874531,43.19243696820734,43.19240998208239,43.19226702046563,43.19214807079976,43.1921440722251,43.19219413700001,43.19209314670299,43.19204676208736,43.18713554360839,43.18661116911278,43.17061219534773,43.16972787143952,43.16198019066002,43.1617208304452,43.15451352759039,43.15448331774165,43.14871318134602,43.13731316938744,43.13321316946402,43.13320191608601,43.12591317644365,43.12283767416314,43.12108318435381,43.11572740905236,43.11401420138185,43.10171990834293,43.09903391125523,43.09901425026045,43.08704926914719,43.08674046033909,43.086383341308,43.08429527289423,43.08194295286324,43.08188320978424,43.08056327436058,43.07808486458328,43.07467382076138,43.07441528621561,43.07433129165663,43.07062529429449,43.06032927606204,43.0585102756032,43.05310226390746,43.05209525570002,43.04842424890479,43.0425382432903,43.03781924272845,43.03657924297733,43.02994324450323,43.02578235752827,43.02575224647275,43.02513219010098,43.02511556296164,43.02450424843686,43.02009425263839,43.00704627310922,43.00221528346498,43.00115739360484,42.99764914361155,42.99669525940269,42.9950963479847,42.99349750050642,42.99241830352855,42.98807301533271,42.98768359384584,42.98663932813021,42.98411133235352,42.97801834768669,42.97508981946933,42.97065736291619,42.96808586264606,42.96623068208782,42.9611353737703,42.95470037299011,42.95096637761922,42.94883781111019,42.94591944866948,42.94403937838862,42.932078373377,42.93020312285619,42.92421835005867,42.92183837822183,42.91460138818824,42.9068963818488,42.90675758432158,42.90483337667009,42.90104437338575,42.8963533710367,42.89617309147446,42.89313299835214,42.89086645365597,42.89044837395596,42.89031438121441,42.8852853809906,42.88414637469995,42.87452738286025,42.87329238218819,42.87158743622319,42.86819561796099,42.8651943932334,42.86233494796997,42.85650640174876,42.84591941934907,42.84222494770921,42.8421203837306,42.84230036197123,42.84266928418193,42.84277426468214,42.84272621664286,42.84302018702664,42.84354912710563,42.84361205759565,42.84350087041819,42.84344682162112,42.84332568613596,42.86726571779039]}]],[[{"lng":[-88.30794207018971,-88.30692408495347,-88.30657008848335,-88.30643208909228,-88.30638108934231,-88.24566982885418,-88.24559682859632,-88.22274374794981,-88.21284871335048,-88.1979466612686,-88.18809662675949,-88.18801262646369,-88.18356961083845,-88.16853355800222,-88.16102553147628,-88.13740844879101,-88.12497740548604,-88.12362440061703,-88.0947362992728,-88.06992021207473,-88.04096811071328,-88.03053707425288,-87.98124879015946,-87.95189951232339,-87.92657626929572,-87.91406814864204,-87.89380595677677,-87.88557887786297,-87.85277456302317,-87.8436044740877,-87.82712913036183,-87.82447521383565,-87.81235295746066,-87.81112481242232,-87.80260015757729,-87.79411262803352,-87.79396957889152,-87.78549691119568,-87.77897498220779,-87.77882374123926,-87.77624832582308,-87.77369219825096,-87.76938982563509,-87.7671610842668,-87.75790586944932,-87.75801488541957,-87.75842184348157,-87.75931272267819,-87.76123568384102,-87.761313856911,-87.76457988755683,-87.77366990250624,-87.77368845300924,-87.77541878447516,-87.77695930499705,-87.77715717241824,-87.77816686923245,-87.77821712520107,-87.77909045510545,-87.77949384171806,-87.78019711819813,-87.78172875746742,-87.78159878891201,-87.78008604179333,-87.77987214640071,-87.77924878336825,-87.77898191828946,-87.77817979551737,-87.77852665238366,-87.78045038754607,-87.7809368511182,-87.77939308141003,-87.77861983661414,-87.77852383101664,-87.77812815872018,-87.77801087314883,-87.78078686274023,-87.7808099141279,-87.78081626395766,-87.78204182679457,-87.78236698644685,-87.78263109766326,-87.78371255863762,-87.78506706073809,-87.78676708336312,-87.7870806530385,-87.78847912785109,-87.78994535328766,-87.79354965673664,-87.79486724576347,-87.79517811015209,-87.79694349922467,-87.797327871256,-87.79757931553034,-87.80306742890033,-87.80312559791872,-87.8055902226503,-87.80584939147603,-87.80945755203389,-87.82219771732014,-87.8358668945299,-87.84597802440878,-87.86393925543368,-87.8847505237658,-87.89561766404424,-87.91561192231855,-87.95306340637069,-87.95327940916343,-87.95341541092317,-88.02698214088646,-88.02998515481814,-88.07091134501211,-88.07466536260368,-88.0808263914717,-88.08396940511732,-88.10574350784245,-88.11043453106309,-88.16888380499967,-88.18830289247644,-88.18830501931073,-88.18817018539453,-88.22568236026872,-88.26646150956782,-88.26653950973486,-88.29507057330287,-88.30251258981545,-88.30588859729014,-88.30599554537656,-88.30588854209262,-88.30608848478363,-88.3061304714363,-88.30621844362616,-88.3063314091055,-88.30609639657618,-88.30590938655111,-88.30589237720142,-88.30588837529507,-88.30588837479752,-88.30588537212478,-88.30596836126681,-88.30632731435108,-88.30666529090033,-88.30676527859745,-88.30681926319528,-88.30684920738935,-88.30678419291891,-88.3071841907185,-88.30780706757075,-88.30805706880314,-88.30794207018971],"lat":[42.761554513042,42.82157571682524,42.83702376948472,42.84067678199762,42.84209678686096,42.84200485944589,42.84200485978857,42.84207396730142,42.84236201467586,42.84271408562536,42.84284213213882,42.84284213253217,42.84285515337447,42.8429172239444,42.84286625896598,42.84308537003141,42.84327142857716,42.84322343480865,42.84331257007414,42.84332568613596,42.84344682162112,42.84350087041819,42.84361205759565,42.84354912710563,42.84302018702664,42.84272621664286,42.84277426468214,42.84266928418193,42.84230036197123,42.8421203837306,42.84222494770921,42.83474742985721,42.82232746041414,42.82125146352366,42.81378288397847,42.80634683498938,42.80622150757883,42.80089952052749,42.79680286417117,42.7967078643379,42.79509015440069,42.7934845600598,42.79144112800559,42.79038257697972,42.78213960207863,42.78162428535992,42.77970060139481,42.77920494989093,42.77813508705786,42.77809159452118,42.77744058645816,42.76996056518961,42.76993112007316,42.76718457425635,42.76473931479561,42.76442524099547,42.76282255526174,42.7626424349756,42.75951237068469,42.7580666102584,42.75554602796798,42.75005654870152,42.74362548523305,42.74058065983989,42.74015013571255,42.73889544376051,42.73766743937369,42.73397639707282,42.73350838952688,42.73091272934145,42.73025635307462,42.72828815962927,42.72730232906029,42.72597975564293,42.72052897277916,42.7189132463466,42.71805833028063,42.71805123119017,42.71801114755151,42.71027471689244,42.70822212928769,42.70749828100669,42.70453432638497,42.70082204938601,42.70072204467024,42.69995260175583,42.69652099912328,42.69500635301082,42.6912830210666,42.68992192003654,42.68917319739215,42.68492122513144,42.68399545799144,42.68338984981306,42.67542176020417,42.67526431033517,42.66859315023058,42.66789164112087,42.66781067304938,42.66781664857824,42.66784762255648,42.66809960547844,42.66848957450233,42.66881953735218,42.66896151763402,42.66918948099345,42.66956641173378,42.66956841133217,42.66956941107706,42.66963119894816,42.66964418543845,42.66975800074174,42.66973998359449,42.66971095546162,42.66990794254563,42.66966784222257,42.66940181928445,42.66910755307693,42.66971046820383,42.64454134479673,42.61145718306467,42.61118005088709,42.61105796643305,42.61105896644062,42.61087296715278,42.61083296737453,42.61081796748712,42.62424101640185,42.62501801923195,42.63990407347024,42.64337208610397,42.65060311244346,42.65959114517769,42.66262615625581,42.66505016510651,42.66744117382102,42.66792817559607,42.66805617606251,42.66874117855899,42.67160718899275,42.68401923416379,42.69039525733182,42.69367226924794,42.69770728393119,42.71216533657161,42.71583434994745,42.71684835354138,42.75548949258302,42.75548849248607,42.761554513042]}]],[[{"lng":[-89.83857007841301,-89.83848207642009,-89.8384099493987,-89.83816680519396,-89.78491394861837,-89.77858696554573,-89.71985500944984,-89.6249419094252,-89.62123590576374,-89.6023738858834,-89.60216488567421,-89.59976488326615,-89.54807582989751,-89.53824881973848,-89.52560080627269,-89.5234518040976,-89.48580475896011,-89.48574275886882,-89.46715873148838,-89.44208969473974,-89.43898269013357,-89.38869961623256,-89.38326360801402,-89.38313860782705,-89.36906858692768,-89.36912760202512,-89.36916961020954,-89.36917561129206,-89.36909670017097,-89.36883571523971,-89.36821675163594,-89.36816475463628,-89.3680297612223,-89.36785677156013,-89.36757878241129,-89.36743979224198,-89.36711581979642,-89.36704082981034,-89.36701483244326,-89.36700683649111,-89.36691184699482,-89.36688784880756,-89.36685185145448,-89.3667708578471,-89.36668286135144,-89.36661986768853,-89.36659986944811,-89.36579871828367,-89.36603094333792,-89.40141640376073,-89.40143201076094,-89.40995326351357,-89.41921066527654,-89.42099104796681,-89.42256705090311,-89.42392605338854,-89.42516205582085,-89.4439762788152,-89.45507228226862,-89.48345661054479,-89.48364062062375,-89.48430016824786,-89.49261218406889,-89.49321618522289,-89.52254222986873,-89.56384428783251,-89.56440728862208,-89.57429344987287,-89.57898039057483,-89.5816366953155,-89.59477933095893,-89.60000133818464,-89.60143717684406,-89.60352334325522,-89.61341035692885,-89.64417639993451,-89.6482989587587,-89.65032440854179,-89.66759643263991,-89.69008846419636,-89.69017593000009,-89.69348746907907,-89.71940043783979,-89.73417705503967,-89.74239553786647,-89.75080480476497,-89.7684803253355,-89.76964352530246,-89.78030251259892,-89.79395749623511,-89.79970448944783,-89.80189748681462,-89.83758790678002,-89.83757935715852,-89.8375853421377,-89.83758233986633,-89.8375763178134,-89.8378383143736,-89.83741627446032,-89.83737325637829,-89.83722624024935,-89.83740822979132,-89.83776420379634,-89.83754819790396,-89.83809514305796,-89.83809614215663,-89.83812411855415,-89.83835310721878,-89.83856509355699,-89.83857007841301],"lat":[42.77487977266342,42.77552977442142,42.81380086830981,42.85739897531435,42.85730801917279,42.85733602445737,42.85774104804969,42.85753304589142,42.85742504567445,42.85738404524583,42.85737904523504,42.85732404511435,42.8567530433295,42.85664904299609,42.8566760427809,42.85663404268236,42.85638004814476,42.85638004817213,42.85638605638413,42.85629906732236,42.8563140687155,42.85619509071227,42.85633809334128,42.85634009339969,42.85647309982958,42.84503808085759,42.83885507059666,42.83803806924074,42.77021895690174,42.75827993717132,42.71973179615109,42.71623578144191,42.70851074893881,42.69649269836197,42.68364464428712,42.67229859651976,42.64069046341758,42.62931641551401,42.62631140285693,42.62176838372367,42.60980533333212,42.60772332456089,42.60468131174482,42.59735028085796,42.59323126349705,42.5860082330635,42.5839972245896,42.50026126023874,42.50027487174665,42.50043381365133,42.50043388375372,42.50050185101996,42.50057568995966,42.50058989065769,42.5006808915351,42.50081889253519,42.50072689255326,42.50094959775447,42.50108094187286,42.50141692899589,42.50141910713493,42.50142691424221,42.50151491723628,42.50151491742841,42.5018899369292,42.50261903068015,42.50262896917548,42.5029023988355,42.50303202938864,42.50310549698042,42.50346899358314,42.5036729979843,42.5036261160195,42.50355800002433,42.50394300833606,42.5045210318649,42.50458339628306,42.50461403647546,42.5049610497103,42.50519206613929,42.50518969877734,42.50510006818614,42.50525002862263,42.50533554208652,42.5053831031,42.50536459033812,42.50532565058759,42.50532308802018,42.50535007716319,42.50546706350192,42.50542205746284,42.50544505528004,42.50554365173728,42.58118323393594,42.59422027098796,42.59619627660953,42.61535433107967,42.61802133825167,42.65320743896321,42.66897048386315,42.68317752453928,42.69201954934091,42.71410761142968,42.71952362726331,42.75567772659151,42.75594872725218,42.76304374454801,42.76633275213877,42.77032676151016,42.77487977266342]}]],[[{"lng":[-90.0439594053895,-90.01196541959858,-90.00013442485316,-89.99635942492573,-89.98275042506305,-89.93468742552383,-89.92883842557366,-89.92878542574961,-89.9281314215617,-89.92837442162272,-89.92855042041226,-89.92880741717877,-89.92881141679524,-89.92892141558083,-89.92971941565246,-89.92959041530273,-89.9289114131775,-89.928808412576,-89.92883140548543,-89.92924635034606,-89.92892333641281,-89.92915888683407,-89.91879922004766,-89.90991119049141,-89.90819718524246,-89.80516063436981,-89.76450683785559,-89.74067170882653,-89.73497205085285,-89.73494389922634,-89.66761791080127,-89.63841691217904,-89.55478498642351,-89.5338018984131,-89.49572389193681,-89.49059508449908,-89.38600196716958,-89.3763009157193,-89.37281297589445,-89.27688403871798,-89.27649003896805,-89.21996506939563,-89.21815707033693,-89.2056580774921,-89.20546856087576,-89.20329007884625,-89.201284080253,-89.19450908469815,-89.1798955371481,-89.16688810404555,-89.16175810816571,-89.12513714096664,-89.09163117521112,-89.02653907042307,-88.99088634937398,-88.99080844133645,-88.94869979226451,-88.9432808373778,-88.93275420999258,-88.93333109989496,-88.93322604849511,-88.93322404771597,-89.03035454917713,-89.03148154637222,-89.03262054393302,-89.04779651086081,-89.04775425191006,-89.04760212249218,-89.05775211144849,-89.12161803571558,-89.13051502731278,-89.13453802260192,-89.15595400027085,-89.16225799555359,-89.17300998547658,-89.17771598103558,-89.17524585530944,-89.18852884754651,-89.19421884415817,-89.21556483505395,-89.23687582020973,-89.25800981774734,-89.27857883020222,-89.29068883845767,-89.300943847043,-89.30047391717645,-89.33354092815929,-89.34157193119889,-89.36250993863405,-89.37305394348905,-89.42527896420097,-89.43560796857108,-89.48443098905966,-89.4849919893103,-89.53805005680066,-89.54974007561376,-89.57050810903355,-89.66396025937209,-89.68037128577946,-89.69751131334149,-89.70615332725076,-89.74796139446613,-89.75680239861096,-89.7961994035836,-89.80167840428147,-89.85789641146182,-89.96213542480561,-89.96276742488668,-89.98146042730511,-90.0428584138711,-90.0439594053895],"lat":[45.98194922762953,45.98194821316393,45.98194320781801,45.98234320645533,45.98226620266899,45.98206018920132,45.98196818758417,45.98488618638373,46.05405220095906,46.05482620137773,46.06931820708727,46.10837022243661,46.11280922416792,46.12839523033206,46.14132223612259,46.14332123678759,46.15607324111337,46.16101224293148,46.24276627479286,46.26823524484979,46.2724622365598,46.2997510798111,46.29774217059644,46.29640315607236,46.29603815351244,46.27599222720092,46.26808297066979,46.26358475406661,46.26250909938512,46.26250378653485,46.24979784288823,46.24380479184555,46.22806796227567,46.22411962564829,46.216301578975,46.21531308942791,46.19515457381674,46.19345767955337,46.19284757407054,46.17411659176482,46.17404759184745,46.16331958869549,46.16298858804743,46.16040858477858,46.16037753212955,46.16002058381053,46.15942658398865,46.15794258268998,46.15525805588863,46.15286857440616,46.15181657341152,46.14453156659646,46.13850555947864,46.11190200795151,46.09733049702439,46.09729865535253,46.08020569744722,46.07794370106088,46.0736803467843,45.99088992423749,45.98240590542225,45.98227690513476,45.98244709920117,45.98237009963869,45.98237710013427,45.98234610665989,45.92436407127857,45.89535605350595,45.89556505901701,45.89546409283848,45.89605609786358,45.8960731000038,45.89702111181145,45.89791511557294,45.8988691216923,45.89930112436996,45.85658010323609,45.8572811111877,45.85758211458772,45.86026012795573,45.86100614041232,45.86192714623656,45.86056914063968,45.86015513750812,45.86069013512917,45.90146414723721,45.90006613643207,45.89991013387257,45.89901012712569,45.89945012390584,45.8983481074509,45.8984051042378,45.89846808902649,45.89857408884997,45.89864408828002,45.8987100895456,45.89875709179525,45.89864810189167,45.89866510366939,45.89861510551096,45.89863510644976,45.89850111092768,45.89848811534111,45.89829313963128,45.89828214301587,45.89821617776597,45.89769324249409,45.89760724293277,45.89736625468396,45.89726426665683,45.98194922762953]}]],[[{"lng":[-92.15672980318546,-92.15665082951,-92.15656485928959,-92.15638091858278,-92.1564939217475,-92.15643094651274,-92.15634098202611,-92.15613998947913,-92.15612800590424,-92.15612903490701,-92.1560370663011,-92.15620018184524,-92.15584925172801,-92.15616527157869,-92.15608130103142,-92.15615030163592,-92.15611730209082,-92.15591639263617,-92.1555024765176,-92.15509978463588,-92.15533379887962,-92.15495782900241,-92.1550270252695,-92.15486618265668,-92.15486989335848,-92.15488797156607,-92.03141722912625,-92.03122822952811,-92.01135727028705,-91.99273828983728,-91.98479828643157,-91.97902328721658,-91.9086692700035,-91.87567626474845,-91.84701526113739,-91.84666126106823,-91.78581725057892,-91.78285724998901,-91.682770365783,-91.67997337073113,-91.67258538193524,-91.66237740014758,-91.64267243392072,-91.641346435862,-91.63175545225485,-91.6020385051266,-91.59622951659607,-91.54029461294242,-91.539884415757,-91.53948629107339,-91.53974021364424,-91.54009197067421,-91.54033779604906,-91.5404057494556,-91.54116442980296,-91.5411893845569,-91.54110926979467,-91.54110920149535,-91.54109920044388,-91.54096874476645,-91.54132065235909,-91.54113663450227,-91.54123854231537,-91.54159043662413,-91.54146639234041,-91.54228519094549,-91.54218604490727,-91.54219004199994,-91.54223201168587,-91.55956099780208,-91.56317599569734,-91.56369099519785,-91.56588699305176,-91.57446698476245,-91.59315496798605,-91.61980194539083,-91.63368793236218,-91.6656449022726,-91.74839782248968,-91.75014381993094,-91.76828878202659,-91.78355274998053,-91.78370574966056,-91.78884373887452,-91.81005069432302,-91.820482672373,-91.82804565646778,-91.82951765401316,-91.84497762213448,-91.85105960937331,-91.86060658951821,-91.88787953238304,-91.90020250658114,-91.90154950367878,-91.90740449135673,-91.91159548261955,-91.9174494704548,-91.93210343987639,-91.95718538751611,-91.9575263867699,-92.0032103001498,-92.03367132398067,-92.03370632400808,-92.03889132806883,-92.04245533081513,-92.05100533761794,-92.05387833983025,-92.07913735962168,-92.09421837141538,-92.10137137700332,-92.12188239301193,-92.1360284040652,-92.14221240885044,-92.15646241996831,-92.15650850957844,-92.15675459325679,-92.15664265236227,-92.1568127115344,-92.15672980318546],"lat":[45.34610118495143,45.35250818001256,45.35975317444021,45.37416516336366,45.37496016290667,45.38098015830283,45.38960915171275,45.39137215016035,45.3953671471514,45.40242714185911,45.41004013605793,45.43822211507968,45.45508110217973,45.46005309867723,45.46718309327609,45.4673630931851,45.46745809309288,45.48938907655244,45.50358308166802,45.53158518484657,45.53293218999465,45.53560019955651,45.55350626569314,45.56782131834606,45.63261155735744,45.6397445837036,45.63993035933351,45.63993135899146,45.6398973226949,45.63962928218877,45.63941926073331,45.63957624575568,45.63889605846852,45.63884097120451,45.63889389551492,45.63889189457746,45.63868673367833,45.63866672585163,45.63880750578868,45.63880550024256,45.63853048556206,45.63853846532404,45.63833942623606,45.63827342360069,45.63815940457571,45.63812834566063,45.63832333415925,45.63760622323306,45.59517822049578,45.56819621849742,45.55175121824692,45.49996421670011,45.47254130932292,45.46522233402559,45.41512450318965,45.40798152716393,45.38979158807464,45.37899062429241,45.37881962485807,45.3067118666438,45.2922219152366,45.28933492492375,45.27478797367801,45.2581730292446,45.25113005288193,45.22748204673373,45.21041403951987,45.21007503937419,45.20654003785509,45.20687503116719,45.20704502981116,45.20704502960808,45.20704302874135,45.20704702535971,45.20722401805727,45.20769200770939,45.20778000225496,45.20799298969654,45.20839795708233,45.20825795637796,45.2082689514334,45.20824094726223,45.2082409472205,45.20823094581556,45.20817594000691,45.20813493713998,45.20810493505952,45.20828893475002,45.20843893061976,45.20843192896113,45.20848192639431,45.20848791898317,45.20849791564038,45.20846091524626,45.20843391363293,45.20845491250932,45.20850791096009,45.20859090704868,45.20879490043242,45.2087699003163,45.20891589489509,45.2088529509682,45.20885295103271,45.2088509605867,45.20868196693147,45.20911598327768,45.20895498835372,45.20915503522725,45.2092740632383,45.20932207651693,45.20942811455792,45.20936214055369,45.20957415236207,45.20955617864654,45.27452623847854,45.29491322357688,45.30932321252607,45.32375920192197,45.34610118495143]}]],[[{"lng":[-87.98927759788685,-87.98322652964224,-87.98132549284161,-87.98128680191846,-87.97881044685967,-87.97877040734693,-87.97912639706905,-87.98126540262584,-87.98287044743327,-87.98494151220761,-87.98752154931852,-87.98764594360544,-87.99050959824552,-87.98927759788685],"lat":[44.60463642068586,44.600168488622,44.59695352792247,44.59682345352675,44.58849823125365,44.58836362293317,44.58700963542289,44.58667063223399,44.59102958291333,44.59733351159707,44.60017847327913,44.60033904044934,44.60403542240078,44.60463642068586]}],[{"lng":[-87.99156627634932,-87.98792013860854,-87.98824623534691,-87.98747919939034,-87.98099005739493,-87.9794071676813,-87.97871098321568,-87.98015898360836,-87.98191500197314,-87.98202387157846,-87.98226207383271,-87.98286905781107,-87.98401408465743,-87.98458269079828,-87.98602710815589,-87.99145024243438,-87.99150042165562,-87.99156627634932],"lat":[44.67721165173004,44.67761102102415,44.67559168910252,44.67227372811571,44.66175087367687,44.65711492928594,44.65507595358394,44.65396195694578,44.65467094027063,44.65530779468107,44.65670120600532,44.66025187828629,44.6623508504073,44.66262963603613,44.663337828803,44.6736226900421,44.67517474763755,44.67721165173004]}],[{"lng":[-88.00554088386482,-88.00337384272444,-87.99917771683714,-87.99127261916888,-87.99154261116038,-87.99273861752852,-87.9972706677021,-88.00059671981785,-88.00345581609655,-88.00471797093003,-88.00554088386482],"lat":[44.61647114979084,44.61711218313977,44.61217630305372,44.60592039985906,44.60490840945102,44.60498040425493,44.60800235516479,44.61074930460678,44.6143152132965,44.61562026749083,44.61647114979084]}],[{"lng":[-88.25257553789224,-88.24763853775009,-88.24593047762686,-88.24423142065376,-88.24270036907585,-88.23144499435368,-88.23097097867969,-88.23119062766173,-88.22798852612469,-88.22462741969157,-88.18138710170324,-88.13119160464646,-88.06719553430358,-88.05049999064667,-88.04492980972113,-87.99510530880973,-87.99361500889269,-87.99390329479496,-87.9987642675585,-87.99843024556613,-88.00209028032484,-88.00451126565301,-88.00431716074931,-88.00568819329366,-88.00815126385476,-88.0118713327841,-88.01050828150515,-88.01245828556327,-88.01456532290595,-88.01513131930361,-88.01440828778618,-88.0125942421794,-88.01140623174064,-88.01015020500282,-88.00935217683873,-88.00891612967938,-88.00903464329518,-88.0094722174877,-88.0095791317717,-88.00896008437179,-88.01136813184486,-88.01376313223322,-88.013332888579,-88.01478488731085,-88.01574347248122,-88.0163820114721,-88.01639943978287,-88.0164088200314,-88.01492771394136,-88.0207217954087,-88.02045773803579,-88.02408676659471,-88.02850684604439,-88.03023750713815,-88.03675880420072,-88.0380599447294,-88.04307393697701,-88.04955392641462,-88.04968000229105,-88.04980014192097,-88.04980691502665,-88.04094370994885,-88.03957666011054,-88.03300860629153,-88.03070333633383,-88.01918431476011,-88.01939829801242,-88.01207306412041,-88.0119411877458,-88.0114735965571,-88.00870612507454,-88.00463730080656,-88.0024350382388,-87.99915001380457,-87.99704301867794,-87.99573701196812,-87.99489499327736,-87.98129293530957,-87.98127936339576,-87.97070589361276,-87.95514385967617,-87.94380484896239,-87.93997563134876,-87.93950319457529,-87.93571093517369,-87.92900486782517,-87.92496560037399,-87.92314890480485,-87.91700391861892,-87.90118099173129,-87.89889201121197,-87.89956999120631,-87.9035220465089,-87.90517005431546,-87.91191007154085,-87.9128680815044,-87.9100990848624,-87.90638407786268,-87.90036506846411,-87.89412735621141,-87.8917210583616,-87.89132141322972,-87.89087219731341,-87.88750505653687,-87.88800606819842,-87.88169005628679,-87.88040007431711,-87.87120548289494,-87.86962103523408,-87.86688803004348,-87.86400004131387,-87.85780711422831,-87.85655901629019,-87.84816996692552,-87.84070792781988,-87.83085188544548,-87.82449097974012,-87.80882277770435,-87.80182873609033,-87.79382431338404,-87.78285761830215,-87.77512756988942,-87.76577750936173,-87.76291408659972,-87.76238476134085,-87.76254949070962,-87.76285849841146,-87.76382552650036,-87.76418753910434,-87.76484357356473,-87.76516758459353,-87.76503160527773,-87.764996516878,-87.76497646907586,-87.76531932532791,-87.76552913320889,-87.76602903713523,-87.77637402355687,-87.82677395705799,-87.88752887648229,-87.88802065668064,-87.88803961745806,-87.88808948189812,-87.92375740956999,-87.98929127936177,-87.99451026900547,-88.00254224971867,-88.01000922402351,-88.03474313866909,-88.04100111682587,-88.04324210892113,-88.05043208391596,-88.06021405003158,-88.09548492761748,-88.10390489840094,-88.15256872987955,-88.1629276946351,-88.19261259353753,-88.19092999849997,-88.19084207075497,-88.19087609654865,-88.19114716247692,-88.19261522815872,-88.19260524321287,-88.19260525073832,-88.19240426432494,-88.19249131459506,-88.19229236486296,-88.19128036676358,-88.19131440023114,-88.19132040721748,-88.19134944659064,-88.19149654555868,-88.19147463637175,-88.1914647733072,-88.19143496158897,-88.19048645398497,-88.19048558933201,-88.1904948027901,-88.19040884579881,-88.19046787966978,-88.19034137361056,-88.19045461673038,-88.18998113270345,-88.19026250267919,-88.19012857492559,-88.19012757878927,-88.19013360907665,-88.19047268326023,-88.19445874274021,-88.19869780895543,-88.21899912519461,-88.2193711308777,-88.23385033766095,-88.2427724599779,-88.24521249716096,-88.24505002944271,-88.24418072879365,-88.24303817976451,-88.24284539689933,-88.24602149414224,-88.25240451180224,-88.25238670005179,-88.25211017580467,-88.25241526206845,-88.25257553789224],"lat":[44.67980632682379,44.67973536539909,44.6796634187839,44.67964546912471,44.67962451472066,44.67955284558117,44.67955185941063,44.67235520308364,44.67235529240132,44.67235838601149,44.67365253981247,44.67692484507727,44.67738666800958,44.6774061470927,44.67744030645224,44.67768062481837,44.67720287268423,44.67720163734732,44.67028568139534,44.66823870531934,44.66403568598727,44.65554071950985,44.64591483484789,44.64547680766931,44.64583874543206,44.64309869266182,44.64178274058388,44.63774274770671,44.63635571912768,44.63487972623044,44.63377775642608,44.63375579584255,44.63542280040225,44.63586582233007,44.63515784852712,44.63190589779946,44.63167888178539,44.63084069658851,44.63063589936801,44.62773594788749,44.62685290947481,44.62212092214719,44.60245318534865,44.60001019369894,44.59533694702138,44.59222397013571,44.59213900437226,44.59209327418053,44.58553238271162,44.58441231937196,44.58037137998938,44.57830336387914,44.57910229635866,44.57855082546732,44.5764728320926,44.57605822759291,44.57120725330212,44.56559728588082,44.56519512693583,44.56481190349236,44.56479029852319,44.55940548366701,44.55931608537414,44.55888656656765,44.55725791980939,44.54911983106108,44.54765584982938,44.54465595169123,44.54460194435303,44.54418481487959,44.54171600207561,44.53973584442701,44.53866407686566,44.53842409523099,44.53935508829901,44.53890409499027,44.53707311559855,44.53324317310511,44.53323939273039,44.53029421507057,44.52890424568955,44.52969525112558,44.53132524844514,44.5315263523792,44.53314061777726,44.53599521529405,44.54124708682378,44.5436091612831,44.54809513563016,44.56892700992632,44.57413697760995,44.57467012670266,44.57777793820916,44.57812993098972,44.57690292168041,44.57804491017466,44.58040689976313,44.58163690113524,44.5841659000904,44.58764267146412,44.58898389206976,44.58929699062855,44.58964892499415,44.59228688262395,44.59433386682789,44.59781486465666,44.60330383261147,44.60585604583589,44.60629585322466,44.60843585025597,44.61548681839448,44.61900398768533,44.61971282407104,44.61836686694096,44.61870089632482,44.62358491341637,44.62726793189701,44.63633995589115,44.63785598342635,44.63798766288246,44.63816807431485,44.63927310850236,44.64202514680674,44.64414821552712,44.64454068076914,44.63962616914086,44.63254118610215,44.60358825806494,44.58914629506227,44.54536241016044,44.53085144861878,44.5017435268655,44.47272858724372,44.45818361696129,44.41450570582644,44.3561728244136,44.3271868824627,44.32726086195074,44.327480762448,44.32759164293115,44.27736767775534,44.26838668410591,44.24046371653082,44.2404046164961,44.24075543177862,44.24078541706497,44.24089239432642,44.24093837334657,44.24105430392599,44.24104028644748,44.24102028021785,44.2410202601045,44.24104523269129,44.24109513392723,44.24110911034621,44.24126897390842,44.24144194460034,44.24194886060207,44.2887899621997,44.29647598462552,44.2992379925374,44.30634201251498,44.31369203086646,44.31529003554209,44.31609003787285,44.31748904234009,44.32285405779368,44.32815907360273,44.32815707543177,44.33173208572781,44.33247808787861,44.3366811000066,44.34725513041552,44.3569301585005,44.37152320082212,44.39158825902381,44.44412641165919,44.45858345339466,44.48138251921283,44.48598953249873,44.48959854292636,44.50929918290316,44.53840496118892,44.57407246981001,44.58264810684557,44.58439303547248,44.58448403167171,44.58519200191438,44.58679792989324,44.58662288203725,44.58650982822757,44.58599857129597,44.58598756669603,44.58529440169735,44.58480230494537,44.58474427483645,44.59499375519514,44.62795209509384,44.65646867618691,44.66076746375234,44.66082337832918,44.66021233315894,44.6637781493976,44.67265268907047,44.67446959939049,44.67980632682379]}]],[[{"lng":[-88.88667186117743,-88.85030303985508,-88.8253471626775,-88.82039618698327,-88.80722625186633,-88.79866529414964,-88.79610930678008,-88.78598735682503,-88.77864239313809,-88.77622840504608,-88.76619945448762,-88.73976956636406,-88.68418974179916,-88.65519783327967,-88.65076484798084,-88.64518886556307,-88.64210087530488,-88.63632989282266,-88.63288190369101,-88.62653292425193,-88.62420993201945,-88.61840895033662,-88.56498111911776,-88.55742414297774,-88.54073619608454,-88.53925120113253,-88.53867720268399,-88.52479124700534,-88.4968183392602,-88.48537438855976,-88.46630147064256,-88.46601747188866,-88.45595751525563,-88.45475352043032,-88.4534075262265,-88.4532135270552,-88.4501195404122,-88.44441156505296,-88.44051458234576,-88.43909958843984,-88.43653259957006,-88.435907602527,-88.4343186090135,-88.43270761562779,-88.42900763190376,-88.42410765266335,-88.41776967944281,-88.41405369543696,-88.41286070062955,-88.41097370886283,-88.40420273808265,-88.40407073865808,-88.40406772707554,-88.40400271443644,-88.40392670690838,-88.40393070339648,-88.40400668974755,-88.40400768812367,-88.4040516766659,-88.4040946651503,-88.40418464857864,-88.4042026456906,-88.40425563555191,-88.40431562674506,-88.40432262564902,-88.40434262200841,-88.40435961892955,-88.40440261614376,-88.40442561527439,-88.40452758593757,-88.40453756041752,-88.40450755167488,-88.40450853426869,-88.40439850449245,-88.40430847354479,-88.40444644077823,-88.40450842622684,-88.40442933003168,-88.40449631343846,-88.40420927004813,-88.40441925239378,-88.40459822678216,-88.40440917765335,-88.40428913240611,-88.40410906407106,-88.40350989131385,-88.40330882142091,-88.40418668075742,-88.40377361778107,-88.40319453430857,-88.46756936832629,-88.49341930157435,-88.50715827212981,-88.50892526907769,-88.52400624297043,-88.54406420812582,-88.58358714064107,-88.63035806008779,-88.63121605864049,-88.63662004922327,-88.64441903563838,-88.64451703546784,-88.65404101892402,-88.67449198346637,-88.7648378233598,-88.8371856817861,-88.84758466152189,-88.85482564740808,-88.88569558699459,-88.88582460307796,-88.8859256118147,-88.88593463635098,-88.88619168544749,-88.88631072429898,-88.88636673125046,-88.88634073363804,-88.8860407485673,-88.88598275033878,-88.88573677591872,-88.88570577879007,-88.88608580222557,-88.88618780653779,-88.88625980985948,-88.88625880998354,-88.88619882070721,-88.88675085987316,-88.88667186117743],"lat":[44.24262282126996,44.24259485008443,44.24275886949683,44.24273687345455,44.24284688364651,44.24297989014512,44.24302089208204,44.24318789973968,44.24329590532002,44.24331390718941,44.24336691499941,44.24330393978718,44.24332200420908,44.24331703784338,44.24360704237791,44.24359804886363,44.24359505245128,44.24331705972578,44.24331206373508,44.24351607067182,44.24368407301466,44.24368407974252,44.24371114165061,44.24371015041713,44.2438471694854,44.2439661709592,44.24387917180658,44.24402918759818,44.2441012223078,44.24410724426108,44.24409228090094,44.24409928143165,44.24411330071221,44.24411030302933,44.24411030561286,44.24410830598933,44.24411831190756,44.24413632282692,44.24428732999956,44.24428733271574,44.24430933759856,44.24438733863981,44.24428234190336,44.24418734518855,44.24428735208804,44.24418736169611,44.24403837416224,44.24403638129859,44.24405238355619,44.24408338711571,44.24410140007584,44.24410340032519,44.24078840697687,44.23709541450499,44.23485041915092,44.23385142114596,44.23004242863685,44.22957942956314,44.22635743593867,44.22311744235243,44.21848845146199,44.21768445303979,44.21484945862334,44.21240346341393,44.21209846401222,44.21108146601351,44.2102214677057,44.20947646911819,44.20925546951786,44.20098748590408,44.19370050049719,44.19116450563862,44.18618751561652,44.17754253315619,44.1685875512787,44.15937756948993,44.1552875775766,44.12768663306538,44.12301664230758,44.11028766834949,44.10547267762497,44.09834569159403,44.08408772052196,44.07101874693917,44.05128778681557,44.00128788808319,43.97998892780996,43.93820200308679,43.91873703961217,43.89297908803805,43.89341696823608,43.89360892012188,43.89365990055931,43.89366789874033,43.89371288325481,43.89372286274437,43.89425982138892,43.89462777288367,43.89464877196676,43.89464276645076,43.89463675848522,43.89463675838498,43.89465074861722,43.89471372757818,43.8949006327062,43.89497954839965,43.89505753614587,43.89511352760974,43.89518549155743,43.90962446189928,43.91753344561825,43.93924940122763,43.98323431103422,44.03088821869385,44.04175919824135,44.04528819165138,44.06661815196745,44.06902614751198,44.10655307735356,44.11073006954625,44.14851099828766,44.15570798469111,44.16122497427573,44.16140797393339,44.17737894402999,44.2412148238474,44.24262282126996]}]],[[{"lng":[-88.06390542897441,-88.06328958588928,-88.06288869752504,-88.06288875332916,-88.06255089407081,-88.0624239268214,-88.04012392479318,-88.03998092703314,-88.04095115340851,-88.04096416414548,-88.04082718165003,-88.04099018201669,-88.04086721065164,-88.04069926921883,-88.04076232679893,-88.04079133289662,-88.04073838439314,-88.04050162384695,-88.04052664083403,-87.97097564387857,-87.95435963079952,-87.95378163034725,-87.9509526281559,-87.95058062786246,-87.92104560495909,-87.86089355342695,-87.84088353626493,-87.8209115193189,-87.79191139814344,-87.79365943835585,-87.79409940967017,-87.79401034852464,-87.7936085603086,-87.79353029204485,-87.79168825548162,-87.79552518223092,-87.80093218333329,-87.80101907420624,-87.8035990601384,-87.8040101366842,-87.8089551167797,-87.81071706229557,-87.81194310493977,-87.81254608665292,-87.81669608090714,-87.82731703142072,-87.85550840174216,-87.85560592986276,-87.86504588767042,-87.86563987434688,-87.8656789361692,-87.86959686461729,-87.86842085330747,-87.869887847263,-87.87250183714599,-87.87275552718374,-87.87586024186156,-87.87744579488117,-87.87754180326972,-87.88238972595322,-87.88253619933791,-87.8842726748547,-87.88438881714119,-87.8856006235042,-87.88615959472614,-87.88828056758426,-87.88920454138038,-87.89178851918051,-87.90184445541213,-87.9029657948747,-87.90304897936397,-87.90798237378831,-87.90799432949468,-87.91175451876386,-87.91178432346759,-87.9117826645401,-87.91175715075765,-87.91008652316646,-87.91008426017127,-87.91007473974797,-87.90385720059736,-87.90055146579611,-87.89942993896439,-87.89674114754897,-87.89593287525413,-87.89578512206776,-87.89739610517502,-87.89634941447795,-87.89628307237442,-87.89624618112764,-87.89208683221965,-87.89500404832772,-87.89877105560906,-87.92410310142193,-87.92465910244853,-87.94429713859572,-87.95925216629399,-87.96466517621784,-87.98395521160066,-87.9941682301536,-88.00381124385346,-88.02372125931953,-88.06335028956009,-88.06338029804837,-88.06378438254552,-88.06390542897441],"lat":[43.23563873416157,43.2788837704764,43.30786081669165,43.32232183943134,43.35880489740622,43.36729191098813,43.36731595141356,43.36788595259718,43.42517904365764,43.42789804803735,43.43232405547508,43.43242405531888,43.43966806729609,43.45448409163772,43.46906411513825,43.47061011758449,43.48364113880945,43.53860717199451,43.54236417254067,43.54274532047268,43.54293035452443,43.54293735570926,43.54297636150994,43.54298036227237,43.54338142284712,43.54316154587577,43.54308458679292,43.54304662764666,43.54302514251055,43.53081067723553,43.52468967325419,43.51182466694279,43.50193848766883,43.50001266193843,43.49224765706506,43.48483854564853,43.47439761832194,43.47408652229085,43.46484937978533,43.46337759943779,43.45791458277475,43.45598633562854,43.45464457266565,43.45042556648465,43.4482605550798,43.43485251617542,43.40554580326541,43.40544441661131,43.39357337960039,43.3903813740306,43.3903499131118,43.38719436065245,43.38488836032664,43.38314435459486,43.38018134453778,43.37961982339724,43.37274780376668,43.36923831817953,43.36890554591313,43.35210228304895,43.35114718364186,43.33982426165368,43.33875672406287,43.32761824160695,43.32082223085797,43.31396921604962,43.30765520496065,43.30179419020041,43.28412013922029,43.28031711491207,43.28003499460492,43.26330338107687,43.2632628332839,43.25051014692426,43.25040906423769,43.25039491605777,43.2501773214977,43.2359293779194,43.23591007797254,43.23589192409426,43.22403610263316,43.21951561592255,43.21798196387825,43.2143051278079,43.2096365548319,43.20878313389112,43.20424813265314,43.19753653919769,43.19711114017274,43.19706661668953,43.19204676208736,43.19209314670299,43.19219413700001,43.1921440722251,43.19214807079976,43.19226702046563,43.19240998208239,43.19243696820734,43.19254391874531,43.19255289259723,43.19258387088048,43.19248983562812,43.19211976554744,43.19476876363842,43.22112574450117,43.23563873416157]}]],[[{"lng":[-88.04378078180123,-88.04324210892113,-88.04100111682587,-88.03474313866909,-88.01000922402351,-88.00254224971867,-87.99451026900547,-87.98929127936177,-87.92375740956999,-87.88808948189812,-87.88803961745806,-87.88802065668064,-87.88752887648229,-87.82677395705799,-87.77637402355687,-87.76602903713523,-87.76598703719138,-87.73543610476112,-87.70499420124224,-87.68472726564542,-87.64419939390849,-87.6236574585803,-87.58336358612009,-87.54295392611773,-87.54538569506427,-87.54471967136583,-87.54138567802632,-87.54115865902931,-87.54081259728137,-87.53644076861475,-87.5363152373308,-87.53370166013322,-87.52175867086612,-87.52170469420535,-87.51554516864668,-87.51314174731188,-87.50842256284368,-87.50742243557087,-87.5129062921802,-87.51966318035343,-87.53994297633317,-87.54429668552659,-87.54962476538783,-87.55667585220445,-87.5579043548253,-87.56184385766433,-87.56202069003118,-87.56267749596434,-87.56275880930546,-87.56318379840228,-87.56323180765024,-87.57053655170657,-87.58354740790931,-87.59030967219746,-87.59702039186791,-87.59737256451201,-87.60088459918435,-87.61655028209346,-87.62011025834053,-87.62108447468417,-87.63152240348927,-87.63900025453482,-87.6391813515082,-87.64270501931898,-87.64806127970429,-87.64755827411655,-87.64779903962463,-87.64795573460378,-87.64867758070955,-87.65115233800528,-87.65121722429703,-87.65143806526946,-87.65145015475328,-87.6517771985318,-87.6516622837182,-87.65134118359757,-87.65008117769823,-87.65516039194041,-87.65518512396903,-87.65569392822695,-87.65599808009456,-87.6554029176413,-87.65348503771614,-87.65362692122279,-87.65393998059389,-87.65399682508919,-87.65605787891023,-87.65608493537408,-87.65933233531686,-87.67131780649463,-87.67143167273187,-87.67757729791333,-87.67778974198281,-87.68087966035699,-87.68336267118234,-87.69550443801435,-87.69551283113962,-87.69696060985265,-87.69892124342257,-87.69956156552692,-87.70148419500768,-87.70395215854718,-87.70769111656165,-87.71188208130174,-87.71603802890438,-87.71767800257392,-87.71904197555939,-87.72012541693701,-87.72029494762909,-87.72042121106011,-87.72192986797975,-87.72351283130249,-87.72400478629997,-87.72452183269628,-87.72605774836978,-87.72680368669987,-87.73132297693836,-87.74147856916889,-87.74615555896369,-87.74856055448606,-87.74993455189535,-87.77148053089103,-87.77454852793439,-87.77735852513553,-87.78146952100887,-87.79059851253569,-87.80149250245806,-87.83389347171388,-87.86584244310225,-87.92225339554999,-87.93506038350716,-87.94444737670153,-87.98217334082062,-88.02703128192638,-88.02833627937558,-88.04179425800648,-88.04182932893444,-88.04183935298879,-88.04170235836338,-88.04177340630898,-88.0417734110176,-88.04177043234552,-88.04189846832074,-88.04192053813163,-88.04213867689045,-88.0421386769432,-88.04234978616745,-88.04251887789719,-88.04271999009941,-88.04293714316967,-88.04302219182306,-88.0430642212205,-88.0431002432491,-88.0436516233554,-88.04371970317244,-88.04376673357061,-88.04376873510225,-88.04378078180123],"lat":[44.18221339437285,44.24102028021785,44.24104028644748,44.24105430392599,44.24093837334657,44.24089239432642,44.24078541706497,44.24075543177862,44.2404046164961,44.24046371653082,44.26838668410591,44.27736767775534,44.32759164293115,44.327480762448,44.32726086195074,44.3271868824627,44.3271868825454,44.32723692620934,44.32732695168318,44.32745696842479,44.32754600229892,44.32745201989826,44.32756605344211,44.32751558785358,44.32138810953872,44.30686716693231,44.29402095192911,44.29314622461843,44.29248826009086,44.28417613585133,44.28393746418133,44.27896828978542,44.25996038264305,44.2598377943664,44.2458487210158,44.24039028012477,44.22967248080035,44.21080651702643,44.19281154237324,44.17987355676249,44.15969356606816,44.15696002008771,44.15361470003128,44.14918756276762,44.14824579114129,44.14522576347748,44.14509020357291,44.14458669535875,44.14452436045436,44.14419856330642,44.1441826454223,44.14176069399207,44.13744683168979,44.13520474439485,44.13297974724752,44.13286298136374,44.13169853592813,44.12409829984983,44.12237117067088,44.12189852778519,44.11562152614673,44.11109904944319,44.11098952508764,44.10809398419983,44.10369252780288,44.1025575307354,44.10214297989123,44.10187318196139,44.10063030497636,44.09636925990707,44.09625753848412,44.09472262586547,44.09463860023839,44.09236554553122,44.09167792668507,44.08975655132203,44.08822555603422,44.08192822538734,44.08189756203107,44.07768797303417,44.07517157445746,44.07328310089257,44.06719759367906,44.06438358668427,44.05817461116438,44.05800561143027,44.05187806057303,44.05179762121185,44.04871839762261,44.0373536310687,44.03721543153841,44.0297564823774,44.02949863888814,44.024311198211,44.02014265098523,43.98958568800226,43.98952760343055,43.97950825998036,43.96593970846244,43.96459458255851,43.96055571108754,43.95665471231047,43.95241971245504,43.94916471109379,43.94370871215035,43.94083171335621,43.93778471506739,43.93294956912879,43.93219299323743,43.93162950903019,43.92489672562431,43.92066972841011,43.91506473388922,43.91399183707955,43.91080473623451,43.90313674369101,43.89218802640522,43.89221673990805,43.89221873494806,43.89231873228776,43.89237173077218,43.89215567379819,43.89212666567023,43.89208765824083,43.89202564737854,43.89197962315092,43.89192759423825,43.8916475084274,43.89160442353204,43.89203127288135,43.89191923898951,43.89220221357315,43.89177011393058,43.89177599160772,43.89167798816391,43.89169495084296,43.90649892445765,43.91151891551538,43.91259391398964,43.92261689599332,43.9235988942496,43.92804588636157,43.93559187260053,43.95015884666922,43.9791727945161,43.97918379449656,44.00176275344293,44.01837072027739,44.03869367971337,44.06641462455361,44.07523560695675,44.08056259635712,44.08455658839708,44.15349945121411,44.16796442257074,44.17348541157885,44.17376341102641,44.18221339437285]}]],[[{"lng":[-89.04779651086081,-89.03262054393302,-89.03148154637222,-89.03035454917713,-88.93322404771597,-88.93322604849511,-88.93333109989496,-88.93275420999258,-88.85027259914816,-88.84846661582461,-88.84760162685549,-88.84711963262949,-88.84395965893488,-88.84390766061671,-88.84390566454395,-88.84150768286001,-88.84047369254662,-88.83860370965735,-88.83704871918064,-88.83525173205057,-88.83154675957533,-88.82701279510501,-88.82438181774366,-88.82059484455509,-88.8190868547351,-88.818490863832,-88.81649187949365,-88.81542988959393,-88.81563189005972,-88.81610988874839,-88.81602889240017,-88.81349290947273,-88.81195091731968,-88.80969893136206,-88.80577395974423,-88.80369697008646,-88.80176398088847,-88.79916999836595,-88.79646301756566,-88.79579301854157,-88.7962450097374,-88.8006729702163,-88.79618499046606,-88.79179902533477,-88.79027204062119,-88.78964104907028,-88.78835405881115,-88.78744106437831,-88.78633506607619,-88.78441407419623,-88.77922411222164,-88.77863111798472,-88.77873712403337,-88.7836381032446,-88.7840101045971,-88.7838941112141,-88.78210713584977,-88.78015915244852,-88.77857116351423,-88.77619017803478,-88.77286019456967,-88.76971521372785,-88.7686952162053,-88.76885121144726,-88.76991619969303,-88.77119218646284,-88.77004919246535,-88.76797120723387,-88.76607822254904,-88.76479823700195,-88.76377024606042,-88.76004727746161,-88.75862128797186,-88.75629830210437,-88.75403631124016,-88.7521793208422,-88.74884333202463,-88.74781632904666,-88.74642532301598,-88.74200331373943,-88.74140331054303,-88.73999730706626,-88.73803630383858,-88.73738030441081,-88.73465330161125,-88.73350229980016,-88.73228029456797,-88.73067829196546,-88.72480428639905,-88.7238282887309,-88.72112828595996,-88.72132229506465,-88.72211829981094,-88.72002929906411,-88.71802729644104,-88.71792629779432,-88.71882230194122,-88.71840030308418,-88.71305229429416,-88.71226328395396,-88.71125728103431,-88.7103312799606,-88.70997228144846,-88.70877527952943,-88.7077182772084,-88.70737727407582,-88.70641526930092,-88.70469026462692,-88.69871925388733,-88.69701725218877,-88.69683225397912,-88.69483725026237,-88.6916652463153,-88.68990524606509,-88.68874624380078,-88.68681823799041,-88.68484623622408,-88.68331508932717,-88.68420310592012,-88.67460708516089,-88.67445307166612,-88.67548629397159,-88.67548729364168,-88.67559022981604,-88.67557049345756,-88.67564209310063,-88.67580440566391,-88.6758213962587,-88.58282025330553,-88.57413623960208,-88.57199123937077,-88.46222014173065,-88.42530214875184,-88.42585221499341,-88.42594869724675,-88.42606765579174,-88.42613213511977,-88.42582610029932,-88.42577804773369,-88.42583094666603,-88.42598287843724,-88.42647571898944,-88.42559462072248,-88.4260074500867,-88.42625435015867,-88.42628034399517,-88.42670021229455,-88.42671115949229,-88.42676414494191,-88.42809780076631,-88.5543482400571,-88.6284425778715,-88.67781579954558,-88.67799180018731,-88.80253970709435,-88.8025617073387,-88.82195392251978,-88.92602307776629,-88.92609907314421,-88.92612906559427,-88.92655305877854,-88.92524501887681,-88.92305988730627,-88.96968044612051,-88.98767366179489,-89.02641291376328,-89.0393369642908,-89.04648899241842,-89.04656528087308,-89.04656428794732,-89.04660440865942,-89.04693179955935,-89.04693179970853,-89.04680523161956,-89.0473802753407,-89.04728931584695,-89.04744746557613,-89.04728547244639,-89.04744248792495,-89.04727874702964,-89.04760306095257,-89.04760212249218,-89.04775425191006,-89.04779651086081],"lat":[45.98234610665989,45.98237710013427,45.98237009963869,45.98244709920117,45.98227690513476,45.98240590542225,45.99088992423749,46.0736803467843,46.04027468752138,46.03885868700569,46.03716168832092,46.0363396888366,46.03480668606463,46.03436268664413,46.03305068860416,46.03243168550413,46.03156268501088,46.03012468384458,46.03051168063656,46.03033067779346,46.02962067231579,46.02811866621559,46.0265536633319,46.02626165684983,46.02631465408447,46.02459965473929,46.02392465173422,46.02295465069573,46.02232065167485,46.02164865321602,46.02058665408145,46.02068064915861,46.02160964540242,46.02208064075715,46.02155463378379,46.02289462889461,46.02373762471715,46.0238366198641,46.02360561500461,46.02486461304976,46.02685361272639,46.03003661852807,46.03371260866737,46.03205760222504,46.03037660042698,46.02893359999179,46.0286135978801,46.02885759618048,46.03092659344821,46.03270958954449,46.03186958106736,46.03127158020737,46.02887558096198,46.02435759103686,46.02298459218807,46.02093459266737,46.01655859060396,46.01539558704754,46.01531658387822,46.01593157897741,46.01813657204807,46.01896856584588,46.02057156379468,46.02188756402776,46.0234785659218,46.02507756813397,46.02572856600578,46.0255395622542,46.02470155882047,46.02266755642125,46.0219435544662,46.01981554720522,46.01954254442352,46.02017354006755,46.02246053627613,46.02358453310736,46.0241495241306,46.02453851971963,46.02579851401331,46.02620549468836,46.02697849235401,46.02730848631037,46.02716747763772,46.02650247446601,46.02566346208101,46.02554345695118,46.02666845210939,46.0265354449975,46.02450341802543,46.02289941280446,46.02201340030761,46.01860839915909,46.01735040198839,46.01608639185199,46.01561138254816,46.01500338171439,46.01405238517106,46.01328438278891,46.01266835816781,46.01618435697403,46.01658235272185,46.01630334836535,46.01543034613994,46.0152783406382,46.01539633595895,46.01639833514835,46.01758833169586,46.01815432438363,46.01790329743218,46.01726328927597,46.01637128770878,46.01633027870277,46.01543526365346,46.01410825453839,46.01412124931298,46.01501824142859,46.01414723171503,46.01413850528979,45.98244911776955,45.98229807433186,45.98086806586287,45.89629060890772,45.89625460871466,45.88930957115722,45.80944613520836,45.76600689825187,45.72336387537032,45.72289887652668,45.72260868608821,45.72255966827844,45.7227186637511,45.72262760438282,45.7224246907391,45.65745464960438,45.62145162732251,45.54905058271084,45.51287356042695,45.5102785593887,45.50659255721398,45.49935655236364,45.49204954399425,45.47513152430828,45.46351651312521,45.44531049213803,45.43467147982859,45.43402747905956,45.42013346273308,45.41439145632485,45.41286645451297,45.37700841147828,45.3776704886872,45.37839982637032,45.37892805206454,45.378682052105,45.37821055629529,45.37821055637024,45.37827862269292,45.3786369786297,45.38168999079393,45.38609400806992,45.39256603475781,45.40656408486007,45.46513730560966,45.46509246787569,45.46506553046321,45.46436255010371,45.46462254104669,45.46443953479822,45.55051872760109,45.55170372900665,45.57189175292242,45.6372208303784,45.63724583040811,45.70965191637274,45.71687992522881,45.72368993329165,45.74879296328223,45.74995896455859,45.75338996678612,45.81133200204275,45.88158704510639,45.89535605350595,45.92436407127857,45.98234610665989]}]],[[{"lng":[-90.6797602682921,-90.67976126834505,-90.67925828420778,-90.6795022868865,-90.67875031508484,-90.67775233883776,-90.67775436134413,-90.67803536855432,-90.67735837285831,-90.67790637725506,-90.67781137890312,-90.67786137890791,-90.67791137899843,-90.67866237994225,-90.67741238041563,-90.67886638343231,-90.67746838486663,-90.67696938554229,-90.54028438446855,-90.51960138430815,-90.48837238090321,-90.46366337402665,-90.458278372462,-90.40831335844965,-90.40080835634549,-90.32816533597722,-90.30206432865789,-90.16742135055644,-90.0439594053895,-90.0428584138711,-90.04283441477139,-90.04519942068829,-90.0434853973937,-90.04305537537213,-90.04370130252434,-90.0437722932534,-90.04350026492671,-90.04347023494641,-90.0433992345048,-90.04354319432578,-90.04363917005321,-90.0434911287382,-90.043415127549,-90.04288394010659,-90.04278785800339,-90.0427207809085,-90.04253065818969,-90.04227337023889,-90.1124425038869,-90.13795354919556,-90.14374755670208,-90.1670005982768,-90.18783563723528,-90.24948974922253,-90.26966977642465,-90.27499478375118,-90.29068280530879,-90.29801081474787,-90.37218890896803,-90.37514691407337,-90.500212078188,-90.50366306545881,-90.53415095694764,-90.53390095748269,-90.5555558808088,-90.64809755226926,-90.6787734436987,-90.67806110498374,-90.67833613975861,-90.67798120196473,-90.67886124248443,-90.67963725876534,-90.67965426014294,-90.67981126031958,-90.6797602682921],"lat":[45.55246915352344,45.55257115363035,45.58102518331921,45.58666718926354,45.63826524313528,45.68196428871316,45.72513433389607,45.73914634860202,45.74699835672246,45.81131137258227,45.8448313794775,45.84509137953867,45.84710937996221,45.86845838447813,45.87495838562607,45.93895639904718,45.96745540469805,45.98155540752275,45.98164038527511,45.98162138190231,45.98154137598924,45.98121737015951,45.98151036898076,45.98145535733632,45.98144535558583,45.98136933863918,45.98135033254994,45.98195828345508,45.98194922762953,45.89726426665683,45.88781727106701,45.81760530288037,45.73036333582162,45.71604433684398,45.66869233847943,45.66265133868961,45.64429433979743,45.62482434073029,45.62456034081538,45.59840334187722,45.58258334250183,45.55581134390766,45.55508334403047,45.48203830321395,45.46760126792385,45.45404123474742,45.43248318210877,45.38186705827336,45.38263797115682,45.3823119380021,45.38169492914961,45.38142089899078,45.38151087278482,45.38108479355901,45.38090580712671,45.38090481109032,45.38089582275496,45.38075082790911,45.37890988028986,45.3791468829065,45.37726697630487,45.37717198155445,45.37730102859667,45.37722102818267,45.37738706157131,45.37776520365733,45.37790825056283,45.47880112456682,45.48421411796276,45.49363110618781,45.50105109956282,45.53425313444195,45.53688813720204,45.53769113806936,45.55246915352344]}]],[[{"lng":[-89.59802557935529,-89.59769650029982,-89.59715942850035,-89.59729442705425,-89.59797734024076,-89.59333933497879,-89.59320633488855,-89.58625032743454,-89.57079430916653,-89.52426325679448,-89.48753926012604,-89.48222927329454,-89.43458939047888,-89.41092344875509,-89.38879350324889,-89.38518551212189,-89.37160154550106,-89.36930355103807,-89.36491256185747,-89.34626560778244,-89.29232674046676,-89.28742675244497,-89.24699185007549,-89.224810891117,-89.20428192882983,-89.13358105890079,-89.12847306829191,-89.10334811440538,-89.09736212539947,-89.06598418310158,-89.06294418868154,-89.00856428850896,-89.00673729186593,-89.00012730400518,-88.98216039193524,-88.96174049229246,-88.88667186117743,-88.88675085987316,-88.88619882070721,-88.88625880998354,-88.88625980985948,-88.88618780653779,-88.88608580222557,-88.88570577879007,-88.88573677591872,-88.88598275033878,-88.8860407485673,-88.88634073363804,-88.88636673125046,-88.88631072429898,-88.88619168544749,-88.90625363560292,-88.92647658543682,-88.94676753498399,-88.94820453141988,-88.95081952483497,-88.97686846008284,-89.00634339473903,-89.01634938245621,-89.01641238240195,-89.12820724519874,-89.16861019559505,-89.20112015573891,-89.20141015538761,-89.20879814632666,-89.21879213407227,-89.24332310400629,-89.24708109940171,-89.25011709569328,-89.25102009465843,-89.32812300639385,-89.33034800374593,-89.36534996374121,-89.36542296366268,-89.40399691952999,-89.40735291559172,-89.4100179126546,-89.42972789023641,-89.46214085327597,-89.48234083014302,-89.48250382995494,-89.49768981258396,-89.50940780991607,-89.59794780524069,-89.59803265707106,-89.59802557935529],"lat":[44.11198377921886,44.15607375020226,44.19592672372875,44.1968047232526,44.24572569178301,44.24563768778926,44.24560168769709,44.24523668187215,44.24536066829819,44.24445262846774,44.24404361638447,44.24399162012197,44.24396065325021,44.24390766974308,44.24385168517217,44.2438486876819,44.24385369711543,44.24392269864614,44.24390670171228,44.24384771472487,44.24375775228992,44.24380975564387,44.2436927811411,44.24339377684984,44.24338177261678,44.24307675839543,44.24305775736867,44.24307075217725,44.24306275095586,44.24289274475063,44.24289174412763,44.24284173303979,44.24283273267978,44.24281273135684,44.24277274549988,44.24291176139911,44.24262282126996,44.2412148238474,44.17737894402999,44.16140797393339,44.16122497427573,44.15570798469111,44.14851099828766,44.11073006954625,44.10655307735356,44.06902614751198,44.06661815196745,44.04528819165138,44.04175919824135,44.03088821869385,43.98323431103422,43.98327228729998,43.98340926317255,43.98343623918997,43.98345023746668,43.983343234603,43.98340120376688,43.98334517379643,43.9833281693989,43.98338316925531,43.98318712017688,43.98283510315705,43.98280108887834,43.9828570886081,43.98279508550166,43.98271008130582,43.98253307094035,43.9825130693354,43.98238806828539,43.98244706740942,43.98242100603851,43.98259100384846,43.98246397627229,43.98245797622832,43.9824259455667,43.98250994270244,43.98241094080276,43.9823009253391,43.9822248996627,43.98224688351077,43.98224788337874,43.98225087126509,43.98200087191661,43.98210089036547,44.06850680763165,44.11198377921886]}]],[[{"lng":[-89.78489909412718,-89.77184710656876,-89.76997410835725,-89.75927311857617,-89.75891611891859,-89.74900312804537,-89.71873114493049,-89.71607414649884,-89.69978915621141,-89.65967118041311,-89.59998321608255,-89.59954521631323,-89.5849842249887,-89.57836022882334,-89.56096223907554,-89.56055223950999,-89.52237126217791,-89.50342327341019,-89.49925827523836,-89.48355926984087,-89.46941426498552,-89.40921124430407,-89.40727424365944,-89.38488523596165,-89.36474722912207,-89.34085922109765,-89.32918921699351,-89.32777721632627,-89.30695220910209,-89.25117918979019,-89.25045818954334,-89.24543519159063,-89.24528219166497,-89.2262582008142,-89.17800922423288,-89.17270622680374,-89.16887322866594,-89.16527723039799,-89.15259723651153,-89.1479342387653,-89.13804224355869,-89.13187324647717,-89.12691924889012,-89.12692924939293,-89.12697125053147,-89.12716825459725,-89.0927382701306,-89.08804227224523,-89.0818602750132,-89.07625627752596,-89.0468512907167,-89.03677129528488,-89.00684630894261,-89.00723831971669,-89.00710531985304,-89.00709232025471,-89.00708632045287,-89.00706832069565,-89.00707532078023,-89.00705532130175,-89.0069233231208,-89.00673732334631,-89.00669832389751,-89.00635232731746,-89.00608632834648,-89.00624533668621,-89.00622538299541,-89.00611541298129,-89.00604542012874,-89.00598442745911,-89.0051435268891,-89.00478056225187,-89.00467056353166,-89.00447558590423,-89.00468459264697,-89.00882859303834,-89.00888960119168,-89.00905162005216,-89.00915563723242,-89.0091616386927,-89.00934066690483,-89.00932767781002,-89.00935068490128,-89.00953069226141,-89.00937572124163,-89.00920275601388,-89.00913777204809,-89.04908077724686,-89.06893677884916,-89.12723778305583,-89.12730778305733,-89.15682778414212,-89.23623178922193,-89.24540479003895,-89.24540379008737,-89.24570879012319,-89.25535278641762,-89.34448971082507,-89.36308369455777,-89.36315767275379,-89.38292365681924,-89.40263064087839,-89.41183463336797,-89.41756862868863,-89.44237060872045,-89.48162857716871,-89.58116756184396,-89.60085356164329,-89.61558056136421,-89.62084356129107,-89.63559156101971,-89.6405425609298,-89.72046155958782,-89.72130055861324,-89.72695055053542,-89.7268875483323,-89.72516154268044,-89.72470153660905,-89.72363053321236,-89.71970852681955,-89.71635652412392,-89.70695251788065,-89.70383051446014,-89.69639150032718,-89.69036949208613,-89.68504948556638,-89.68120348182703,-89.67926747934131,-89.67761147821297,-89.67034047792507,-89.6683274783652,-89.66234148045953,-89.65575348108138,-89.65422648083549,-89.64877148002115,-89.64123347826597,-89.62697747462106,-89.6212224724411,-89.62057147216706,-89.61220146800761,-89.60282846194043,-89.60072845989492,-89.60097244309715,-89.60080344118252,-89.60086640944292,-89.60092339687665,-89.60036632583763,-89.60036232560921,-89.60039432003838,-89.60039631686604,-89.60027231310018,-89.59999630485527,-89.59935427879809,-89.60580627316774,-89.6102802702836,-89.61234326915236,-89.61771726694829,-89.62513926535367,-89.6334002633667,-89.63876426177509,-89.64220726039818,-89.65211725551049,-89.65637225313961,-89.6593732507316,-89.65952725060684,-89.66234424853107,-89.66573624675679,-89.67323724383209,-89.67766324294159,-89.68810124157689,-89.69413323996226,-89.69886323813211,-89.70292923595763,-89.7072142345464,-89.71550623028372,-89.71898422870775,-89.72778622422973,-89.73054522213019,-89.7322362199024,-89.73402921587895,-89.73468021239951,-89.7344452109663,-89.73295720896671,-89.72347420478921,-89.72003320200997,-89.71790919905477,-89.7175911966043,-89.71841319505356,-89.72106819259598,-89.72276619159916,-89.72986818979642,-89.73879318640994,-89.74030918552957,-89.74851517707914,-89.75270017016594,-89.75359316934721,-89.75618716748652,-89.75888216850427,-89.76116416727146,-89.76325616551945,-89.76829615779916,-89.76971615268081,-89.77445214596838,-89.77536214322149,-89.77476314112958,-89.77301113746829,-89.77336713527482,-89.7749431321955,-89.78116112282271,-89.7823501199962,-89.77611311874448,-89.77581111722984,-89.77604411622116,-89.7794371096134,-89.78293309971197,-89.78580709322634,-89.78489909412718],"lat":[43.64105276470529,43.64144176360038,43.64150076343416,43.64186676240848,43.64187876237516,43.64221276078767,43.6431557379878,43.64316873619101,43.64315872543323,43.64283369974351,43.6425976607747,43.64263766038093,43.64260065081364,43.64274964604096,43.64289563413784,43.64258363464293,43.64259760927095,43.6426475965789,43.64253459520008,43.64257660842145,43.64259362038553,43.64267867130826,43.64264467301734,43.64268169195475,43.64258070922254,43.64234472986342,43.64249973951613,43.6427587403216,43.64286775785544,43.64307180502343,43.64307080563805,43.64308480535846,43.64308480533649,43.64320680246784,43.64327279546962,43.64328679469313,43.64329079413867,43.64331979359063,43.64341979166124,43.64344979095939,43.64349478949121,43.64366678841852,43.64367178770284,43.64262978884078,43.6402517914405,43.63172580076889,43.63190879548934,43.63195179475017,43.63205779372424,43.63215279279579,43.63282378774706,43.63296478611382,43.63304678162388,43.55647286194102,43.55573786268816,43.55294286561526,43.55156286706056,43.5498878688129,43.54928386944717,43.54565487324706,43.53304788643589,43.53167788783761,43.52782789186502,43.50386591690889,43.49977592139766,43.4957289302364,43.47328897906804,43.45876101064863,43.45529901815763,43.45174802586182,43.40357013023873,43.3864301672707,43.3858101685538,43.37496419198256,43.37169519920771,43.37150620219642,43.36755821086135,43.35842623092402,43.35010824917672,43.34940125072642,43.3357432807163,43.33046329225196,43.32703029977632,43.3234693077039,43.30943633826962,43.29259737493957,43.28483239185618,43.28331543175096,43.28304145058801,43.28248750546039,43.28248850552211,43.28270053206928,43.28227060621278,43.28211761509984,43.28209561516432,43.28208661547163,43.28178061101069,43.28117645721086,43.28130742447303,43.29403839678789,43.29403736413974,43.29407133152305,43.29413231621135,43.2941723066729,43.29416226574414,43.29409620101779,43.29326218781078,43.29313419182928,43.29315019474147,43.29313319579876,43.29314219872085,43.29314419970269,43.29308621559179,43.29386621550317,43.30033121466583,43.30211821410531,43.30673521226191,43.31167121059678,43.31445320942368,43.31974720656394,43.32203220476898,43.32740119981954,43.33029819765295,43.34215319012473,43.34917218468522,43.3547771798892,43.35804017665905,43.36018717475131,43.361199173501,43.36177816987305,43.36150616909144,43.3600381671552,43.35982316429428,43.36010016344243,43.36103916040354,43.3628761557994,43.36666314658937,43.36881014231747,43.36907714181119,43.37306913476902,43.3787891256094,43.38066812303187,43.39510311183387,43.3967611104326,43.42406008903635,43.43486508059493,43.49603603203973,43.49623303188079,43.50160702480498,43.50589901373355,43.51102300039445,43.52226197114273,43.55785987878283,43.5625658720998,43.56435687121643,43.56490487152124,43.56535487485153,43.56417488418151,43.56319089373832,43.56293389894491,43.56318090118839,43.5648789049625,43.56586790585616,43.56733990437375,43.56741590429588,43.56857190349925,43.56917090468333,43.5694219102157,43.56871891582045,43.56641893087771,43.56595093722455,43.56612994068031,43.56684194207872,43.56676094588369,43.56798994931585,43.56829895132978,43.5694799552607,43.57043895479103,43.5718279521916,43.57470694537145,43.57746793794276,43.5787689340019,43.58097892643676,43.58795889887641,43.59170888548048,43.59516987397927,43.59748986713469,43.59854586475802,43.59966086360346,43.59985786433219,43.59861487330074,43.59806688169478,43.59823288237251,43.60213787725917,43.60574186805333,43.60591386761303,43.60599586755441,43.60381087415877,43.60360787492574,43.60389087424879,43.60706386524328,43.61002285658322,43.61233085002149,43.61376284581852,43.61551984056862,43.61901683010891,43.62034982616932,43.62159782252528,43.62444381426618,43.62564681071151,43.63016679709686,43.63139379344451,43.63194079182247,43.63429978484614,43.63866577184216,43.64105076470795,43.64105276470529]}]],[[{"lng":[-89.8449292341309,-89.7266971383542,-89.72048413050587,-89.68305408327271,-89.65538204851731,-89.64137203096135,-89.60809198963813,-89.48990285917877,-89.44649787278587,-89.43162987791739,-89.35598490683761,-89.3458849103216,-89.32528392051611,-89.26583794954865,-89.2501099574027,-89.24407896804826,-89.22374300548118,-89.22359195744203,-89.22358193460613,-89.22366892683003,-89.22360691874677,-89.22352191192257,-89.22315186800689,-89.22332882047651,-89.22340282107565,-89.22357882896772,-89.2236658391802,-89.22379484272091,-89.22385884676156,-89.22389184883038,-89.22411886303877,-89.22416286509147,-89.22440687498487,-89.22444087841274,-89.22446787881769,-89.22472088290964,-89.224810891117,-89.24699185007549,-89.28742675244497,-89.29232674046676,-89.34626560778244,-89.36491256185747,-89.36930355103807,-89.37160154550106,-89.38518551212189,-89.38879350324889,-89.41092344875509,-89.43458939047888,-89.48222927329454,-89.48753926012604,-89.52426325679448,-89.57079430916653,-89.58625032743454,-89.59320633488855,-89.59333933497879,-89.59797734024076,-89.60627434980765,-89.71706347718288,-89.72474348608118,-89.72452350090903,-89.72452954342904,-89.72463561126106,-89.72463964321571,-89.72474966486401,-89.72510869777092,-89.72583073903239,-89.72591974143073,-89.72595774294852,-89.72625077574178,-89.7263287792333,-89.72638778187289,-89.72621578727527,-89.72648980909302,-89.72665583143703,-89.72672287542451,-89.80743198240313,-89.84454399807359,-89.84443100132407,-89.84468105728688,-89.84469706164984,-89.84515410605,-89.84518010851303,-89.84511811653263,-89.84511012231933,-89.84501812553067,-89.84502212630963,-89.84505113580728,-89.84505313617709,-89.84526916994407,-89.84523717574892,-89.84512919041448,-89.84511119476971,-89.84499919544513,-89.84490720817529,-89.84488121466021,-89.84529121531972,-89.8449292341309],"lat":[44.68494539459572,44.68483532849937,44.68486432766593,44.68501432264436,44.6851533188409,44.68522431689793,44.68548231205234,44.68584730089592,44.6845183209154,44.68409232748959,44.68196535923877,44.6813803636935,44.6814243709641,44.68135839216858,44.68148839768051,44.68123538648749,44.68136534735157,44.63522935721227,44.61340636198498,44.60613336384328,44.59830636538235,44.59164136657971,44.54906037450763,44.50398438492775,44.48275841256521,44.45389245748729,44.41744351354883,44.40416753421831,44.38955355670129,44.38206956820334,44.33066364698239,44.3231636584589,44.28680571396121,44.27453573259295,44.27293673503384,44.25690675941668,44.24339377684984,44.2436927811411,44.24380975564387,44.24375775228992,44.24384771472487,44.24390670171228,44.24392269864614,44.24385369711543,44.2438486876819,44.24385168517217,44.24390766974308,44.24396065325021,44.24399162012197,44.24404361638447,44.24445262846774,44.24536066829819,44.24523668187215,44.24560168769709,44.24563768778926,44.24572569178301,44.24580069898512,44.24755779523866,44.24767880195118,44.2621587910522,44.2910947672552,44.33711572942817,44.35884371153954,44.37338569956749,44.39510368161725,44.42164965943203,44.42309165820205,44.42403965739961,44.44552063936518,44.4477026375033,44.44935063609544,44.45335563284419,44.46741362093213,44.48202760858145,44.51119257742278,44.51136355448497,44.51150355212328,44.51392954992188,44.55501051256076,44.55821350965092,44.59068448025636,44.59248447863072,44.59840447324206,44.60266146937703,44.60506046716973,44.60563146665275,44.61260146033647,44.61287246009125,44.63759743775218,44.64187843385509,44.65270842397681,44.65591842105465,44.65646842049431,44.66587241190322,44.67065340754532,44.67093540753841,44.68494539459572]}]],[[{"lng":[-89.24558811898891,-89.24529610617223,-89.24537310304527,-89.24505610330253,-89.24052610697899,-89.24333510468816,-89.24043110706624,-89.23901810823511,-89.23583811086866,-89.22977111588594,-89.22745111780372,-89.22218712209363,-89.2196591241859,-89.21539612769028,-89.20847313334353,-89.19972214054688,-89.19457414482949,-89.1909411478107,-89.1853451522754,-89.1815761553495,-89.17885115762654,-89.17501416097323,-89.17268916288798,-89.16757516696869,-89.16801617270455,-89.17024317060461,-89.17347716768047,-89.17678616457808,-89.1824831590346,-89.1849901567323,-89.18929815290461,-89.19257315003567,-89.19500114802216,-89.19795114573273,-89.19829714550565,-89.19712714665987,-89.19437314926819,-89.19622914773662,-89.1959461480965,-89.19801314619197,-89.19812114725728,-89.19824314986171,-89.19832215061822,-89.1681191816722,-89.16823818404069,-89.16848718476751,-89.16763918771858,-89.16799718828831,-89.16822819207252,-89.16830619592332,-89.16861019559505,-89.12820724519874,-89.01641238240195,-89.01634938245621,-89.00634339473903,-88.97686846008284,-88.95081952483497,-88.94820453141988,-88.94676753498399,-88.92647658543682,-88.90625363560292,-88.88619168544749,-88.88593463635098,-88.8859256118147,-88.88582460307796,-88.88569558699459,-88.88538855594976,-88.88542354646404,-88.88570248831392,-88.88552446333964,-88.88544545048848,-88.88529343114385,-88.88517941283141,-88.88521540639897,-88.88605038132251,-88.89605737521731,-88.9106633663139,-88.95181634128738,-88.95578533887839,-88.96392433394202,-88.96906133082761,-88.97042832999799,-88.97485332731695,-88.99577631464491,-88.99842731303565,-89.00684630894261,-89.03677129528488,-89.0468512907167,-89.07625627752596,-89.0818602750132,-89.08804227224523,-89.0927382701306,-89.12716825459725,-89.12697125053147,-89.12692924939293,-89.12691924889012,-89.13187324647717,-89.13804224355869,-89.1479342387653,-89.15259723651153,-89.16527723039799,-89.16887322866594,-89.17270622680374,-89.17800922423288,-89.2262582008142,-89.24528219166497,-89.24543519159063,-89.24542618519899,-89.24536315094093,-89.24557413124448,-89.24558811898891],"lat":[43.73063270619939,43.74637968832878,43.75981465831446,43.75981465828831,43.75985065781998,43.76330364894741,43.76442164579167,43.76649464024588,43.76773263679129,43.76792663589849,43.76792663575138,43.76622363982295,43.76648163898666,43.76631563912863,43.7655226406892,43.76563263980608,43.76619363803707,43.76608463806586,43.76472664108206,43.76455564124072,43.76491164016169,43.76649863596189,43.76649063582641,43.76552363786217,43.81011952820995,43.80948252970026,43.80947352961162,43.80854653179726,43.80486754078797,43.80431754210388,43.80457154137104,43.80524353960499,43.80711253483059,43.81159752339948,43.81267852065025,43.81376451795384,43.81487251528224,43.81682351026724,43.81800450729963,43.81796050729866,43.83237047083185,43.86611838542042,43.87651335910029,43.8764713649992,43.89474132003227,43.90203730202142,43.9168702657668,43.92392324831778,43.95356717532431,43.9825091040934,43.98283510315705,43.98318712017688,43.98338316925531,43.9833281693989,43.98334517379643,43.98340120376688,43.983343234603,43.98345023746668,43.98343623918997,43.98340926317255,43.98327228729998,43.98323431103422,43.93924940122763,43.91753344561825,43.90962446189928,43.89518549155743,43.86727854894414,43.85896756588769,43.80803366965461,43.78576871535923,43.77434173880144,43.75712577415651,43.72082781770968,43.70279483551182,43.63354190313188,43.63348289238572,43.63339187670675,43.6331328325403,43.63310782828125,43.63309481950841,43.63320581384858,43.63318781239138,43.63296180784783,43.63292078530536,43.6329517824114,43.63304678162388,43.63296478611382,43.63282378774706,43.63215279279579,43.63205779372424,43.63195179475017,43.63190879548934,43.63172580076889,43.6402517914405,43.64262978884078,43.64367178770284,43.64366678841852,43.64349478949121,43.64344979095939,43.64341979166124,43.64331979359063,43.64329079413867,43.64328679469313,43.64327279546962,43.64320680246784,43.64308480533649,43.64308480535846,43.65080979660614,43.69223374967232,43.71585072294391,43.73063270619939]}]],[[{"lng":[-88.88521540639897,-88.88517941283141,-88.88529343114385,-88.88544545048848,-88.88552446333964,-88.88570248831392,-88.88542354646404,-88.88538855594976,-88.88569558699459,-88.85482564740808,-88.84758466152189,-88.8371856817861,-88.7648378233598,-88.67449198346637,-88.65404101892402,-88.64451703546784,-88.64441903563838,-88.63662004922327,-88.63121605864049,-88.63035806008779,-88.58358714064107,-88.54406420812582,-88.52400624297043,-88.50892526907769,-88.50715827212981,-88.49341930157435,-88.46756936832629,-88.40319453430857,-88.40377361778107,-88.40418668075742,-88.31494794629737,-88.23147317024936,-88.16165428417699,-88.16186520274772,-88.16227406511813,-88.16130979280733,-88.16119772438573,-88.16118670717694,-88.16116868997895,-88.16116067356367,-88.16115165591238,-88.16113462210073,-88.16106758788379,-88.16090955410296,-88.1607485197349,-88.1607085026115,-88.16066446867326,-88.16043732646516,-88.1606162689652,-88.16072916901035,-88.16022203498513,-88.15992592295984,-88.15997391954572,-88.16003386651732,-88.16014482565225,-88.16041773275515,-88.16073172924271,-88.1603937273081,-88.16087156709118,-88.23638951907506,-88.24492951355715,-88.26568050626879,-88.27067850496222,-88.28103150227727,-88.29088149999278,-88.39104547609307,-88.40042447389695,-88.40087067420316,-88.40095169366919,-88.401039723916,-88.49069666241738,-88.4911446621029,-88.50075565530352,-88.51304364588442,-88.521833639183,-88.54170162412959,-88.55066961733044,-88.58529559114615,-88.59091258689297,-88.5966385825528,-88.60161857877154,-88.63511355316187,-88.6446465458362,-88.67463852263447,-88.71514549103327,-88.71622949017927,-88.71688148966632,-88.71724348938228,-88.72812648084572,-88.72979247954072,-88.73680147402494,-88.74483946771342,-88.75600146003367,-88.75830045864829,-88.76400845517108,-88.76538845432658,-88.76541345431141,-88.87074539055153,-88.88605038132251,-88.88521540639897],"lat":[43.70279483551182,43.72082781770968,43.75712577415651,43.77434173880144,43.78576871535923,43.80803366965461,43.85896756588769,43.86727854894414,43.89518549155743,43.89511352760974,43.89505753614587,43.89497954839965,43.8949006327062,43.89471372757818,43.89465074861722,43.89463675838498,43.89463675848522,43.89464276645076,43.89464877196676,43.89462777288367,43.89425982138892,43.89372286274437,43.89371288325481,43.89366789874033,43.89365990055931,43.89360892012188,43.89341696823608,43.89297908803805,43.91873703961217,43.93820200308679,43.93766716393768,43.9375323329652,43.93768553014456,43.92051656261873,43.8915136173512,43.83353473166118,43.81901175992548,43.81536476697673,43.81171777404656,43.80823978076419,43.80449978798885,43.79733580182686,43.79006981599314,43.78286683027663,43.77553884480577,43.77190085191303,43.76470186588426,43.73181089617055,43.71756589681912,43.69272789846791,43.65922990230081,43.63128990514711,43.63045290509785,43.61727990596434,43.60714190648353,43.58409090763391,43.58327990698582,43.58273090779331,43.54294590982186,43.54292174490959,43.54289472626677,43.54287168616062,43.54286167690715,43.54284665773792,43.54291063947757,43.54345845376541,43.54353443636153,43.61353140847856,43.62034840568801,43.63093540142518,43.63177322807947,43.63177522721399,43.63181620962806,43.63185420181944,43.63189919622351,43.63205318354113,43.632126177811,43.63248215561801,43.63254415201099,43.63260714833281,43.63266014513396,43.63295412363888,43.63302711752253,43.63318109832297,43.63322707250521,43.63322107182044,43.63321807140806,43.63321707117853,43.63318806427765,43.63318506322006,43.63314605879465,43.63311205371094,43.63310104395828,43.6331110414672,43.63309303532204,43.6330840338407,43.63308403381371,43.63334791984775,43.63354190313188,43.70279483551182]}]],[[{"lng":[-92.80291183140714,-92.80216383282173,-92.80085183475616,-92.79231080631054,-92.79224021767551,-92.79152884901778,-92.78471785495998,-92.77401087635323,-92.76560289320003,-92.75438791688386,-92.74674990836266,-92.74493889889301,-92.74050987820949,-92.73958487527788,-92.73952887604152,-92.74061188487509,-92.74292590051591,-92.74566115357071,-92.74566317424295,-92.74569492089849,-92.74942796073228,-92.75210296427304,-92.74905997061094,-92.75097498446843,-92.74979399219329,-92.75242499066894,-92.75242259169438,-92.75240499944053,-92.7573947048552,-92.76487297502359,-92.76711697335175,-92.76693298035082,-92.76390899848518,-92.76210900631401,-92.75800902169188,-92.70256777837184,-92.69224671988228,-92.68879870041624,-92.68518067985038,-92.67309861139005,-92.65154348912301,-92.64299244080304,-92.61026425505256,-92.55999297011581,-92.55228992594859,-92.54474788291787,-92.53966285381752,-92.53735884050705,-92.51872173438385,-92.43228004930785,-92.41197587591729,-92.40650082916589,-92.34667731845893,-92.34439729899621,-92.28392978279584,-92.23950248489086,-92.15646241996831,-92.15649142344904,-92.15646842529931,-92.15648942650904,-92.15659143221596,-92.1566494344259,-92.15666043533999,-92.15672743818186,-92.15678944059199,-92.15706944473827,-92.1361104196728,-92.13647042830304,-92.13632042825377,-92.13635742949216,-92.13648443415708,-92.13646443477026,-92.13644643537812,-92.1364264360012,-92.13642543602361,-92.13627244093284,-92.13609644109889,-92.13586644217619,-92.13566644307146,-92.13557244347894,-92.13544444400888,-92.13541244409848,-92.1353764441597,-92.13525644474497,-92.1352794452915,-92.1361384507813,-92.1362524529835,-92.13634545383967,-92.14034746556673,-92.15280450206235,-92.15663051324766,-92.17245755958585,-92.18095958456507,-92.19732463240517,-92.20190564585873,-92.21618968759958,-92.21854369463199,-92.23317373746718,-92.23503574295773,-92.2364767472763,-92.25088779204492,-92.25106379312116,-92.25836083765179,-92.35408941984305,-92.3749155464553,-92.40017770102236,-92.4049827303063,-92.41547079455313,-92.42564485677349,-92.43158889312707,-92.43574391853886,-92.49701329326139,-92.55243650723931,-92.57971060904903,-92.57984160953799,-92.61849475397777,-92.62386577406912,-92.6245067764474,-92.63633082062475,-92.64966487056114,-92.64970887070464,-92.65207887950598,-92.65389588634814,-92.65752989982894,-92.65794090136419,-92.65990990870536,-92.66496192765473,-92.68534600374569,-92.69413403620224,-92.69498603865806,-92.69820405152041,-92.7661082535447,-92.76909073516568,-92.76909288917017,-92.76910225637464,-92.76710227339233,-92.76370629264328,-92.76340230062131,-92.7641333080464,-92.7696033395973,-92.77394637006907,-92.77490738171008,-92.77457140248407,-92.77402241012081,-92.77310341473625,-92.76784774591729,-92.7647271571693,-92.76134143086951,-92.75955643381789,-92.75870143791646,-92.75755744637235,-92.7555923092261,-92.75234934335099,-92.75064554900754,-92.75080256639934,-92.7527179535456,-92.75330631883858,-92.75460362520377,-92.75473143232618,-92.7592752991436,-92.76070166406645,-92.76721867817207,-92.76854568550283,-92.76944569493041,-92.76971246343876,-92.77030180676462,-92.77030472227425,-92.77031801611503,-92.77034673964307,-92.76904975880953,-92.77032316190802,-92.77083478273106,-92.77123180727595,-92.76999855544688,-92.76811881375757,-92.7674884171271,-92.76399029079587,-92.76253382492904,-92.76190482692542,-92.76206082869038,-92.76460483216377,-92.76475219039085,-92.7703628344771,-92.77881583489433,-92.78497588484025,-92.78634042364713,-92.78791083270897,-92.79328283142507,-92.79708183051332,-92.80172332737403,-92.80205682945486,-92.80307982981076,-92.80291183140714],"lat":[45.06540391111892,45.06755591607547,45.06947792217208,45.0787949588002,45.07887196089631,45.07964796229027,45.08333809097787,45.0891390278717,45.0957310656133,45.10314711579101,45.10705214366363,45.10831014944706,45.11339716821278,45.11559917476237,45.1165161769774,45.11845517980719,45.11991917964868,45.1230742329922,45.12307656379256,45.12311318285174,45.13811821234505,45.14207021284886,45.14846723716619,45.15759525328831,45.16330227091207,45.16616026719029,45.16709111977661,45.17391728516522,45.17747746584401,45.18281324997928,45.18788025035961,45.19511226607283,45.20486730079386,45.20716731443935,45.20956733977737,45.20991744207296,45.20998145570757,45.21005546037707,45.21003146505367,45.21010548100545,45.2101415092518,45.21027352070021,45.21024756340767,45.21041962941002,45.2101736390185,45.21005164865198,45.20992565507069,45.20980465786494,45.20963468193854,45.20932088058961,45.20927893288573,45.20926794698724,45.20925410127408,45.20925710716185,45.20928126319409,45.20932233145481,45.20955617864654,45.1969131542581,45.19007514099849,45.18571913261393,45.16522309315469,45.15737507806941,45.15408407172141,45.14399105230044,45.13547103590855,45.12161000947588,45.12138998018023,45.07543289672907,45.07451389488121,45.06784688274872,45.04274183702771,45.03912783040715,45.03555782386959,45.03188081713548,45.03174581688801,45.00268076368955,44.99996475857204,44.98198871076842,44.96619666879698,44.95871964893269,44.94862062210942,44.94659761673382,44.94480861197616,44.93384258287394,44.92750856611337,44.88674445847172,44.86465439994545,44.85784938192715,44.85781238283792,44.85779938594304,44.85789238716033,44.85793639127647,44.85775539291618,44.85794239757278,44.85788039855153,44.85801140253828,44.85782540258858,44.85785040635178,44.85780940669906,44.85770140673952,44.85799441026712,44.85799441011584,44.85808440411114,44.86146132925666,44.86230231251938,44.86227728990705,44.86239928583786,44.86230627629961,44.86232926724925,44.86234026195611,44.86234825825595,44.86246720363464,44.86245607017138,44.8624840021894,44.8624840018627,44.86259290564349,44.8626128922846,44.86260289066978,44.8626108612021,44.86267382806837,44.86266382794087,44.86263882198752,44.86266381750241,44.86262080836448,44.86262080733974,44.86261480241953,44.86264778988451,44.86262573902145,44.86250071686215,44.86225771425304,44.86254170679459,44.86196856437117,44.86199739449595,44.86202920910964,44.86216756257801,44.86676757409391,44.87212958845267,44.87416759316625,44.87590559639579,44.88296760732805,44.88999761883625,44.89279762401959,44.89808463567152,44.9000836404626,44.90136764406018,44.90384178088982,44.90531081636643,44.90690466696611,44.90785767073972,44.90897967402677,44.91121468006668,44.91863098314857,44.93086973214004,44.93729974532085,44.94156775475218,44.9487232740908,44.95092129413907,44.95576778235358,44.9559608544108,44.96282505497783,44.96497979573445,44.9680847948204,44.96983979705401,44.9721508009897,44.97426780525878,44.97894467800636,44.97896781471958,44.98034727449542,44.98332782411234,44.98819583631351,44.99243047660158,44.99413184688095,45.00137886178829,45.00444397996161,45.00911588174808,45.01040670522463,45.01756959965544,45.02055191441871,45.02246791958174,45.02432092328102,45.0287679281676,45.02889680897439,45.03380392774407,45.03932792185433,45.04216512776582,45.04279360924148,45.0435169107488,45.04717890547949,45.05064890269964,45.05696973543302,45.05742390161639,45.06097890435399,45.06540391111892]}]],[[{"lng":[-91.65045101035473,-91.63869297150897,-91.63035894374482,-91.62715093306169,-91.62104491277923,-91.56920173990886,-91.55393168880873,-91.54704766588677,-91.53864763794321,-91.52871460517207,-91.52846060431143,-91.52384358874821,-91.51474655809224,-91.51446555709374,-91.49471052223718,-91.47811456555739,-91.46471260058198,-91.46447660120171,-91.44250765935431,-91.43745567282613,-91.43738567301,-91.42691470026818,-91.41721672555217,-91.41709572586512,-91.40695675228272,-91.38759180291505,-91.34695790958878,-91.26703911804105,-91.246718171399,-91.2268252218939,-91.22648122277027,-91.14575642983623,-91.14082544230243,-91.10511853469397,-91.08489658699753,-91.04062270075839,-91.03412271750656,-91.02386274392354,-91.00452679371398,-90.92224401941237,-90.922063951211,-90.92197591697521,-90.92152474674718,-90.92152474650993,-90.92173269767487,-90.92172875371196,-90.92173581004792,-90.92164183582787,-90.92234697635539,-90.94263990638095,-90.97298280168556,-91.00930367913631,-91.04361457098588,-91.04381157041452,-91.12378931867198,-91.12567031250084,-91.13096529575726,-91.1656151858742,-91.21818102016573,-91.28644891302612,-91.29234891217344,-91.33715090509784,-91.34298790428214,-91.40514189211157,-91.40541089185668,-91.40761089142244,-91.5085139083067,-91.5089539100334,-91.52909699713248,-91.63128243338795,-91.65024451454529,-91.65035700260513,-91.65028595973736,-91.65025093828615,-91.64961472347126,-91.64966978661137,-91.64984685340325,-91.65005590492206,-91.65044800341508,-91.65045101035473],"lat":[44.85595261280213,44.85617859828837,44.85627558788239,44.85631358388284,44.85639857630877,44.85691951182177,44.85701949276286,44.85709148426854,44.8571844739345,44.857357461952,44.85735646162737,44.85735745579269,44.857361444304,44.85734944390565,44.85736141838741,44.85730039535549,44.85726237680536,44.8572623764811,44.85736134662907,44.85740433982748,44.85740433973124,44.85735232516562,44.85731331171088,44.85731231154141,44.85726929747329,44.85722527073404,44.85722121490387,44.85698010458966,44.85701907589737,44.85693104302005,44.85693004245272,44.85694190979628,44.85690790164186,44.85707184316728,44.85716681002391,44.85722973725389,44.85724972657678,44.85727770971749,44.85733367793772,44.85730960679999,44.83564960309003,44.82476460124574,44.77048359222597,44.7704085922139,44.74140060581737,44.71245066257644,44.68332271968661,44.67019074541215,44.59629389050407,44.59637889654007,44.5965169055365,44.59663091693818,44.59666092934949,44.59664092945818,44.59656795863175,44.59666695916638,44.5966929610528,44.59698797326153,44.59703699238933,44.59679996529815,44.59667895905432,44.59608091112304,44.59598590483196,44.5959678378591,44.59601483760705,44.59601483523771,44.59628375400322,44.59631375497723,44.59619779674448,44.59661301062031,44.59665005023919,44.68363423743139,44.69086325280865,44.69448126050523,44.78046344542992,44.79719048238309,44.8147755214141,44.82827655145137,44.85410960875386,44.85595261280213]}]],[[{"lng":[-89.01357663355805,-89.01324363316483,-89.0133056338921,-89.01324763458183,-89.01325063460629,-89.01305763444915,-89.01303363481489,-89.01245763455489,-89.01260163687559,-89.01264863742412,-89.01254364221396,-89.01254164230095,-89.01252564338525,-89.01255164403344,-89.01255864458754,-89.01255364532744,-89.01248864825257,-89.0124316503254,-89.01243065038798,-89.01234165392827,-89.01235665397536,-89.01209765939591,-89.01130169426881,-89.01130569488032,-89.01206872667061,-89.01206872670096,-89.0120197267924,-89.01152873189741,-89.01090974643229,-89.00964677309986,-89.00883079783331,-88.99028677351923,-88.97043473631184,-88.96125671913303,-88.9060396152763,-88.90094460559031,-88.89152058792723,-88.89057458618014,-88.89053558610684,-88.87510455704577,-88.87380155470173,-88.87245555227187,-88.83209647627254,-88.77220436367023,-88.76701935392312,-88.75979234034715,-88.75876733842195,-88.73455929874645,-88.7307712930297,-88.72442828346803,-88.72236428034253,-88.72028827721289,-88.71644727140736,-88.71147226388321,-88.70707125723567,-88.69961524597063,-88.69417723777269,-88.69380423720992,-88.69144023364248,-88.6870232269786,-88.67326120623545,-88.65424517766911,-88.65221917455492,-88.6324061446812,-88.58029706604258,-88.55229302354945,-88.54855501787391,-88.53591999861423,-88.53584099849353,-88.53689698656923,-88.53708998559266,-88.53828796835813,-88.5384579644773,-88.5387729589328,-88.53887295606313,-88.53899495335411,-88.53931595347274,-88.53917095228326,-88.53926594812721,-88.53930994656253,-88.53961693787494,-88.53991792748349,-88.54003891834203,-88.54019891102782,-88.54091488636242,-88.54092188634971,-88.54136987869522,-88.54157687556095,-88.54170886584924,-88.541628870849,-88.54158887718822,-88.54154988262823,-88.54168589002862,-88.541852895761,-88.54192190268446,-88.54202392096786,-88.5420559243546,-88.54214894333593,-88.54216596527127,-88.54187397422167,-88.54204697636636,-88.54153299527039,-88.5499500085464,-88.55513701669204,-88.55790802105324,-88.56066902540873,-88.60193009013324,-88.60917410152142,-88.65230516894482,-88.65927717984158,-88.65937517999487,-88.66269518518355,-88.69811824056016,-88.69850524116522,-88.71112226089336,-88.71757027097688,-88.71779227132384,-88.72348428022497,-88.73376029629577,-88.73468129773627,-88.75289132477812,-88.76291833546804,-88.77171734484975,-88.77502434841146,-88.77707435059679,-88.82694840360195,-88.83151640847325,-88.83652441381383,-88.86513044425556,-88.89483647595056,-88.91867050146637,-88.95390853921485,-88.96987755632524,-88.98772957547247,-89.00010858900704,-89.01351663331096,-89.01358063352241,-89.01357663355805],"lat":[42.84928678603254,42.87282181508904,42.89036883722262,42.91963987388498,42.92013587451289,42.93535089328203,42.949941911553,43.00000297326989,43.00224497801454,43.00272897906913,43.00882999102162,43.00894099123895,43.0102919939001,43.01097399530811,43.01161099659038,43.01251199837588,43.01622900565895,43.0188960108664,43.01897401101994,43.02349101985611,43.0234970198958,43.030788033954,43.07422411923337,43.0749311206517,43.110652193146,43.11068819321778,43.11089819356145,43.11791520681466,43.13607024215884,43.16872430573729,43.19772636282824,43.19785934485557,43.19796832973708,43.19805032280296,43.19796127997529,43.19780027576409,43.19786826860268,43.19791526795083,43.19791526792071,43.197814255838,43.19798825511358,43.19815625434472,43.19789922275903,43.19773217628811,43.19771117225987,43.1977171666901,43.19771916590154,43.19782115925294,43.19775015916687,43.19768115908293,43.19761115899896,43.19759115897475,43.19750615887293,43.19738915873332,43.19731915865,43.19720215851143,43.1971751584797,43.19717215847618,43.19715115845153,43.19711815841291,43.19707415836233,43.19723315854843,43.19709615838962,43.1970281583129,43.19679215805311,43.1963781575994,43.1963241575411,43.19605215724675,43.19605015724459,43.17818613753228,43.17649813566774,43.15113710765448,43.14561510155337,43.13755609264562,43.1335180881832,43.1296420838986,43.12908308327061,43.12782308188368,43.12207407553026,43.11989007311622,43.10760705953507,43.09303804342479,43.08054302961229,43.07038401837723,43.03559197987492,43.03555697983569,43.02413696717466,43.01938896190745,43.00599794708882,42.98874191690324,42.98123390119466,42.97478188769524,42.96642987020921,42.96009185693849,42.95213684029105,42.9309417959437,42.92704178778398,42.90499274165634,42.87931868794676,42.8682686648123,42.86608766025996,42.84299761190552,42.84287861242744,42.84284561283402,42.84281561302573,42.84277261318983,42.84254661651765,42.84246161701301,42.84252562111052,42.84254262178525,42.84254262179426,42.84255162211723,42.84263562553573,42.8426366255732,42.84266662678922,42.84268062740781,42.84268162743008,42.84269562797905,42.84272062896911,42.84272262905737,42.84276763201952,42.84279963718402,42.84282664171276,42.84268864315059,42.84269564420745,42.84386267154309,42.8439156739438,42.8439776765807,42.84496969260504,42.84593570899974,42.84612272121394,42.84610773884296,42.84650474735471,42.84694875683267,42.8472577634914,42.84762978386109,42.84763178395868,42.84928678603254]}]],[[{"lng":[-91.55177628200927,-91.55157428981343,-91.55095221796144,-91.55064519260098,-91.55065116585176,-91.55128300824775,-91.5305670622804,-91.50953511960297,-91.48845414342868,-91.42628413959427,-91.37518413595747,-91.37178413586179,-91.3281151326487,-91.30166613082844,-91.28038212863162,-91.25918212738978,-91.23838213244957,-91.1755291651159,-91.12518319202572,-90.98438426777575,-90.96648428024339,-90.96448028168783,-90.92458431019109,-90.9246573127991,-90.92480431809514,-90.92488132546598,-90.92428132807845,-90.92463533671412,-90.92463733674334,-90.92477933860421,-90.92407834750051,-90.92457735342199,-90.9248773539081,-90.92572735734798,-90.92627635500097,-90.92518634811213,-90.92325934844715,-90.67696938554229,-90.67746838486663,-90.67886638343231,-90.67741238041563,-90.67866237994225,-90.67791137899843,-90.67786137890791,-90.67781137890312,-90.67790637725506,-90.67735837285831,-90.67803536855432,-90.67775436134413,-90.67775233883776,-90.67875031508484,-90.80305420611825,-90.92583411440698,-91.04993610819953,-91.05025410851852,-91.12515518272771,-91.17502323213056,-91.18927424621795,-91.19000924693303,-91.19090524780812,-91.19275124998526,-91.29801618985243,-91.37388900069365,-91.37516099683735,-91.40478592227414,-91.41933888530413,-91.41955488476643,-91.53257562636317,-91.54029461294242,-91.54047266324714,-91.54055975861213,-91.54068379131233,-91.54123714907342,-91.54084615874724,-91.54044716788486,-91.54063917310013,-91.54017518001301,-91.54095619884835,-91.54118920337636,-91.54141720787145,-91.54138022685019,-91.54145123719509,-91.54132224203912,-91.54213225576113,-91.54217228154231,-91.5418042857538,-91.541807291122,-91.54843728434383,-91.5491412836228,-91.55180528092247,-91.55177628200927],"lat":[45.98508161603561,45.99756363534834,46.04111160960569,46.05547759922913,46.07034558856672,46.1570465267389,46.15765051451928,46.15668350335937,46.15718249354019,46.15676047228551,46.1568024545199,46.15665245338604,46.15680443817658,46.1567544289938,46.15775442168093,46.15745541435505,46.1579094111698,46.15725741038091,46.15545440946065,46.15465441629877,46.15515442600293,46.15510942706076,46.15461744819855,46.14594544476443,46.12838143781771,46.10425442834646,46.09675342565957,46.06800141425623,46.06790341421716,46.06165441172268,46.03335540084377,46.01355539295105,46.01175539217718,45.99995538739827,45.9954553864227,45.98120138390851,45.98103438426618,45.98155540752275,45.96745540469805,45.93895639904718,45.87495838562607,45.86845838447813,45.84710937996221,45.84509137953867,45.8448313794775,45.81131137258227,45.74699835672246,45.73914634860202,45.72513433389607,45.68196428871316,45.63826524313528,45.63846624991546,45.63909823952022,45.63886319275436,45.63886419250073,45.63864413263855,45.6385620928845,45.63853408153585,45.63852908095222,45.63852408024034,45.63863107872095,45.63902105398491,45.63857708775361,45.63839408838886,45.63804510154494,45.63778810800333,45.63778710809827,45.63751120792878,45.63760622323306,45.64843522408045,45.66885822518704,45.67588122575638,45.76655225726535,45.78117728040764,45.794906302158,45.80280031539132,45.81307833147535,45.84178137955377,45.84875939124527,45.85570940286001,45.88445844965922,45.90021147539059,45.90742548703432,45.92919452305186,45.96856858699583,45.97441759637498,45.98258760966157,45.98305061205997,45.98310061231318,45.98334161334668,45.98508161603561]}]],[[{"lng":[-90.42991111993301,-90.42953424949494,-90.42953524959538,-90.42954225761359,-90.42957626526382,-90.42967628623705,-90.42968328788024,-90.42982430604808,-90.42707630246156,-90.42040229535205,-90.4162472891673,-90.40977127757782,-90.40866227619826,-90.40517927338165,-90.40089426879058,-90.39418926328241,-90.38708025429771,-90.38208724925539,-90.37722924538589,-90.37090623966043,-90.36031122869329,-90.35601922390697,-90.35265322198316,-90.3505122195554,-90.34567221245328,-90.33549819919581,-90.33311719555195,-90.33104719185015,-90.32625718284068,-90.321602175207,-90.31574616778417,-90.31243616266507,-90.31091615972863,-90.29981014848295,-90.29644614306764,-90.29253313563544,-90.2883981237612,-90.28597611474899,-90.2849541085548,-90.2846191029298,-90.28355409953454,-90.28070509380147,-90.27836809020903,-90.27159208529014,-90.2709030848557,-90.2690450834253,-90.26067907435382,-90.26007607338717,-90.25529906218442,-90.25154605118887,-90.24487303872007,-90.24200503346468,-90.23191500733935,-90.22615299281813,-90.2208859815543,-90.21844597714839,-90.21290696904587,-90.20989296268445,-90.20742995847598,-90.19900294601757,-90.19381293669696,-90.18731992601519,-90.18571491990589,-90.18326991449378,-90.17861691133908,-90.17298191051663,-90.16579690952055,-90.16077390705622,-90.15898190562342,-90.14919489560587,-90.14278988843661,-90.13506588024914,-90.12801987091837,-90.12275086314101,-90.11679085648493,-90.11327485231654,-90.10467884421726,-90.09819983777292,-90.09138283287305,-90.08793782991873,-90.08238582332486,-90.08026681995533,-90.07541681086512,-90.07194280581533,-90.0696238029082,-90.06677479865206,-90.06213979126309,-90.06104278996756,-90.05865878770221,-90.05342778424796,-90.05182978482443,-90.05278178784569,-90.05255978937619,-90.04893678988705,-90.04906379162533,-90.04984279472485,-90.04861179485904,-90.04253579058508,-90.0355407853942,-90.03500378506682,-90.03105978273294,-90.02926478190324,-90.02721178193747,-90.02492278059972,-90.01884177525739,-90.00752676515411,-90.00012175778265,-89.99476975982635,-89.98990976165123,-89.9827097641959,-89.97719876617289,-89.97006876909862,-89.96788777011965,-89.96623777075851,-89.95969477354512,-89.95601577495884,-89.95245977606477,-89.94984277701995,-89.94049178200825,-89.93749678354267,-89.93161178623501,-89.92854278801177,-89.92177179271363,-89.91601679571102,-89.91233079820844,-89.9052748021122,-89.90392380262399,-89.89372280401996,-89.89017380343793,-89.88234780041896,-89.87641980023241,-89.87004880299436,-89.86793080649876,-89.86613680764428,-89.86023580788202,-89.85960680774903,-89.85888780826407,-89.85446480492517,-89.85129280414203,-89.8419717965923,-89.83829278833016,-89.83813378800203,-89.83800686579579,-89.8379108910965,-89.8379769042804,-89.83798596134562,-89.83799396974635,-89.83796201919773,-89.83820811205943,-89.83822713444184,-89.8382612476404,-89.83828025344636,-89.83851338209352,-89.83855238262606,-89.83850139590614,-89.83851540801642,-89.83851644303344,-89.83852145860276,-89.83856049652258,-89.83856651381963,-89.83815261247823,-89.83814263617253,-89.83798467709049,-89.83794971637541,-89.83808578028984,-89.83816680519396,-89.8384099493987,-89.85675090844063,-89.85690390809333,-89.86375089280787,-89.86399989225355,-89.87512286789115,-89.95109469522021,-89.95620768341989,-89.99495159348783,-89.99591059134724,-90.0105275854097,-90.03516359567652,-90.0510546001471,-90.06575260631708,-90.07309160939944,-90.08298461323062,-90.09079861583382,-90.1050026198721,-90.10762062224759,-90.11429262442529,-90.11770262413729,-90.12512062788288,-90.13750063079522,-90.1474116339722,-90.14931463526031,-90.15211463592044,-90.19080064845424,-90.19621065014738,-90.24963767048658,-90.25014067042434,-90.2575206597288,-90.28988361241332,-90.2997025980105,-90.30863658488713,-90.32919655492397,-90.34209353588551,-90.42264541537992,-90.42323841447759,-90.42690140887441,-90.42693739870212,-90.42722233501206,-90.42729732077757,-90.42735530834432,-90.42736127886711,-90.42742323428112,-90.42743817011589,-90.42765412672767,-90.42765512645069,-90.42831001701221,-90.42842299554006,-90.42847096309173,-90.42848695386085,-90.4284989458708,-90.42849794455998,-90.42850293484389,-90.42855292005275,-90.42838985719223,-90.42850387413488,-90.42860092244587,-90.42860492299772,-90.42887597366153,-90.42907597714823,-90.42983610726834,-90.42984010790659,-90.42986411203817,-90.42991111993301],"lat":[43.11831864011873,43.17601769530726,43.17606169534757,43.1796156987011,43.18299070185053,43.19223871047707,43.19296371115475,43.20094171853724,43.20097372190524,43.2017657307288,43.20147573550352,43.20014674221353,43.20018974360127,43.2010067485288,43.20150875414409,43.20305676349476,43.2032827722352,43.20401977879135,43.20521378547993,43.20646179389848,43.20793980745592,43.20838481281309,43.2095818175167,43.20978782015856,43.20950582568629,43.20968883775671,43.20947884044773,43.20904584266297,43.20783184771567,43.2071738529199,43.20737085995924,43.2070458637467,43.20661886537204,43.20834187922583,43.20790888304725,43.20686088732329,43.20381989125868,43.20104389330571,43.198720893834,43.19623089348399,43.19527689451309,43.19433289777334,43.19409190061356,43.19605190953535,43.19628391044396,43.19678491285767,43.19777192337075,43.19769092409576,43.19531392954967,43.19236193373241,43.19015394289082,43.18917694700436,43.1816159613722,43.17727396987681,43.17423797786585,43.17323598161998,43.17195199021125,43.17013399493931,43.16917999882024,43.16691701218281,43.16446602059612,43.16185703122274,43.1590530341539,43.15713603836298,43.15791404577195,43.16084405433159,43.16482306498222,43.16654507253305,43.16679607529854,43.16665909077099,43.16610610105098,43.16574611338104,43.16390112523241,43.16177213447459,43.16103614432314,43.16036915025567,43.16052816397573,43.16033717446901,43.16197918451705,43.16238118979707,43.16114519938195,43.15974020361027,43.15484621441901,43.1527782213832,43.15187122576384,43.14990923172466,43.14596324203512,43.14554324415028,43.14529324830441,43.1466912560522,43.14930525683418,43.15216125321876,43.15444225195075,43.15968525402485,43.16187925221681,43.16503624867465,43.16688424927072,43.16952025684674,43.17253426541065,43.17289326595926,43.17576726974432,43.17753727105607,43.18129827108588,43.18332427285338,43.18594027974061,43.19163329142951,43.19462629946588,43.19535629755813,43.19568129596543,43.19563029409744,43.19392029410729,43.19280229310169,43.19210929307312,43.19236829240003,43.19219229072218,43.19251128944709,43.1932752878713,43.19344628702249,43.19162828578339,43.19130728517285,43.19116728361163,43.19070728305952,43.18913228217345,43.18892028064058,43.18833727993299,43.18802627805318,43.18814227758736,43.1904512733119,43.191773271584,43.1953032675804,43.19651826540011,43.19622026386642,43.19488326392299,43.19465426354488,43.19553926157261,43.19569926133645,43.19558326119496,43.19769125915295,43.19843825803576,43.20247625418233,43.20592525208678,43.2060592520036,43.17661826227365,43.16707326557702,43.16206126735424,43.14045927491281,43.13727527603022,43.11857928255191,43.08320729508705,43.0747032980817,43.03174031317526,43.02951331397307,42.98442128636611,42.98421528589184,42.98027927620498,42.97661926724431,42.96608224141777,42.9613922299246,42.94994120187,42.94473118909857,42.91545511735819,42.90832809992399,42.89614907018272,42.88434204133942,42.86496699388974,42.85739897531435,42.81380086830981,42.81359784243656,42.81359784222487,42.81352583255203,42.81352283219898,42.81328381610193,42.8133857110825,42.81343170417614,42.81385665237666,42.81384865101737,42.81396660554196,42.81374951005166,42.81404345054723,42.81390639351592,42.8138383650288,42.81381132695034,42.81387329730824,42.81412024416668,42.81384723266265,42.81390820740867,42.81421119599067,42.8140211665156,42.81434912090521,42.81444708349894,42.8143360755749,42.81440906526844,42.81475791921063,42.81481689886527,42.81472269379185,42.81471969243834,42.81463469459898,42.8143037045227,42.8142007075749,42.81410571036803,42.81381171646761,42.81366472057532,42.81287474791972,42.81287174813927,42.81286274953639,42.81625076375654,42.83746585273026,42.84221087260829,42.84636088998634,42.85624993139517,42.87119599395606,42.89273108410372,42.90728014482391,42.90737314521211,42.94421429844505,42.95146732855991,42.96241937418827,42.96553638716795,42.96823439840488,42.96867640025069,42.9719554139228,42.97695843470636,43.0024895335146,43.00995654030708,43.03135756026793,43.03160056048899,43.05395458104241,43.05539958203374,43.11274063495208,43.11302163521191,43.11484163689811,43.11831864011873]}]],[[{"lng":[-88.98245869006989,-88.97678163743987,-88.97128158724126,-88.93055221191564,-88.80678807233575,-88.78554987679874,-88.64115532108534,-88.55933515663556,-88.54948013689317,-88.50017704157091,-88.48372839694464,-88.48389154752269,-88.4861089964553,-88.48697054528414,-88.487329690923,-88.48740772064335,-88.48754792636907,-88.48841137627363,-88.48892245935535,-88.4889922331831,-88.48899733759006,-88.48908427661449,-88.48915229107467,-88.54014931210003,-88.54226528657404,-88.62719408454541,-88.62983004778036,-88.64184188037814,-88.64243887205529,-88.71379288314783,-88.73619357506288,-88.73562538753755,-88.73558923454233,-88.73545018480552,-88.73544391361928,-88.73573885400081,-88.73554579015763,-88.76260270299298,-88.76970072917906,-88.76974272932743,-88.77119873525122,-88.77636975603596,-88.79663983755069,-88.82828496369083,-88.85915908813922,-88.86412410789308,-88.86720312124039,-88.87952816818019,-88.8845521879759,-88.90360626221877,-88.90664227308621,-88.94048540835647,-88.98131756941949,-88.98203056263218,-88.98206754477681,-88.98136054582248,-88.98167856729859,-88.98245869006989],"lat":[45.11799795822284,45.11771893469363,45.11806991053614,45.11780973783659,45.1176742114811,45.11765612112877,45.11734440357645,45.11682397667241,45.11678592522838,45.11645166728737,45.11688451189909,45.10884547782778,45.0301211682285,44.99998405859786,44.99530401955706,44.99434401163871,44.98805395211721,44.94375853043532,44.91072221322533,44.88740298331874,44.88426095225251,44.85595267320764,44.85544066953467,44.85573136373392,44.85560438726407,44.85642638007891,44.85643541072679,44.85647255034544,44.85647455728459,44.85648538545671,44.85637464520688,44.91422875841803,44.92165177344852,44.92412877728018,44.93725080447378,44.93999781278199,44.94317681766944,44.94320501050215,44.94331004825812,44.94331104848208,44.9433030561813,44.94328808354597,44.94321919080398,44.9431603583358,44.94294852160677,44.94292954788559,44.94280956405159,44.94296862953448,44.94296865614868,44.94308475721207,44.94324677346891,44.94297095245079,44.94274516856539,44.95667618396492,44.98302220613526,45.01450718433363,45.02891715375842,45.11799795822284]}]],[[{"lng":[-90.31751259354355,-90.3170806478437,-90.31710866704451,-90.31703368125656,-90.31605275327432,-90.31595975341587,-90.31575487663407,-90.31566187678627,-90.31573301507738,-90.31600604943529,-90.31574506487907,-90.31589708340645,-90.316465219408,-90.31634725297987,-90.3162512897443,-90.21847141405773,-90.2033224090908,-90.19823140744842,-90.19722040726103,-90.19699140718369,-90.19365240594284,-90.19301640568798,-90.19130740512419,-90.18713540371756,-90.18667040355851,-90.17986140126729,-90.17372939925315,-90.1719913986939,-90.17126339845811,-90.16072739502398,-90.16053439496086,-90.14801639079582,-90.14641239026501,-90.14434838958174,-90.13969438803277,-90.07944036831624,-90.0599413620823,-90.05596736115388,-89.96401131678708,-89.85540424138863,-89.84806423621887,-89.84497323416153,-89.8449292341309,-89.84529121531972,-89.84488121466021,-89.84490720817529,-89.84499919544513,-89.84511119476971,-89.84512919041448,-89.84523717574892,-89.84526916994407,-89.84505313617709,-89.84505113580728,-89.84502212630963,-89.84501812553067,-89.84511012231933,-89.84511811653263,-89.84518010851303,-89.84515410605,-89.84469706164984,-89.84468105728688,-89.84443100132407,-89.84454399807359,-89.80743198240313,-89.72672287542451,-89.72665583143703,-89.72648980909302,-89.72621578727527,-89.72638778187289,-89.7263287792333,-89.72625077574178,-89.72595774294852,-89.72591974143073,-89.72583073903239,-89.72510869777092,-89.72474966486401,-89.72463964321571,-89.72463561126106,-89.72452954342904,-89.72452350090903,-89.72474348608118,-89.72591148724558,-89.72771648952913,-89.80860457627563,-89.81564158363044,-89.83827060723642,-89.90266767512215,-89.90278067524035,-89.91411468722492,-89.91921269270948,-89.92410269779245,-89.95589573144876,-89.95778873342654,-90.04809070480209,-90.05672969163859,-90.07324266646152,-90.08081965490103,-90.09128163887966,-90.19236948499633,-90.23816941522516,-90.25013039892144,-90.31267753492109,-90.31802954669425,-90.31751259354355],"lat":[44.29182260712945,44.33742958192674,44.35334357335201,44.36516556684531,44.42450253309293,44.42458353289482,44.51277550727398,44.51277550710439,44.57038757889804,44.58489359729479,44.59112660471047,44.59895461462763,44.65603768600013,44.66992370311971,44.68515472194375,44.68529566195299,44.68529165056946,44.68530164675905,44.68536264607953,44.68536164590611,44.6852986433158,44.68527864281258,44.6852766415267,44.6852586383717,44.68525563801891,44.68522763287419,44.6852236282674,44.68522762696745,44.68522862642217,44.6852336185195,44.68523361837464,44.68520060894851,44.68519760774227,44.6851936061901,44.68518060268728,44.68516755748201,44.6852425428729,44.68544653992775,44.68482947401439,44.68492440159572,44.68487739674614,44.68494539462505,44.68494539459572,44.67093540753841,44.67065340754532,44.66587241190322,44.65646842049431,44.65591842105465,44.65270842397681,44.64187843385509,44.63759743775218,44.61287246009125,44.61260146033647,44.60563146665275,44.60506046716973,44.60266146937703,44.59840447324206,44.59248447863072,44.59068448025636,44.55821350965092,44.55501051256076,44.51392954992188,44.51150355212328,44.51136355448497,44.51119257742278,44.48202760858145,44.46741362093213,44.45335563284419,44.44935063609544,44.4477026375033,44.44552063936518,44.42403965739961,44.42309165820205,44.42164965943203,44.39510368161725,44.37338569956749,44.35884371153954,44.33711572942817,44.2910947672552,44.2621587910522,44.24767880195118,44.24785680292463,44.24772480455128,44.24892076106051,44.24899475349963,44.24932072915672,44.24947166008577,44.249473659964,44.24944364782483,44.24924364242682,44.24940063713316,44.24916560313842,44.2492166010915,44.24894155656868,44.24895455667388,44.24899055687158,44.24901155696107,44.24909155706833,44.24900555838379,44.24900955896616,44.24844255938562,44.24875062449976,44.24870863007177,44.29182260712945]}]],[[{"lng":[-90.3169544456304,-90.31685544681018,-90.31661044772888,-90.31653044818115,-90.31592244986467,-90.31583445057861,-90.31572045128125,-90.315324452281,-90.31516445261862,-90.31507045306452,-90.31582845309063,-90.31606045316929,-90.31659145293827,-90.31659945335082,-90.31657245370008,-90.31654445386516,-90.31655845401524,-90.31607645515501,-90.31606945521031,-90.31589745557265,-90.31578745589667,-90.31576146719551,-90.31572948749718,-90.31566449477157,-90.31503670004348,-90.1975146498098,-90.19757001342636,-90.19776419891257,-90.19030518658323,-90.19008518626009,-90.16728714831049,-90.15077712067931,-90.12037807072575,-90.11480806148766,-90.07933200315421,-90.05409496147738,-90.04368394425046,-89.96449281586217,-89.84448262414065,-89.79672754725304,-89.75492748087639,-89.72683452578781,-89.63306873945157,-89.63257974058338,-89.59056483578779,-89.59034783622526,-89.49202204448302,-89.42597006792086,-89.34606109695763,-89.22421310422288,-89.22428309772867,-89.22381401842175,-89.22381301826154,-89.22373401164457,-89.22347699050341,-89.22342093956081,-89.2235348235711,-89.22344878132924,-89.22343077476395,-89.22332675548779,-89.22367272879012,-89.22367771547928,-89.2237377021175,-89.2239015445286,-89.22400646523154,-89.22400746486559,-89.22385741040711,-89.22429426504077,-89.22428525566092,-89.22436525175482,-89.22422314660426,-89.22374300548118,-89.24407896804826,-89.2501099574027,-89.26583794954865,-89.32528392051611,-89.3458849103216,-89.35598490683761,-89.43162987791739,-89.44649787278587,-89.48990285917877,-89.60809198963813,-89.64137203096135,-89.65538204851731,-89.68305408327271,-89.72048413050587,-89.7266971383542,-89.8449292341309,-89.84497323416153,-89.84806423621887,-89.85540424138863,-89.96401131678708,-90.05596736115388,-90.0599413620823,-90.07944036831624,-90.13969438803277,-90.14434838958174,-90.14641239026501,-90.14801639079582,-90.16053439496086,-90.16072739502398,-90.17126339845811,-90.1719913986939,-90.17372939925315,-90.17986140126729,-90.18667040355851,-90.18713540371756,-90.19130740512419,-90.19301640568798,-90.19365240594284,-90.19699140718369,-90.19722040726103,-90.19823140744842,-90.2033224090908,-90.21847141405773,-90.3162512897443,-90.31681044436752,-90.31690944436549,-90.31684744466286,-90.31686144514525,-90.3168614451465,-90.3169544456304],"lat":[44.78643077435629,44.80794775778228,44.81899774926426,44.82628674364977,44.84407072994353,44.85915071833732,44.87356670724314,44.88770569636312,44.89213669295463,44.90236368508901,44.92401766842242,44.93121766287739,44.93631765894029,44.94580165163845,44.95327864588282,44.95660164332544,44.96023564052727,44.98071362478384,44.98199762379597,44.98910661833334,44.99630561279939,45.00154660978883,45.00436060948243,45.00536660937365,45.03382960613951,45.0336405318573,45.09125853439255,45.12060453569259,45.12058853405522,45.12059453400772,45.12050052897048,45.12040452527626,45.12037751851775,45.12035751726261,45.1203155093273,45.12024950360146,45.1202145012145,45.12016236030392,45.12009091749909,45.11992474159749,45.11998558739504,45.11996558965446,45.1198916723204,45.11989567274217,45.11972071005517,45.11970571027592,45.11945079504182,45.11909783598974,45.11867588538106,45.11856695309342,45.11169496211186,45.02941207074822,45.02924607096779,45.02244207999933,45.00072410886556,44.98624312208371,44.95441615027202,44.94285316058747,44.94105616219142,44.93578616691432,44.92842217331759,44.92477517656015,44.92110917980243,44.87795721821085,44.85626523756184,44.8561652376512,44.84123625092726,44.80158028650904,44.79901328879914,44.7979722897779,44.76917431542881,44.68136534735157,44.68123538648749,44.68148839768051,44.68135839216858,44.6814243709641,44.6813803636935,44.68196535923877,44.68409232748959,44.6845183209154,44.68584730089592,44.68548231205234,44.68522431689793,44.6851533188409,44.68501432264436,44.68486432766593,44.68483532849937,44.68494539459572,44.68494539462505,44.68487739674614,44.68492440159572,44.68482947401439,44.68544653992775,44.6852425428729,44.68516755748201,44.68518060268728,44.6851936061901,44.68519760774227,44.68520060894851,44.68523361837464,44.6852336185195,44.68522862642217,44.68522762696745,44.6852236282674,44.68522763287419,44.68525563801891,44.6852586383717,44.6852766415267,44.68527864281258,44.6852986433158,44.68536164590611,44.68536264607953,44.68530164675905,44.68529165056946,44.68529566195299,44.68515472194375,44.75279680024664,44.7573427967531,44.76095079397055,44.77205278542267,44.77207978540187,44.78643077435629]}]],[[{"lng":[-88.41870700555599,-88.41870400586276,-88.4187020184892,-88.41876804831101,-88.41876704859658,-88.41876704876536,-88.4185620838322,-88.41843709346219,-88.40154207921596,-88.40117614199791,-88.40067825911747,-88.40049231972864,-88.40048136592108,-88.40070437451365,-88.40070645064201,-88.40060645488323,-88.40042447389695,-88.39104547609307,-88.29088149999278,-88.28103150227727,-88.27067850496222,-88.26568050626879,-88.24492951355715,-88.23638951907506,-88.16087156709118,-88.10042060316614,-88.09929360369919,-88.05093963426896,-88.0496436350883,-88.04052664083403,-88.04050162384695,-88.04073838439314,-88.04079133289662,-88.04076232679893,-88.04069926921883,-88.04086721065164,-88.04099018201669,-88.04082718165003,-88.04096416414548,-88.04095115340851,-88.03998092703314,-88.04012392479318,-88.0624239268214,-88.06255089407081,-88.06288875332916,-88.06288869752504,-88.06328958588928,-88.06390542897441,-88.06378438254552,-88.06338029804837,-88.06335028956009,-88.06451729049023,-88.08276830459015,-88.08287130467515,-88.10305532054281,-88.10312032059143,-88.11321532851733,-88.11785333227684,-88.12176033543953,-88.1273083400244,-88.13640634725475,-88.13834034897847,-88.14267635242915,-88.18222538523295,-88.21922041581523,-88.22172841770733,-88.24179543405361,-88.24182443406639,-88.26617147309813,-88.27224848525745,-88.30008254085783,-88.31056656169406,-88.31988858026777,-88.37929070048129,-88.3992497410657,-88.41400877122616,-88.41685677730685,-88.41798477957371,-88.41827581138119,-88.41865386343014,-88.41921292116011,-88.41870700555599],"lat":[43.3252833269914,43.32544132707898,43.33187433050584,43.34703233849325,43.34717833857217,43.34726433861793,43.36522134844085,43.37017735124751,43.37007337359332,43.40040739222554,43.45678342677442,43.48588644456704,43.50585545080759,43.5088604492407,43.53544043896661,43.53691343858213,43.54353443636153,43.54345845376541,43.54291063947757,43.54284665773792,43.54286167690715,43.54287168616062,43.54289472626677,43.54292174490959,43.54294590982186,43.54241004181378,43.54236804427192,43.54236814981309,43.54236815264183,43.54236417254067,43.53860717199451,43.48364113880945,43.47061011758449,43.46906411513825,43.45448409163772,43.43966806729609,43.43242405531888,43.43232405547508,43.42789804803735,43.42517904365764,43.36788595259718,43.36731595141356,43.36729191098813,43.35880489740622,43.32232183943134,43.30786081669165,43.2788837704764,43.23563873416157,43.22112574450117,43.19476876363842,43.19211976554744,43.19212076347372,43.19199373113297,43.19199473094933,43.19193769511695,43.19193669500199,43.19190367707944,43.19192766882501,43.1919466618728,43.19200565198688,43.19200563582157,43.19206963235861,43.19207162465467,43.19257355426877,43.19305448856345,43.19301948412071,43.19320644853857,43.19320244848727,43.19325641590301,43.19324440910109,43.19314137792807,43.19304736616512,43.19298135570425,43.19357128949151,43.19396526743943,43.19440925128539,43.19468824831527,43.19469924706796,43.21715126320689,43.25292728852173,43.28192630340836,43.3252833269914]}]]],null,"Counties",{"interactive":true,"className":"","stroke":true,"color":"black","weight":1,"opacity":0.5,"fill":true,"fillColor":["#FFE998","#FED06C","#FD7333","#FED471","#FFE187","#FFE999","#FEB954","#FFEA9A","#FFCA66","#FFDF83","#FEDA78","#FED36F","#FFC45F","#FFCB67","#FFE58F","#FED673","#FFCD69","#FFEEA3","#FED471","#FD7333","#FFE58F","#FFDF82","#FEA747","#FD632F","#FFF3AE","#FD953F","#FFEEA3","#FFEC9E","#FEB651","#FFBD58","#FFE187","#F44126","#FFE692","#FFF0A7","#FED977","#FFEA99","#FFEEA1","#FFE38B","#FEDA77","#FFDE80","#FE9F43","#FFC35E","#FFE38B","#FFE692","#FFE58E","#FED875","#FEDC7D","#800026","#FD6C32","#FEDB79","#FFE48D","#FFE085","#FEAA48","#FD6E32","#FFCA66","#FEA747","#FFEB9B","#FEDC7C","#FFED9F","#FFC05C","#FEBC57","#FFDF82","#FD7835","#FFE288","#FEA044","#FFC965","#FEDD7E","#FFEEA2","#FFFFCC","#FFC460","#FEB14C","#FFC863"],"fillOpacity":0.6,"smoothFactor":1,"noClip":false},null,null,["<b>Trempealeau County<\/b><\/br>population: 30899<br>average crashes per year: 4<\/br>average crashes/year per 100k residents: 11","<b>Florence County<\/b><\/br>population: 4688<br>average crashes per year: 1<\/br>average crashes/year per 100k residents: 21","<b>Sauk County<\/b><\/br>population: 65777<br>average crashes per year: 28<\/br>average crashes/year per 100k residents: 42","<b>Rusk County<\/b><\/br>population: 14186<br>average crashes per year: 3<\/br>average crashes/year per 100k residents: 20","<b>Ashland County<\/b><\/br>population: 16039<br>average crashes per year: 2<\/br>average crashes/year per 100k residents: 15","<b>Buffalo County<\/b><\/br>population: 13391<br>average crashes per year: 2<\/br>average crashes/year per 100k residents: 11","<b>Iron County<\/b><\/br>population: 6224<br>average crashes per year: 2<\/br>average crashes/year per 100k residents: 27","<b>Bayfield County<\/b><\/br>population: 16608<br>average crashes per year: 2<\/br>average crashes/year per 100k residents: 11","<b>Waukesha County<\/b><\/br>population: 410434<br>average crashes per year: 93<\/br>average crashes/year per 100k residents: 23","<b>Adams County<\/b><\/br>population: 21226<br>average crashes per year: 3<\/br>average crashes/year per 100k residents: 16","<b>Juneau County<\/b><\/br>population: 26866<br>average crashes per year: 5<\/br>average crashes/year per 100k residents: 19","<b>Crawford County<\/b><\/br>population: 16007<br>average crashes per year: 3<\/br>average crashes/year per 100k residents: 21","<b>Marinette County<\/b><\/br>population: 41988<br>average crashes per year: 10<\/br>average crashes/year per 100k residents: 24","<b>Door County<\/b><\/br>population: 30526<br>average crashes per year: 7<\/br>average crashes/year per 100k residents: 22","<b>Grant County<\/b><\/br>population: 51276<br>average crashes per year: 7<\/br>average crashes/year per 100k residents: 13","<b>Langlade County<\/b><\/br>population: 19559<br>average crashes per year: 4<\/br>average crashes/year per 100k residents: 20","<b>Monroe County<\/b><\/br>population: 46109<br>average crashes per year: 10<\/br>average crashes/year per 100k residents: 22","<b>Washburn County<\/b><\/br>population: 16911<br>average crashes per year: 2<\/br>average crashes/year per 100k residents: 9","<b>Oneida County<\/b><\/br>population: 38212<br>average crashes per year: 8<\/br>average crashes/year per 100k residents: 20","<b>Dane County<\/b><\/br>population: 568203<br>average crashes per year: 241<\/br>average crashes/year per 100k residents: 42","<b>Richland County<\/b><\/br>population: 17090<br>average crashes per year: 2<\/br>average crashes/year per 100k residents: 13","<b>Waupaca County<\/b><\/br>population: 51488<br>average crashes per year: 8<\/br>average crashes/year per 100k residents: 16","<b>Sheboygan County<\/b><\/br>population: 117841<br>average crashes per year: 37<\/br>average crashes/year per 100k residents: 32","<b>Kenosha County<\/b><\/br>population: 167817<br>average crashes per year: 75<\/br>average crashes/year per 100k residents: 45","<b>Oconto County<\/b><\/br>population: 39633<br>average crashes per year: 3<\/br>average crashes/year per 100k residents: 6","<b>Rock County<\/b><\/br>population: 164060<br>average crashes per year: 59<\/br>average crashes/year per 100k residents: 36","<b>Burnett County<\/b><\/br>population: 17036<br>average crashes per year: 2<\/br>average crashes/year per 100k residents: 9","<b>Polk County<\/b><\/br>population: 45709<br>average crashes per year: 5<\/br>average crashes/year per 100k residents: 10","<b>Douglas County<\/b><\/br>population: 44144<br>average crashes per year: 12<\/br>average crashes/year per 100k residents: 28","<b>Walworth County<\/b><\/br>population: 105380<br>average crashes per year: 27<\/br>average crashes/year per 100k residents: 26","<b>Pierce County<\/b><\/br>population: 42532<br>average crashes per year: 6<\/br>average crashes/year per 100k residents: 15","<b>La Crosse County<\/b><\/br>population: 120294<br>average crashes per year: 61<\/br>average crashes/year per 100k residents: 50","<b>Kewaunee County<\/b><\/br>population: 20623<br>average crashes per year: 3<\/br>average crashes/year per 100k residents: 13","<b>Lafayette County<\/b><\/br>population: 16877<br>average crashes per year: 1<\/br>average crashes/year per 100k residents: 8","<b>Lincoln County<\/b><\/br>population: 28376<br>average crashes per year: 5<\/br>average crashes/year per 100k residents: 19","<b>Clark County<\/b><\/br>population: 34691<br>average crashes per year: 4<\/br>average crashes/year per 100k residents: 11","<b>Vernon County<\/b><\/br>population: 31060<br>average crashes per year: 3<\/br>average crashes/year per 100k residents: 9","<b>Jackson County<\/b><\/br>population: 20836<br>average crashes per year: 3<\/br>average crashes/year per 100k residents: 14","<b>Calumet County<\/b><\/br>population: 52718<br>average crashes per year: 10<\/br>average crashes/year per 100k residents: 19","<b>Dodge County<\/b><\/br>population: 88282<br>average crashes per year: 15<\/br>average crashes/year per 100k residents: 17","<b>Outagamie County<\/b><\/br>population: 192127<br>average crashes per year: 64<\/br>average crashes/year per 100k residents: 34","<b>Dunn County<\/b><\/br>population: 45651<br>average crashes per year: 11<\/br>average crashes/year per 100k residents: 24","<b>Chippewa County<\/b><\/br>population: 66807<br>average crashes per year: 10<\/br>average crashes/year per 100k residents: 14","<b>Marquette County<\/b><\/br>population: 15779<br>average crashes per year: 2<\/br>average crashes/year per 100k residents: 13","<b>Pepin County<\/b><\/br>population: 7410<br>average crashes per year: 1<\/br>average crashes/year per 100k residents: 13","<b>Taylor County<\/b><\/br>population: 19975<br>average crashes per year: 4<\/br>average crashes/year per 100k residents: 19","<b>Shawano County<\/b><\/br>population: 40886<br>average crashes per year: 7<\/br>average crashes/year per 100k residents: 17","<b>Milwaukee County<\/b><\/br>population: 918661<br>average crashes per year: 699<\/br>average crashes/year per 100k residents: 76","<b>Racine County<\/b><\/br>population: 195846<br>average crashes per year: 85<\/br>average crashes/year per 100k residents: 43","<b>Green County<\/b><\/br>population: 36816<br>average crashes per year: 7<\/br>average crashes/year per 100k residents: 18","<b>Vilas County<\/b><\/br>population: 23763<br>average crashes per year: 3<\/br>average crashes/year per 100k residents: 14","<b>Barron County<\/b><\/br>population: 46843<br>average crashes per year: 7<\/br>average crashes/year per 100k residents: 16","<b>Brown County<\/b><\/br>population: 270036<br>average crashes per year: 83<\/br>average crashes/year per 100k residents: 31","<b>Winnebago County<\/b><\/br>population: 170718<br>average crashes per year: 74<\/br>average crashes/year per 100k residents: 43","<b>Ozaukee County<\/b><\/br>population: 93009<br>average crashes per year: 21<\/br>average crashes/year per 100k residents: 23","<b>Manitowoc County<\/b><\/br>population: 81172<br>average crashes per year: 26<\/br>average crashes/year per 100k residents: 32","<b>Forest County<\/b><\/br>population: 9381<br>average crashes per year: 1<\/br>average crashes/year per 100k residents: 11","<b>Price County<\/b><\/br>population: 14179<br>average crashes per year: 2<\/br>average crashes/year per 100k residents: 18","<b>Waushara County<\/b><\/br>population: 24999<br>average crashes per year: 2<\/br>average crashes/year per 100k residents: 10","<b>Columbia County<\/b><\/br>population: 58193<br>average crashes per year: 15<\/br>average crashes/year per 100k residents: 25","<b>Portage County<\/b><\/br>population: 70718<br>average crashes per year: 18<\/br>average crashes/year per 100k residents: 26","<b>Green Lake County<\/b><\/br>population: 19220<br>average crashes per year: 3<\/br>average crashes/year per 100k residents: 16","<b>Fond Du Lac County<\/b><\/br>population: 103836<br>average crashes per year: 43<\/br>average crashes/year per 100k residents: 42","<b>St. Croix County<\/b><\/br>population: 96017<br>average crashes per year: 14<\/br>average crashes/year per 100k residents: 15","<b>Eau Claire County<\/b><\/br>population: 106837<br>average crashes per year: 35<\/br>average crashes/year per 100k residents: 33","<b>Jefferson County<\/b><\/br>population: 85784<br>average crashes per year: 20<\/br>average crashes/year per 100k residents: 23","<b>Sawyer County<\/b><\/br>population: 18559<br>average crashes per year: 3<\/br>average crashes/year per 100k residents: 17","<b>Iowa County<\/b><\/br>population: 23865<br>average crashes per year: 2<\/br>average crashes/year per 100k residents: 9","<b>Menominee County<\/b><\/br>population: 4197<br>average crashes per year: NA<\/br>average crashes/year per 100k residents: 0","<b>Wood County<\/b><\/br>population: 73993<br>average crashes per year: 18<\/br>average crashes/year per 100k residents: 24","<b>Marathon County<\/b><\/br>population: 137958<br>average crashes per year: 40<\/br>average crashes/year per 100k residents: 29","<b>Washington County<\/b><\/br>population: 137688<br>average crashes per year: 32<\/br>average crashes/year per 100k residents: 23"],{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]},{"method":"addLegend","args":[{"colors":["#FFFFCC , #FFFFCC 0%, #FFEC9E 13.1478777346146%, #FED572 26.2957554692292%, #FEAC49 39.4436332038438%, #FD8138 52.5915109384584%, #F64326 65.739388673073%, #D71320 78.8872664076876%, #A60026 92.0351441423022%, #800026 "],"labels":["0","10","20","30","40","50","60","70"],"na_color":null,"na_label":"NA","opacity":0.5,"position":"bottomleft","type":"numeric","title":"Circle size = county population<br><br>Color = Crashes/year<\/br>(normalized per 100k residents)","extra":{"p_1":0,"p_n":0.9203514414230218},"layerId":null,"className":"info legend","group":"Counties"}]},{"method":"setGroupOptions","args":["Schools",{"zoomLevels":[13,14,15,16,17,18,19,20]}]},{"method":"setGroupOptions","args":["Crash Points",{"zoomLevels":[10,11,12,13,14,15,16,17,18,19,20]}]},{"method":"setGroupOptions","args":["Counties",{"zoomLevels":[1,2,3,4,5,6,7,8,9]}]}],"limits":{"lat":[42.49198373021532,47.08062304822705],"lng":[-92.88811344633447,-86.80541540382812]}},"evals":[],"jsHooks":[]}</script>
|
|
<script type="application/htmlwidget-sizing" data-for="htmlwidget-d80f44d099c52f52297c">{"viewer":{"width":"100%","height":400,"padding":0,"fill":true},"browser":{"width":"100%","height":400,"padding":0,"fill":true}}</script>
|
|
</body>
|
|
</html>
|