$(document).ready(function () { // Graph an initial value graph("Felony"); // Reset menu and inputs $("select option").prop("selected", function () { return this.defaultSelected; }); $("input").val(""); // Set onclick event to change graphs when a new option is selected $("select").on("change", function () { var beginningYear = $("#beginningYear").val(); var endingYear = $("#endingYear").val(); graph(this.value, [beginningYear, endingYear]); }); // Set onclick event to change graphs when the per capita toggle is toggled $("#cb1").on("change", function () { var beginningYear = $("#beginningYear").val(); var endingYear = $("#endingYear").val(); var crime = $("select").val(); graph(crime, [beginningYear, endingYear]); }); // Set onclick event to change graphs when the years only toggle is toggled $("#cb2").on("change", function () { var beginningYear = $("#beginningYear").val(); var endingYear = $("#endingYear").val(); var crime = $("select").val(); graph(crime, [beginningYear, endingYear]); }); // Set onsubmit event to graph whenever the form is submitted $("form").submit(function (e) { e.preventDefault(); var beginningYear = $("#beginningYear").val(); var endingYear = $("#endingYear").val(); var crime = $("select").val(); graph(crime, [beginningYear, endingYear]); }); }); function graph(crime, dates) { var crimeObject = {}; var max; var i = 0; if (dates === undefined || dates[0] == "" || dates[1] == "") { // If the dates are not defined or there aren't two numbers, use default dates // use yearData if the years only toggle is checked if ($("#cb2").is(":checked")) { max = yearData.length; } else { max = data.length; } } else { var begDate = parseInt(dates[0]); var endDate = parseInt(dates[1]); if ($("#cb2").is(":checked")) { i = begDate - 1990; max = endDate - begDate + i + 1; } else { // Get the number of years between the dates the user chose and multiply by 12 to get the number of months i = (begDate - 1990) * 12; max = (endDate - begDate) * 12 + i; /* VOLATILE CODE: Only add 5 months for 2020; * VOLATILE CODE: `max = max + 5` needs to be updated every time new monthly data is added; * VOLATILE CODE: If all 12 months of data are recorded, `max = max + 12` can replace this if/else statement. if (endDate == 2020) { max = max + 5; } else { max = max + 12; } */ max = max + 12; } } // If both toggles are on, do both if ($("#cb1").is(":checked") && $("#cb2").is(":checked")) { for (i; i < max; i++) { crimeObject[yearData[i].Date] = yearData[i][crime] / yearData[i].Population; } } // If the per capita toggle is on, divide the crime data by the population for each data point else if ($("#cb1").is(":checked")) { for (i; i < max; i++) { crimeObject[data[i].Date] = data[i][crime] / data[i].Population; } } // If the years only toggle is on, increase the index by 12 each loop else if ($("#cb2").is(":checked")) { for (i; i < max; i++) { crimeObject[yearData[i].Date] = yearData[i][crime]; } } // If both toggles are off, just record as normal else { for (i; i < max; i++) { crimeObject[data[i].Date] = data[i][crime]; } } Plotly.newPlot( "chart", [ { x: Object.keys(crimeObject), y: Object.values(crimeObject), type: "scatter", line: { color: "#54B0FB", }, }, ], { title: { text: crime, font: { color: "#fff", }, }, paper_bgcolor: "#202020", plot_bgcolor: "#202020", xaxis: { gridcolor: "#3b3b3b", zerolinecolor: "#3b3b3b", linecolor: "#898989", title: "Month and Year", titlefont: { size: 14, color: "#9d9d9d", }, tickfont: { color: "#898989", }, }, yaxis: { gridcolor: "#3b3b3b", zerolinecolor: "#3b3b3b", linecolor: "#898989", title: "Number of Crimes", titlefont: { size: 14, color: "#9d9d9d", }, tickfont: { color: "#898989", }, }, }, { responsive: true, } ); } const data = [ { Date: "Jan-90", Population: "191972", Felony: "182", Misdemeanor: "1550", DWI: "118", "Traffic Tickets": "2349", "Traffic Warnings": "4158", "All Reportable": "669", "Property Damage": "514", Injury: "154", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "9", "Aggravated Assault": "37", "Burglary (Residential)": "119", "Burglary (Non-Residential)": "44", "Auto Theft": "37", "All Thefts": "700", "Stolen Bikes": "31", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "355", Fraud: "108", Forgery: "73", Arson: "0", }, { Date: "Feb-90", Population: "191972", Felony: "106", Misdemeanor: "1450", DWI: "128", "Traffic Tickets": "3323", "Traffic Warnings": "6077", "All Reportable": "609", "Property Damage": "484", Injury: "125", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "4", Robbery: "6", "Aggravated Assault": "56", "Burglary (Residential)": "102", "Burglary (Non-Residential)": "47", "Auto Theft": "27", "All Thefts": "564", "Stolen Bikes": "35", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "399", Fraud: "48", Forgery: "87", Arson: "0", }, { Date: "Mar-90", Population: "191972", Felony: "116", Misdemeanor: "1822", DWI: "173", "Traffic Tickets": "3722", "Traffic Warnings": "6541", "All Reportable": "758", "Property Damage": "562", Injury: "194", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "9", "Aggravated Assault": "44", "Burglary (Residential)": "107", "Burglary (Non-Residential)": "47", "Auto Theft": "33", "All Thefts": "784", "Stolen Bikes": "52", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "448", Fraud: "75", Forgery: "89", Arson: "0", }, { Date: "Apr-90", Population: "191972", Felony: "101", Misdemeanor: "1508", DWI: "129", "Traffic Tickets": "3361", "Traffic Warnings": "6244", "All Reportable": "617", "Property Damage": "420", Injury: "197", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "6", "Aggravated Assault": "48", "Burglary (Residential)": "96", "Burglary (Non-Residential)": "55", "Auto Theft": "36", "All Thefts": "667", "Stolen Bikes": "53", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "458", Fraud: "112", Forgery: "89", Arson: "0", }, { Date: "May-90", Population: "191972", Felony: "96", Misdemeanor: "1340", DWI: "157", "Traffic Tickets": "3739", "Traffic Warnings": "6665", "All Reportable": "688", "Property Damage": "480", Injury: "208", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "11", "Aggravated Assault": "53", "Burglary (Residential)": "100", "Burglary (Non-Residential)": "35", "Auto Theft": "37", "All Thefts": "714", "Stolen Bikes": "60", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "395", Fraud: "123", Forgery: "64", Arson: "0", }, { Date: "Jun-90", Population: "191972", Felony: "89", Misdemeanor: "1799", DWI: "141", "Traffic Tickets": "3293", "Traffic Warnings": "4340", "All Reportable": "659", "Property Damage": "487", Injury: "171", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "6", "Aggravated Assault": "66", "Burglary (Residential)": "133", "Burglary (Non-Residential)": "43", "Auto Theft": "38", "All Thefts": "872", "Stolen Bikes": "132", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "368", Fraud: "118", Forgery: "59", Arson: "0", }, { Date: "Jul-90", Population: "191972", Felony: "129", Misdemeanor: "1815", DWI: "122", "Traffic Tickets": "2444", "Traffic Warnings": "4338", "All Reportable": "704", "Property Damage": "506", Injury: "198", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "20", "Aggravated Assault": "66", "Burglary (Residential)": "148", "Burglary (Non-Residential)": "56", "Auto Theft": "54", "All Thefts": "936", "Stolen Bikes": "128", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "570", Fraud: "84", Forgery: "50", Arson: "0", }, { Date: "Aug-90", Population: "191972", Felony: "126", Misdemeanor: "1968", DWI: "158", "Traffic Tickets": "3156", "Traffic Warnings": "4556", "All Reportable": "711", "Property Damage": "509", Injury: "202", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "11", "Aggravated Assault": "74", "Burglary (Residential)": "151", "Burglary (Non-Residential)": "69", "Auto Theft": "39", "All Thefts": "999", "Stolen Bikes": "137", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "503", Fraud: "96", Forgery: "90", Arson: "0", }, { Date: "Sep-90", Population: "191972", Felony: "114", Misdemeanor: "1882", DWI: "194", "Traffic Tickets": "3463", "Traffic Warnings": "4174", "All Reportable": "751", "Property Damage": "531", Injury: "218", Fatality: "2", Homicide: "2", "Rape and Attempted Rape": "10", Robbery: "10", "Aggravated Assault": "76", "Burglary (Residential)": "147", "Burglary (Non-Residential)": "92", "Auto Theft": "42", "All Thefts": "964", "Stolen Bikes": "135", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "404", Fraud: "73", Forgery: "61", Arson: "0", }, { Date: "Oct-90", Population: "191972", Felony: "107", Misdemeanor: "1707", DWI: "175", "Traffic Tickets": "3141", "Traffic Warnings": "4515", "All Reportable": "739", "Property Damage": "533", Injury: "205", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "13", "Aggravated Assault": "68", "Burglary (Residential)": "146", "Burglary (Non-Residential)": "56", "Auto Theft": "32", "All Thefts": "930", "Stolen Bikes": "111", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "496", Fraud: "101", Forgery: "48", Arson: "0", }, { Date: "Nov-90", Population: "191972", Felony: "97", Misdemeanor: "1478", DWI: "181", "Traffic Tickets": "3189", "Traffic Warnings": "4125", "All Reportable": "647", "Property Damage": "480", Injury: "166", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "7", "Aggravated Assault": "65", "Burglary (Residential)": "110", "Burglary (Non-Residential)": "58", "Auto Theft": "38", "All Thefts": "884", "Stolen Bikes": "75", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "528", Fraud: "77", Forgery: "33", Arson: "0", }, { Date: "Dec-90", Population: "191972", Felony: "108", Misdemeanor: "1408", DWI: "318", "Traffic Tickets": "2687", "Traffic Warnings": "3224", "All Reportable": "824", "Property Damage": "647", Injury: "176", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "13", Robbery: "11", "Aggravated Assault": "71", "Burglary (Residential)": "101", "Burglary (Non-Residential)": "69", "Auto Theft": "29", "All Thefts": "926", "Stolen Bikes": "28", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "337", Fraud: "120", Forgery: "55", Arson: "0", }, { Date: "Jan-91", Population: "195270", Felony: "114", Misdemeanor: "1326", DWI: "125", "Traffic Tickets": "2497", "Traffic Warnings": "4523", "All Reportable": "848", "Property Damage": "662", Injury: "186", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "3", "Aggravated Assault": "49", "Burglary (Residential)": "120", "Burglary (Non-Residential)": "44", "Auto Theft": "26", "All Thefts": "675", "Stolen Bikes": "22", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "220", Fraud: "94", Forgery: "115", Arson: "0", }, { Date: "Feb-91", Population: "195270", Felony: "92", Misdemeanor: "1527", DWI: "148", "Traffic Tickets": "2616", "Traffic Warnings": "4105", "All Reportable": "542", "Property Damage": "416", Injury: "126", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "8", "Aggravated Assault": "58", "Burglary (Residential)": "110", "Burglary (Non-Residential)": "44", "Auto Theft": "17", "All Thefts": "800", "Stolen Bikes": "54", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "314", Fraud: "213", Forgery: "130", Arson: "0", }, { Date: "Mar-91", Population: "195270", Felony: "104", Misdemeanor: "1617", DWI: "114", "Traffic Tickets": "2741", "Traffic Warnings": "4684", "All Reportable": "599", "Property Damage": "429", Injury: "170", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "7", "Aggravated Assault": "84", "Burglary (Residential)": "145", "Burglary (Non-Residential)": "44", "Auto Theft": "25", "All Thefts": "930", "Stolen Bikes": "70", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "481", Fraud: "112", Forgery: "104", Arson: "0", }, { Date: "Apr-91", Population: "195270", Felony: "76", Misdemeanor: "1515", DWI: "157", "Traffic Tickets": "2617", "Traffic Warnings": "3824", "All Reportable": "639", "Property Damage": "475", Injury: "164", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "4", "Aggravated Assault": "72", "Burglary (Residential)": "146", "Burglary (Non-Residential)": "43", "Auto Theft": "38", "All Thefts": "932", "Stolen Bikes": "118", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "479", Fraud: "105", Forgery: "56", Arson: "0", }, { Date: "May-91", Population: "195270", Felony: "107", Misdemeanor: "1623", DWI: "109", "Traffic Tickets": "2659", "Traffic Warnings": "3373", "All Reportable": "719", "Property Damage": "504", Injury: "214", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "16", "Aggravated Assault": "73", "Burglary (Residential)": "175", "Burglary (Non-Residential)": "48", "Auto Theft": "28", "All Thefts": "1019", "Stolen Bikes": "135", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "426", Fraud: "161", Forgery: "41", Arson: "0", }, { Date: "Jun-91", Population: "195270", Felony: "72", Misdemeanor: "1472", DWI: "111", "Traffic Tickets": "2335", "Traffic Warnings": "2940", "All Reportable": "636", "Property Damage": "447", Injury: "188", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "9", "Aggravated Assault": "88", "Burglary (Residential)": "148", "Burglary (Non-Residential)": "50", "Auto Theft": "42", "All Thefts": "1045", "Stolen Bikes": "207", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "449", Fraud: "146", Forgery: "72", Arson: "0", }, { Date: "Jul-91", Population: "195270", Felony: "87", Misdemeanor: "1511", DWI: "115", "Traffic Tickets": "2436", "Traffic Warnings": "3756", "All Reportable": "539", "Property Damage": "377", Injury: "161", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "10", "Aggravated Assault": "79", "Burglary (Residential)": "148", "Burglary (Non-Residential)": "73", "Auto Theft": "52", "All Thefts": "991", "Stolen Bikes": "181", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "493", Fraud: "121", Forgery: "130", Arson: "0", }, { Date: "Aug-91", Population: "195270", Felony: "117", Misdemeanor: "1584", DWI: "108", "Traffic Tickets": "2626", "Traffic Warnings": "3446", "All Reportable": "671", "Property Damage": "473", Injury: "196", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "7", "Aggravated Assault": "101", "Burglary (Residential)": "218", "Burglary (Non-Residential)": "52", "Auto Theft": "53", "All Thefts": "1051", "Stolen Bikes": "157", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "567", Fraud: "102", Forgery: "158", Arson: "0", }, { Date: "Sep-91", Population: "195270", Felony: "93", Misdemeanor: "1543", DWI: "131", "Traffic Tickets": "2996", "Traffic Warnings": "3468", "All Reportable": "628", "Property Damage": "437", Injury: "189", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "12", "Aggravated Assault": "85", "Burglary (Residential)": "160", "Burglary (Non-Residential)": "56", "Auto Theft": "49", "All Thefts": "973", "Stolen Bikes": "146", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "471", Fraud: "138", Forgery: "89", Arson: "0", }, { Date: "Oct-91", Population: "195270", Felony: "88", Misdemeanor: "1370", DWI: "126", "Traffic Tickets": "2755", "Traffic Warnings": "3224", "All Reportable": "728", "Property Damage": "521", Injury: "207", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "11", "Aggravated Assault": "79", "Burglary (Residential)": "129", "Burglary (Non-Residential)": "49", "Auto Theft": "28", "All Thefts": "1000", "Stolen Bikes": "108", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "562", Fraud: "117", Forgery: "154", Arson: "0", }, { Date: "Nov-91", Population: "195270", Felony: "82", Misdemeanor: "1086", DWI: "125", "Traffic Tickets": "2181", "Traffic Warnings": "3179", "All Reportable": "870", "Property Damage": "667", Injury: "203", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "13", "Aggravated Assault": "60", "Burglary (Residential)": "92", "Burglary (Non-Residential)": "60", "Auto Theft": "30", "All Thefts": "678", "Stolen Bikes": "29", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "378", Fraud: "128", Forgery: "70", Arson: "0", }, { Date: "Dec-91", Population: "195270", Felony: "73", Misdemeanor: "1320", DWI: "245", "Traffic Tickets": "2761", "Traffic Warnings": "3389", "All Reportable": "635", "Property Damage": "465", Injury: "170", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "17", "Aggravated Assault": "60", "Burglary (Residential)": "132", "Burglary (Non-Residential)": "46", "Auto Theft": "41", "All Thefts": "1058", "Stolen Bikes": "36", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "574", Fraud: "118", Forgery: "78", Arson: "0", }, { Date: "Jan-92", Population: "199021", Felony: "145", Misdemeanor: "1672", DWI: "105", "Traffic Tickets": "2723", "Traffic Warnings": "3766", "All Reportable": "570", "Property Damage": "416", Injury: "154", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "15", "Aggravated Assault": "71", "Burglary (Residential)": "128", "Burglary (Non-Residential)": "62", "Auto Theft": "30", "All Thefts": "1019", "Stolen Bikes": "43", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "506", Fraud: "280", Forgery: "141", Arson: "0", }, { Date: "Feb-92", Population: "199021", Felony: "125", Misdemeanor: "1638", DWI: "137", "Traffic Tickets": "2794", "Traffic Warnings": "3568", "All Reportable": "567", "Property Damage": "425", Injury: "142", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "17", "Aggravated Assault": "82", "Burglary (Residential)": "139", "Burglary (Non-Residential)": "36", "Auto Theft": "53", "All Thefts": "1012", "Stolen Bikes": "54", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "557", Fraud: "191", Forgery: "45", Arson: "0", }, { Date: "Mar-92", Population: "199021", Felony: "131", Misdemeanor: "1875", DWI: "140", "Traffic Tickets": "3031", "Traffic Warnings": "4056", "All Reportable": "625", "Property Damage": "458", Injury: "167", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "9", "Aggravated Assault": "65", "Burglary (Residential)": "138", "Burglary (Non-Residential)": "57", "Auto Theft": "44", "All Thefts": "981", "Stolen Bikes": "63", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "635", Fraud: "133", Forgery: "103", Arson: "0", }, { Date: "Apr-92", Population: "199021", Felony: "169", Misdemeanor: "1738", DWI: "127", "Traffic Tickets": "3077", "Traffic Warnings": "3951", "All Reportable": "620", "Property Damage": "425", Injury: "195", Fatality: "0", Homicide: "2", "Rape and Attempted Rape": "11", Robbery: "6", "Aggravated Assault": "66", "Burglary (Residential)": "114", "Burglary (Non-Residential)": "54", "Auto Theft": "29", "All Thefts": "858", "Stolen Bikes": "97", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "453", Fraud: "79", Forgery: "99", Arson: "0", }, { Date: "May-92", Population: "199021", Felony: "111", Misdemeanor: "1954", DWI: "105", "Traffic Tickets": "3629", "Traffic Warnings": "4231", "All Reportable": "607", "Property Damage": "420", Injury: "186", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "9", "Aggravated Assault": "91", "Burglary (Residential)": "138", "Burglary (Non-Residential)": "49", "Auto Theft": "30", "All Thefts": "895", "Stolen Bikes": "116", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "476", Fraud: "72", Forgery: "74", Arson: "0", }, { Date: "Jun-92", Population: "199021", Felony: "117", Misdemeanor: "1911", DWI: "89", "Traffic Tickets": "2918", "Traffic Warnings": "3533", "All Reportable": "559", "Property Damage": "387", Injury: "172", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "11", Robbery: "10", "Aggravated Assault": "71", "Burglary (Residential)": "146", "Burglary (Non-Residential)": "38", "Auto Theft": "25", "All Thefts": "988", "Stolen Bikes": "170", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "494", Fraud: "74", Forgery: "78", Arson: "0", }, { Date: "Jul-92", Population: "199021", Felony: "167", Misdemeanor: "1921", DWI: "85", "Traffic Tickets": "2636", "Traffic Warnings": "4100", "All Reportable": "566", "Property Damage": "390", Injury: "175", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "9", "Aggravated Assault": "97", "Burglary (Residential)": "165", "Burglary (Non-Residential)": "39", "Auto Theft": "44", "All Thefts": "1048", "Stolen Bikes": "176", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "495", Fraud: "127", Forgery: "72", Arson: "0", }, { Date: "Aug-92", Population: "199021", Felony: "130", Misdemeanor: "1767", DWI: "99", "Traffic Tickets": "2711", "Traffic Warnings": "3922", "All Reportable": "637", "Property Damage": "449", Injury: "188", Fatality: "0", Homicide: "2", "Rape and Attempted Rape": "12", Robbery: "4", "Aggravated Assault": "85", "Burglary (Residential)": "182", "Burglary (Non-Residential)": "60", "Auto Theft": "28", "All Thefts": "1079", "Stolen Bikes": "201", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "508", Fraud: "149", Forgery: "53", Arson: "0", }, { Date: "Sep-92", Population: "199021", Felony: "160", Misdemeanor: "1824", DWI: "90", "Traffic Tickets": "2793", "Traffic Warnings": "4066", "All Reportable": "623", "Property Damage": "426", Injury: "197", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "23", "Aggravated Assault": "92", "Burglary (Residential)": "128", "Burglary (Non-Residential)": "33", "Auto Theft": "29", "All Thefts": "887", "Stolen Bikes": "124", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "418", Fraud: "126", Forgery: "116", Arson: "0", }, { Date: "Oct-92", Population: "199021", Felony: "193", Misdemeanor: "1804", DWI: "93", "Traffic Tickets": "2669", "Traffic Warnings": "3572", "All Reportable": "720", "Property Damage": "515", Injury: "205", Fatality: "0", Homicide: "2", "Rape and Attempted Rape": "8", Robbery: "16", "Aggravated Assault": "93", "Burglary (Residential)": "155", "Burglary (Non-Residential)": "56", "Auto Theft": "42", "All Thefts": "809", "Stolen Bikes": "99", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "537", Fraud: "98", Forgery: "62", Arson: "0", }, { Date: "Nov-92", Population: "199021", Felony: "102", Misdemeanor: "1446", DWI: "110", "Traffic Tickets": "2358", "Traffic Warnings": "3004", "All Reportable": "678", "Property Damage": "517", Injury: "160", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "6", Robbery: "7", "Aggravated Assault": "99", "Burglary (Residential)": "96", "Burglary (Non-Residential)": "42", "Auto Theft": "29", "All Thefts": "696", "Stolen Bikes": "48", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "338", Fraud: "85", Forgery: "55", Arson: "0", }, { Date: "Dec-92", Population: "199021", Felony: "99", Misdemeanor: "1255", DWI: "109", "Traffic Tickets": "2663", "Traffic Warnings": "3204", "All Reportable": "767", "Property Damage": "588", Injury: "179", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "10", Robbery: "12", "Aggravated Assault": "70", "Burglary (Residential)": "123", "Burglary (Non-Residential)": "27", "Auto Theft": "18", "All Thefts": "721", "Stolen Bikes": "30", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "362", Fraud: "86", Forgery: "80", Arson: "0", }, { Date: "Jan-93", Population: "202500", Felony: "92", Misdemeanor: "1363", DWI: "82", "Traffic Tickets": "2355", "Traffic Warnings": "5013", "All Reportable": "750", "Property Damage": "604", Injury: "145", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "5", "Aggravated Assault": "73", "Burglary (Residential)": "74", "Burglary (Non-Residential)": "24", "Auto Theft": "26", "All Thefts": "624", "Stolen Bikes": "6", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "238", Fraud: "94", Forgery: "121", Arson: "0", }, { Date: "Feb-93", Population: "202500", Felony: "103", Misdemeanor: "1250", DWI: "94", "Traffic Tickets": "2360", "Traffic Warnings": "3498", "All Reportable": "720", "Property Damage": "562", Injury: "158", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "1", Robbery: "9", "Aggravated Assault": "61", "Burglary (Residential)": "64", "Burglary (Non-Residential)": "21", "Auto Theft": "41", "All Thefts": "614", "Stolen Bikes": "20", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "272", Fraud: "156", Forgery: "74", Arson: "0", }, { Date: "Mar-93", Population: "202500", Felony: "103", Misdemeanor: "1570", DWI: "109", "Traffic Tickets": "3035", "Traffic Warnings": "4712", "All Reportable": "606", "Property Damage": "454", Injury: "152", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "12", "Aggravated Assault": "82", "Burglary (Residential)": "76", "Burglary (Non-Residential)": "33", "Auto Theft": "20", "All Thefts": "709", "Stolen Bikes": "31", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "307", Fraud: "86", Forgery: "139", Arson: "0", }, { Date: "Apr-93", Population: "202500", Felony: "83", Misdemeanor: "1590", DWI: "88", "Traffic Tickets": "2910", "Traffic Warnings": "4401", "All Reportable": "582", "Property Damage": "438", Injury: "144", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "6", "Aggravated Assault": "66", "Burglary (Residential)": "102", "Burglary (Non-Residential)": "44", "Auto Theft": "30", "All Thefts": "736", "Stolen Bikes": "70", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "484", Fraud: "147", Forgery: "62", Arson: "0", }, { Date: "May-93", Population: "202500", Felony: "106", Misdemeanor: "1578", DWI: "70", "Traffic Tickets": "2331", "Traffic Warnings": "3634", "All Reportable": "629", "Property Damage": "444", Injury: "185", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "9", "Aggravated Assault": "58", "Burglary (Residential)": "126", "Burglary (Non-Residential)": "47", "Auto Theft": "44", "All Thefts": "884", "Stolen Bikes": "91", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "444", Fraud: "73", Forgery: "53", Arson: "0", }, { Date: "Jun-93", Population: "202500", Felony: "151", Misdemeanor: "1662", DWI: "75", "Traffic Tickets": "2581", "Traffic Warnings": "4141", "All Reportable": "604", "Property Damage": "419", Injury: "185", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "6", Robbery: "5", "Aggravated Assault": "73", "Burglary (Residential)": "133", "Burglary (Non-Residential)": "52", "Auto Theft": "33", "All Thefts": "905", "Stolen Bikes": "142", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "436", Fraud: "59", Forgery: "61", Arson: "0", }, { Date: "Jul-93", Population: "202500", Felony: "134", Misdemeanor: "1736", DWI: "84", "Traffic Tickets": "2424", "Traffic Warnings": "3915", "All Reportable": "634", "Property Damage": "456", Injury: "178", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "9", Robbery: "12", "Aggravated Assault": "91", "Burglary (Residential)": "166", "Burglary (Non-Residential)": "41", "Auto Theft": "32", "All Thefts": "976", "Stolen Bikes": "169", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "452", Fraud: "78", Forgery: "76", Arson: "0", }, { Date: "Aug-93", Population: "202500", Felony: "149", Misdemeanor: "1734", DWI: "87", "Traffic Tickets": "2835", "Traffic Warnings": "4619", "All Reportable": "643", "Property Damage": "453", Injury: "189", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "12", "Aggravated Assault": "74", "Burglary (Residential)": "204", "Burglary (Non-Residential)": "49", "Auto Theft": "53", "All Thefts": "1068", "Stolen Bikes": "176", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "470", Fraud: "73", Forgery: "88", Arson: "0", }, { Date: "Sep-93", Population: "202500", Felony: "159", Misdemeanor: "1597", DWI: "86", "Traffic Tickets": "3806", "Traffic Warnings": "6063", "All Reportable": "694", "Property Damage": "512", Injury: "182", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "7", Robbery: "16", "Aggravated Assault": "92", "Burglary (Residential)": "158", "Burglary (Non-Residential)": "52", "Auto Theft": "33", "All Thefts": "818", "Stolen Bikes": "102", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "336", Fraud: "93", Forgery: "92", Arson: "0", }, { Date: "Oct-93", Population: "202500", Felony: "150", Misdemeanor: "1682", DWI: "103", "Traffic Tickets": "3479", "Traffic Warnings": "4901", "All Reportable": "698", "Property Damage": "496", Injury: "202", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "16", "Aggravated Assault": "88", "Burglary (Residential)": "138", "Burglary (Non-Residential)": "38", "Auto Theft": "34", "All Thefts": "904", "Stolen Bikes": "103", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "405", Fraud: "165", Forgery: "90", Arson: "0", }, { Date: "Nov-93", Population: "202500", Felony: "119", Misdemeanor: "1609", DWI: "67", "Traffic Tickets": "2672", "Traffic Warnings": "3408", "All Reportable": "713", "Property Damage": "551", Injury: "162", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "3", Robbery: "12", "Aggravated Assault": "62", "Burglary (Residential)": "143", "Burglary (Non-Residential)": "37", "Auto Theft": "48", "All Thefts": "765", "Stolen Bikes": "48", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "432", Fraud: "109", Forgery: "111", Arson: "0", }, { Date: "Dec-93", Population: "202500", Felony: "123", Misdemeanor: "1566", DWI: "153", "Traffic Tickets": "3203", "Traffic Warnings": "4764", "All Reportable": "667", "Property Damage": "513", Injury: "152", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "8", "Aggravated Assault": "72", "Burglary (Residential)": "88", "Burglary (Non-Residential)": "54", "Auto Theft": "30", "All Thefts": "930", "Stolen Bikes": "36", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "377", Fraud: "137", Forgery: "145", Arson: "0", }, { Date: "Jan-94", Population: "204493", Felony: "117", Misdemeanor: "1466", DWI: "109", "Traffic Tickets": "2907", "Traffic Warnings": "4105", "All Reportable": "642", "Property Damage": "492", Injury: "150", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "5", "Aggravated Assault": "72", "Burglary (Residential)": "98", "Burglary (Non-Residential)": "42", "Auto Theft": "41", "All Thefts": "714", "Stolen Bikes": "29", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "374", Fraud: "160", Forgery: "77", Arson: "0", }, { Date: "Feb-94", Population: "204493", Felony: "100", Misdemeanor: "1304", DWI: "79", "Traffic Tickets": "2657", "Traffic Warnings": "3752", "All Reportable": "784", "Property Damage": "614", Injury: "170", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "10", "Aggravated Assault": "45", "Burglary (Residential)": "91", "Burglary (Non-Residential)": "31", "Auto Theft": "34", "All Thefts": "643", "Stolen Bikes": "21", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "353", Fraud: "72", Forgery: "74", Arson: "0", }, { Date: "Mar-94", Population: "204493", Felony: "173", Misdemeanor: "1714", DWI: "127", "Traffic Tickets": "3179", "Traffic Warnings": "4358", "All Reportable": "640", "Property Damage": "473", Injury: "167", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "19", "Aggravated Assault": "106", "Burglary (Residential)": "95", "Burglary (Non-Residential)": "34", "Auto Theft": "28", "All Thefts": "741", "Stolen Bikes": "53", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "500", Fraud: "156", Forgery: "88", Arson: "0", }, { Date: "Apr-94", Population: "204493", Felony: "122", Misdemeanor: "1611", DWI: "105", "Traffic Tickets": "3356", "Traffic Warnings": "4291", "All Reportable": "579", "Property Damage": "429", Injury: "149", Fatality: "1", Homicide: "2", "Rape and Attempted Rape": "9", Robbery: "22", "Aggravated Assault": "81", "Burglary (Residential)": "106", "Burglary (Non-Residential)": "42", "Auto Theft": "37", "All Thefts": "766", "Stolen Bikes": "73", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "441", Fraud: "103", Forgery: "76", Arson: "0", }, { Date: "May-94", Population: "204493", Felony: "130", Misdemeanor: "2008", DWI: "99", "Traffic Tickets": "3558", "Traffic Warnings": "4600", "All Reportable": "592", "Property Damage": "420", Injury: "171", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "14", "Aggravated Assault": "95", "Burglary (Residential)": "117", "Burglary (Non-Residential)": "53", "Auto Theft": "36", "All Thefts": "914", "Stolen Bikes": "114", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "501", Fraud: "90", Forgery: "140", Arson: "0", }, { Date: "Jun-94", Population: "204493", Felony: "153", Misdemeanor: "1787", DWI: "95", "Traffic Tickets": "2961", "Traffic Warnings": "4102", "All Reportable": "553", "Property Damage": "384", Injury: "167", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "14", "Aggravated Assault": "73", "Burglary (Residential)": "143", "Burglary (Non-Residential)": "60", "Auto Theft": "51", "All Thefts": "967", "Stolen Bikes": "169", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "367", Fraud: "147", Forgery: "233", Arson: "0", }, { Date: "Jul-94", Population: "204493", Felony: "139", Misdemeanor: "1921", DWI: "96", "Traffic Tickets": "3073", "Traffic Warnings": "4000", "All Reportable": "613", "Property Damage": "442", Injury: "171", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "10", Robbery: "20", "Aggravated Assault": "78", "Burglary (Residential)": "167", "Burglary (Non-Residential)": "48", "Auto Theft": "46", "All Thefts": "981", "Stolen Bikes": "167", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "543", Fraud: "69", Forgery: "133", Arson: "0", }, { Date: "Aug-94", Population: "204493", Felony: "165", Misdemeanor: "1910", DWI: "107", "Traffic Tickets": "3394", "Traffic Warnings": "3386", "All Reportable": "703", "Property Damage": "501", Injury: "200", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "16", Robbery: "22", "Aggravated Assault": "97", "Burglary (Residential)": "151", "Burglary (Non-Residential)": "46", "Auto Theft": "72", "All Thefts": "1029", "Stolen Bikes": "158", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "533", Fraud: "113", Forgery: "88", Arson: "0", }, { Date: "Sep-94", Population: "204493", Felony: "144", Misdemeanor: "1934", DWI: "87", "Traffic Tickets": "4823", "Traffic Warnings": "3420", "All Reportable": "718", "Property Damage": "501", Injury: "217", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "8", "Aggravated Assault": "104", "Burglary (Residential)": "128", "Burglary (Non-Residential)": "36", "Auto Theft": "57", "All Thefts": "926", "Stolen Bikes": "110", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "449", Fraud: "81", Forgery: "79", Arson: "0", }, { Date: "Oct-94", Population: "204493", Felony: "158", Misdemeanor: "1733", DWI: "103", "Traffic Tickets": "3295", "Traffic Warnings": "2692", "All Reportable": "767", "Property Damage": "545", Injury: "222", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "10", Robbery: "13", "Aggravated Assault": "78", "Burglary (Residential)": "137", "Burglary (Non-Residential)": "52", "Auto Theft": "45", "All Thefts": "972", "Stolen Bikes": "97", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "559", Fraud: "63", Forgery: "142", Arson: "0", }, { Date: "Nov-94", Population: "204493", Felony: "108", Misdemeanor: "1505", DWI: "100", "Traffic Tickets": "2651", "Traffic Warnings": "2741", "All Reportable": "666", "Property Damage": "483", Injury: "182", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "16", "Aggravated Assault": "75", "Burglary (Residential)": "130", "Burglary (Non-Residential)": "40", "Auto Theft": "39", "All Thefts": "813", "Stolen Bikes": "40", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "532", Fraud: "61", Forgery: "80", Arson: "0", }, { Date: "Dec-94", Population: "204493", Felony: "86", Misdemeanor: "1514", DWI: "127", "Traffic Tickets": "3022", "Traffic Warnings": "2698", "All Reportable": "904", "Property Damage": "668", Injury: "235", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "15", "Aggravated Assault": "59", "Burglary (Residential)": "119", "Burglary (Non-Residential)": "35", "Auto Theft": "34", "All Thefts": "792", "Stolen Bikes": "25", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "405", Fraud: "143", Forgery: "107", Arson: "0", }, { Date: "Jan-95", Population: "207154", Felony: "134", Misdemeanor: "1530", DWI: "81", "Traffic Tickets": "3191", "Traffic Warnings": "2879", "All Reportable": "736", "Property Damage": "567", Injury: "169", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "11", "Aggravated Assault": "92", "Burglary (Residential)": "93", "Burglary (Non-Residential)": "27", "Auto Theft": "31", "All Thefts": "768", "Stolen Bikes": "16", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "349", Fraud: "76", Forgery: "80", Arson: "0", }, { Date: "Feb-95", Population: "207154", Felony: "132", Misdemeanor: "1633", DWI: "84", "Traffic Tickets": "3273", "Traffic Warnings": "2987", "All Reportable": "619", "Property Damage": "472", Injury: "147", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "9", "Aggravated Assault": "54", "Burglary (Residential)": "100", "Burglary (Non-Residential)": "35", "Auto Theft": "35", "All Thefts": "714", "Stolen Bikes": "35", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "328", Fraud: "122", Forgery: "85", Arson: "0", }, { Date: "Mar-95", Population: "207154", Felony: "189", Misdemeanor: "1583", DWI: "99", "Traffic Tickets": "3600", "Traffic Warnings": "3388", "All Reportable": "636", "Property Damage": "463", Injury: "173", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "12", "Aggravated Assault": "86", "Burglary (Residential)": "119", "Burglary (Non-Residential)": "49", "Auto Theft": "26", "All Thefts": "743", "Stolen Bikes": "49", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "411", Fraud: "80", Forgery: "152", Arson: "0", }, { Date: "Apr-95", Population: "207154", Felony: "125", Misdemeanor: "1731", DWI: "86", "Traffic Tickets": "3754", "Traffic Warnings": "3321", "All Reportable": "655", "Property Damage": "482", Injury: "173", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "10", "Aggravated Assault": "73", "Burglary (Residential)": "102", "Burglary (Non-Residential)": "25", "Auto Theft": "22", "All Thefts": "820", "Stolen Bikes": "60", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "482", Fraud: "112", Forgery: "171", Arson: "0", }, { Date: "May-95", Population: "207154", Felony: "185", Misdemeanor: "1734", DWI: "103", "Traffic Tickets": "3661", "Traffic Warnings": "1411", "All Reportable": "704", "Property Damage": "492", Injury: "211", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "7", "Aggravated Assault": "102", "Burglary (Residential)": "121", "Burglary (Non-Residential)": "38", "Auto Theft": "33", "All Thefts": "903", "Stolen Bikes": "77", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "467", Fraud: "68", Forgery: "195", Arson: "0", }, { Date: "Jun-95", Population: "207154", Felony: "161", Misdemeanor: "1923", DWI: "69", "Traffic Tickets": "3272", "Traffic Warnings": "4270", "All Reportable": "678", "Property Damage": "488", Injury: "190", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "2", Robbery: "9", "Aggravated Assault": "100", "Burglary (Residential)": "163", "Burglary (Non-Residential)": "24", "Auto Theft": "52", "All Thefts": "911", "Stolen Bikes": "116", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "526", Fraud: "82", Forgery: "177", Arson: "0", }, { Date: "Jul-95", Population: "207154", Felony: "132", Misdemeanor: "2017", DWI: "62", "Traffic Tickets": "3108", "Traffic Warnings": "2658", "All Reportable": "620", "Property Damage": "421", Injury: "199", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "12", Robbery: "5", "Aggravated Assault": "106", "Burglary (Residential)": "144", "Burglary (Non-Residential)": "40", "Auto Theft": "38", "All Thefts": "965", "Stolen Bikes": "177", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "546", Fraud: "87", Forgery: "97", Arson: "0", }, { Date: "Aug-95", Population: "207154", Felony: "146", Misdemeanor: "1858", DWI: "53", "Traffic Tickets": "3680", "Traffic Warnings": "3393", "All Reportable": "699", "Property Damage": "478", Injury: "221", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "12", "Aggravated Assault": "105", "Burglary (Residential)": "145", "Burglary (Non-Residential)": "42", "Auto Theft": "43", "All Thefts": "986", "Stolen Bikes": "139", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "553", Fraud: "89", Forgery: "145", Arson: "0", }, { Date: "Sep-95", Population: "207154", Felony: "121", Misdemeanor: "1797", DWI: "70", "Traffic Tickets": "4918", "Traffic Warnings": "2820", "All Reportable": "687", "Property Damage": "488", Injury: "199", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "16", "Aggravated Assault": "116", "Burglary (Residential)": "144", "Burglary (Non-Residential)": "37", "Auto Theft": "38", "All Thefts": "947", "Stolen Bikes": "155", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "485", Fraud: "88", Forgery: "129", Arson: "0", }, { Date: "Oct-95", Population: "207154", Felony: "131", Misdemeanor: "2119", DWI: "85", "Traffic Tickets": "3697", "Traffic Warnings": "2100", "All Reportable": "785", "Property Damage": "551", Injury: "233", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "21", "Aggravated Assault": "110", "Burglary (Residential)": "99", "Burglary (Non-Residential)": "40", "Auto Theft": "49", "All Thefts": "1075", "Stolen Bikes": "99", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "572", Fraud: "82", Forgery: "153", Arson: "0", }, { Date: "Nov-95", Population: "207154", Felony: "148", Misdemeanor: "1666", DWI: "82", "Traffic Tickets": "4079", "Traffic Warnings": "3764", "All Reportable": "809", "Property Damage": "627", Injury: "182", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "3", Robbery: "4", "Aggravated Assault": "71", "Burglary (Residential)": "91", "Burglary (Non-Residential)": "48", "Auto Theft": "58", "All Thefts": "919", "Stolen Bikes": "44", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "425", Fraud: "38", Forgery: "107", Arson: "0", }, { Date: "Dec-95", Population: "207154", Felony: "150", Misdemeanor: "1542", DWI: "103", "Traffic Tickets": "3545", "Traffic Warnings": "3279", "All Reportable": "745", "Property Damage": "562", Injury: "182", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "3", Robbery: "7", "Aggravated Assault": "69", "Burglary (Residential)": "80", "Burglary (Non-Residential)": "51", "Auto Theft": "43", "All Thefts": "822", "Stolen Bikes": "26", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "456", Fraud: "74", Forgery: "123", Arson: "0", }, { Date: "Jan-96", Population: "209192", Felony: "142", Misdemeanor: "1497", DWI: "98", "Traffic Tickets": "3689", "Traffic Warnings": "2887", "All Reportable": "948", "Property Damage": "744", Injury: "204", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "7", Robbery: "6", "Aggravated Assault": "62", "Burglary (Residential)": "93", "Burglary (Non-Residential)": "29", "Auto Theft": "39", "All Thefts": "744", "Stolen Bikes": "18", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "378", Fraud: "59", Forgery: "107", Arson: "0", }, { Date: "Feb-96", Population: "209192", Felony: "198", Misdemeanor: "1741", DWI: "90", "Traffic Tickets": "4195", "Traffic Warnings": "3450", "All Reportable": "600", "Property Damage": "453", Injury: "147", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "15", Robbery: "14", "Aggravated Assault": "81", "Burglary (Residential)": "105", "Burglary (Non-Residential)": "38", "Auto Theft": "34", "All Thefts": "710", "Stolen Bikes": "28", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "433", Fraud: "80", Forgery: "97", Arson: "0", }, { Date: "Mar-96", Population: "209192", Felony: "187", Misdemeanor: "1521", DWI: "104", "Traffic Tickets": "4532", "Traffic Warnings": "3554", "All Reportable": "732", "Property Damage": "538", Injury: "193", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "3", Robbery: "10", "Aggravated Assault": "78", "Burglary (Residential)": "87", "Burglary (Non-Residential)": "28", "Auto Theft": "43", "All Thefts": "784", "Stolen Bikes": "38", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "389", Fraud: "43", Forgery: "213", Arson: "0", }, { Date: "Apr-96", Population: "209192", Felony: "157", Misdemeanor: "1809", DWI: "118", "Traffic Tickets": "3444", "Traffic Warnings": "3311", "All Reportable": "638", "Property Damage": "444", Injury: "194", Fatality: "0", Homicide: "2", "Rape and Attempted Rape": "8", Robbery: "6", "Aggravated Assault": "86", "Burglary (Residential)": "110", "Burglary (Non-Residential)": "35", "Auto Theft": "39", "All Thefts": "844", "Stolen Bikes": "43", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "476", Fraud: "66", Forgery: "119", Arson: "0", }, { Date: "May-96", Population: "209192", Felony: "166", Misdemeanor: "1962", DWI: "85", "Traffic Tickets": "3654", "Traffic Warnings": "3707", "All Reportable": "695", "Property Damage": "495", Injury: "200", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "8", "Aggravated Assault": "88", "Burglary (Residential)": "121", "Burglary (Non-Residential)": "38", "Auto Theft": "37", "All Thefts": "886", "Stolen Bikes": "71", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "524", Fraud: "81", Forgery: "170", Arson: "0", }, { Date: "Jun-96", Population: "209192", Felony: "114", Misdemeanor: "1832", DWI: "103", "Traffic Tickets": "4559", "Traffic Warnings": "3725", "All Reportable": "663", "Property Damage": "464", Injury: "199", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "5", Robbery: "9", "Aggravated Assault": "90", "Burglary (Residential)": "136", "Burglary (Non-Residential)": "45", "Auto Theft": "53", "All Thefts": "941", "Stolen Bikes": "101", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "520", Fraud: "144", Forgery: "66", Arson: "0", }, { Date: "Jul-96", Population: "209192", Felony: "195", Misdemeanor: "2184", DWI: "96", "Traffic Tickets": "3023", "Traffic Warnings": "2921", "All Reportable": "652", "Property Damage": "453", Injury: "199", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "14", "Aggravated Assault": "93", "Burglary (Residential)": "148", "Burglary (Non-Residential)": "45", "Auto Theft": "57", "All Thefts": "1126", "Stolen Bikes": "162", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "560", Fraud: "102", Forgery: "72", Arson: "0", }, { Date: "Aug-96", Population: "209192", Felony: "192", Misdemeanor: "1917", DWI: "80", "Traffic Tickets": "4510", "Traffic Warnings": "3467", "All Reportable": "744", "Property Damage": "522", Injury: "222", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "10", "Aggravated Assault": "81", "Burglary (Residential)": "133", "Burglary (Non-Residential)": "42", "Auto Theft": "39", "All Thefts": "1040", "Stolen Bikes": "159", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "595", Fraud: "80", Forgery: "167", Arson: "0", }, { Date: "Sep-96", Population: "209192", Felony: "136", Misdemeanor: "1911", DWI: "88", "Traffic Tickets": "4317", "Traffic Warnings": "3563", "All Reportable": "742", "Property Damage": "548", Injury: "192", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "17", "Aggravated Assault": "90", "Burglary (Residential)": "149", "Burglary (Non-Residential)": "46", "Auto Theft": "47", "All Thefts": "1019", "Stolen Bikes": "133", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "563", Fraud: "60", Forgery: "110", Arson: "0", }, { Date: "Oct-96", Population: "209192", Felony: "189", Misdemeanor: "1942", DWI: "71", "Traffic Tickets": "3066", "Traffic Warnings": "2646", "All Reportable": "760", "Property Damage": "577", Injury: "183", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "7", "Aggravated Assault": "81", "Burglary (Residential)": "120", "Burglary (Non-Residential)": "42", "Auto Theft": "56", "All Thefts": "945", "Stolen Bikes": "69", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "483", Fraud: "97", Forgery: "143", Arson: "0", }, { Date: "Nov-96", Population: "209192", Felony: "140", Misdemeanor: "1446", DWI: "80", "Traffic Tickets": "2866", "Traffic Warnings": "2245", "All Reportable": "767", "Property Damage": "553", Injury: "214", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "24", "Aggravated Assault": "63", "Burglary (Residential)": "81", "Burglary (Non-Residential)": "55", "Auto Theft": "48", "All Thefts": "754", "Stolen Bikes": "41", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "423", Fraud: "50", Forgery: "139", Arson: "0", }, { Date: "Dec-96", Population: "209192", Felony: "129", Misdemeanor: "1599", DWI: "111", "Traffic Tickets": "3384", "Traffic Warnings": "3471", "All Reportable": "825", "Property Damage": "631", Injury: "192", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "15", "Aggravated Assault": "71", "Burglary (Residential)": "87", "Burglary (Non-Residential)": "43", "Auto Theft": "31", "All Thefts": "764", "Stolen Bikes": "14", "Theft From Vehicles": "0", Shoplifting: "0", Vandalism: "459", Fraud: "62", Forgery: "238", Arson: "0", }, { Date: "Jan-97", Population: "211552", Felony: "145", Misdemeanor: "1394", DWI: "90", "Traffic Tickets": "3278", "Traffic Warnings": "3145", "All Reportable": "847", "Property Damage": "649", Injury: "197", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "11", "Aggravated Assault": "81", "Burglary (Residential)": "82", "Burglary (Non-Residential)": "45", "Auto Theft": "64", "All Thefts": "699", "Stolen Bikes": "11", "Theft From Vehicles": "259", Shoplifting: "150", Vandalism: "481", Fraud: "63", Forgery: "158", Arson: "0", }, { Date: "Feb-97", Population: "211552", Felony: "142", Misdemeanor: "1484", DWI: "108", "Traffic Tickets": "3778", "Traffic Warnings": "3981", "All Reportable": "710", "Property Damage": "540", Injury: "169", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "9", Robbery: "11", "Aggravated Assault": "43", "Burglary (Residential)": "55", "Burglary (Non-Residential)": "39", "Auto Theft": "40", "All Thefts": "692", "Stolen Bikes": "17", "Theft From Vehicles": "260", Shoplifting: "122", Vandalism: "459", Fraud: "88", Forgery: "132", Arson: "0", }, { Date: "Mar-97", Population: "211552", Felony: "178", Misdemeanor: "1686", DWI: "88", "Traffic Tickets": "3113", "Traffic Warnings": "4915", "All Reportable": "557", "Property Damage": "422", Injury: "134", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "18", "Aggravated Assault": "80", "Burglary (Residential)": "97", "Burglary (Non-Residential)": "37", "Auto Theft": "30", "All Thefts": "906", "Stolen Bikes": "40", "Theft From Vehicles": "337", Shoplifting: "176", Vandalism: "511", Fraud: "129", Forgery: "137", Arson: "0", }, { Date: "Apr-97", Population: "211552", Felony: "132", Misdemeanor: "1778", DWI: "87", "Traffic Tickets": "3064", "Traffic Warnings": "2836", "All Reportable": "674", "Property Damage": "505", Injury: "168", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "14", "Aggravated Assault": "68", "Burglary (Residential)": "76", "Burglary (Non-Residential)": "25", "Auto Theft": "29", "All Thefts": "887", "Stolen Bikes": "45", "Theft From Vehicles": "390", Shoplifting: "136", Vandalism: "423", Fraud: "113", Forgery: "137", Arson: "0", }, { Date: "May-97", Population: "211552", Felony: "205", Misdemeanor: "1846", DWI: "88", "Traffic Tickets": "3947", "Traffic Warnings": "3261", "All Reportable": "722", "Property Damage": "515", Injury: "207", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "12", "Aggravated Assault": "89", "Burglary (Residential)": "113", "Burglary (Non-Residential)": "42", "Auto Theft": "43", "All Thefts": "871", "Stolen Bikes": "52", "Theft From Vehicles": "376", Shoplifting: "144", Vandalism: "538", Fraud: "78", Forgery: "113", Arson: "0", }, { Date: "Jun-97", Population: "211552", Felony: "185", Misdemeanor: "1724", DWI: "96", "Traffic Tickets": "3730", "Traffic Warnings": "3257", "All Reportable": "689", "Property Damage": "475", Injury: "213", Fatality: "1", Homicide: "2", "Rape and Attempted Rape": "9", Robbery: "8", "Aggravated Assault": "71", "Burglary (Residential)": "108", "Burglary (Non-Residential)": "60", "Auto Theft": "59", "All Thefts": "844", "Stolen Bikes": "115", "Theft From Vehicles": "307", Shoplifting: "126", Vandalism: "466", Fraud: "84", Forgery: "94", Arson: "0", }, { Date: "Jul-97", Population: "211552", Felony: "228", Misdemeanor: "1989", DWI: "83", "Traffic Tickets": "3280", "Traffic Warnings": "2945", "All Reportable": "685", "Property Damage": "502", Injury: "182", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "9", Robbery: "12", "Aggravated Assault": "85", "Burglary (Residential)": "166", "Burglary (Non-Residential)": "39", "Auto Theft": "56", "All Thefts": "1059", "Stolen Bikes": "131", "Theft From Vehicles": "446", Shoplifting: "139", Vandalism: "486", Fraud: "92", Forgery: "70", Arson: "0", }, { Date: "Aug-97", Population: "211552", Felony: "182", Misdemeanor: "1845", DWI: "95", "Traffic Tickets": "4269", "Traffic Warnings": "3334", "All Reportable": "738", "Property Damage": "528", Injury: "209", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "11", "Aggravated Assault": "80", "Burglary (Residential)": "141", "Burglary (Non-Residential)": "49", "Auto Theft": "40", "All Thefts": "1065", "Stolen Bikes": "155", "Theft From Vehicles": "419", Shoplifting: "144", Vandalism: "502", Fraud: "67", Forgery: "133", Arson: "0", }, { Date: "Sep-97", Population: "211552", Felony: "158", Misdemeanor: "1865", DWI: "106", "Traffic Tickets": "3644", "Traffic Warnings": "2624", "All Reportable": "728", "Property Damage": "533", Injury: "195", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "6", Robbery: "11", "Aggravated Assault": "60", "Burglary (Residential)": "125", "Burglary (Non-Residential)": "23", "Auto Theft": "65", "All Thefts": "905", "Stolen Bikes": "108", "Theft From Vehicles": "386", Shoplifting: "110", Vandalism: "463", Fraud: "50", Forgery: "94", Arson: "0", }, { Date: "Oct-97", Population: "211552", Felony: "193", Misdemeanor: "1737", DWI: "86", "Traffic Tickets": "3732", "Traffic Warnings": "2762", "All Reportable": "859", "Property Damage": "629", Injury: "230", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "15", "Aggravated Assault": "67", "Burglary (Residential)": "126", "Burglary (Non-Residential)": "40", "Auto Theft": "51", "All Thefts": "977", "Stolen Bikes": "89", "Theft From Vehicles": "415", Shoplifting: "140", Vandalism: "422", Fraud: "55", Forgery: "120", Arson: "0", }, { Date: "Nov-97", Population: "211552", Felony: "159", Misdemeanor: "1632", DWI: "97", "Traffic Tickets": "3112", "Traffic Warnings": "2504", "All Reportable": "702", "Property Damage": "531", Injury: "170", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "14", "Aggravated Assault": "74", "Burglary (Residential)": "109", "Burglary (Non-Residential)": "19", "Auto Theft": "42", "All Thefts": "856", "Stolen Bikes": "40", "Theft From Vehicles": "336", Shoplifting: "140", Vandalism: "374", Fraud: "88", Forgery: "96", Arson: "0", }, { Date: "Dec-97", Population: "211552", Felony: "181", Misdemeanor: "1536", DWI: "116", "Traffic Tickets": "3716", "Traffic Warnings": "3039", "All Reportable": "739", "Property Damage": "555", Injury: "183", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "8", Robbery: "10", "Aggravated Assault": "57", "Burglary (Residential)": "80", "Burglary (Non-Residential)": "52", "Auto Theft": "23", "All Thefts": "819", "Stolen Bikes": "27", "Theft From Vehicles": "250", Shoplifting: "153", Vandalism: "310", Fraud: "50", Forgery: "79", Arson: "0", }, { Date: "Jan-98", Population: "213836", Felony: "175", Misdemeanor: "1457", DWI: "92", "Traffic Tickets": "3724", "Traffic Warnings": "3654", "All Reportable": "898", "Property Damage": "699", Injury: "199", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "12", "Aggravated Assault": "74", "Burglary (Residential)": "108", "Burglary (Non-Residential)": "37", "Auto Theft": "28", "All Thefts": "784", "Stolen Bikes": "15", "Theft From Vehicles": "336", Shoplifting: "145", Vandalism: "336", Fraud: "77", Forgery: "162", Arson: "0", }, { Date: "Feb-98", Population: "213836", Felony: "178", Misdemeanor: "1814", DWI: "113", "Traffic Tickets": "3616", "Traffic Warnings": "3236", "All Reportable": "599", "Property Damage": "444", Injury: "154", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "18", "Aggravated Assault": "71", "Burglary (Residential)": "81", "Burglary (Non-Residential)": "22", "Auto Theft": "34", "All Thefts": "707", "Stolen Bikes": "27", "Theft From Vehicles": "273", Shoplifting: "120", Vandalism: "400", Fraud: "69", Forgery: "142", Arson: "0", }, { Date: "Mar-98", Population: "213836", Felony: "149", Misdemeanor: "1751", DWI: "154", "Traffic Tickets": "3389", "Traffic Warnings": "3315", "All Reportable": "834", "Property Damage": "638", Injury: "195", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "21", "Aggravated Assault": "64", "Burglary (Residential)": "93", "Burglary (Non-Residential)": "43", "Auto Theft": "33", "All Thefts": "796", "Stolen Bikes": "25", "Theft From Vehicles": "371", Shoplifting: "130", Vandalism: "346", Fraud: "91", Forgery: "150", Arson: "0", }, { Date: "Apr-98", Population: "213836", Felony: "190", Misdemeanor: "1762", DWI: "94", "Traffic Tickets": "3547", "Traffic Warnings": "3113", "All Reportable": "653", "Property Damage": "473", Injury: "179", Fatality: "1", Homicide: "3", "Rape and Attempted Rape": "10", Robbery: "24", "Aggravated Assault": "65", "Burglary (Residential)": "114", "Burglary (Non-Residential)": "34", "Auto Theft": "46", "All Thefts": "865", "Stolen Bikes": "60", "Theft From Vehicles": "337", Shoplifting: "122", Vandalism: "413", Fraud: "63", Forgery: "128", Arson: "0", }, { Date: "May-98", Population: "213836", Felony: "193", Misdemeanor: "2039", DWI: "128", "Traffic Tickets": "4633", "Traffic Warnings": "4048", "All Reportable": "731", "Property Damage": "542", Injury: "189", Fatality: "0", Homicide: "4", "Rape and Attempted Rape": "9", Robbery: "15", "Aggravated Assault": "107", "Burglary (Residential)": "129", "Burglary (Non-Residential)": "34", "Auto Theft": "36", "All Thefts": "895", "Stolen Bikes": "72", "Theft From Vehicles": "352", Shoplifting: "132", Vandalism: "511", Fraud: "69", Forgery: "104", Arson: "0", }, { Date: "Jun-98", Population: "213836", Felony: "147", Misdemeanor: "1759", DWI: "91", "Traffic Tickets": "4228", "Traffic Warnings": "3778", "All Reportable": "670", "Property Damage": "500", Injury: "168", Fatality: "2", Homicide: "1", "Rape and Attempted Rape": "9", Robbery: "13", "Aggravated Assault": "69", "Burglary (Residential)": "140", "Burglary (Non-Residential)": "42", "Auto Theft": "51", "All Thefts": "858", "Stolen Bikes": "74", "Theft From Vehicles": "365", Shoplifting: "111", Vandalism: "458", Fraud: "113", Forgery: "85", Arson: "0", }, { Date: "Jul-98", Population: "213836", Felony: "182", Misdemeanor: "1664", DWI: "82", "Traffic Tickets": "4204", "Traffic Warnings": "4378", "All Reportable": "676", "Property Damage": "492", Injury: "184", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "13", "Aggravated Assault": "69", "Burglary (Residential)": "159", "Burglary (Non-Residential)": "52", "Auto Theft": "44", "All Thefts": "956", "Stolen Bikes": "149", "Theft From Vehicles": "353", Shoplifting: "135", Vandalism: "428", Fraud: "60", Forgery: "154", Arson: "0", }, { Date: "Aug-98", Population: "213836", Felony: "145", Misdemeanor: "1888", DWI: "141", "Traffic Tickets": "4841", "Traffic Warnings": "4150", "All Reportable": "735", "Property Damage": "530", Injury: "203", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "8", "Aggravated Assault": "85", "Burglary (Residential)": "137", "Burglary (Non-Residential)": "45", "Auto Theft": "35", "All Thefts": "1120", "Stolen Bikes": "125", "Theft From Vehicles": "532", Shoplifting: "137", Vandalism: "484", Fraud: "77", Forgery: "111", Arson: "0", }, { Date: "Sep-98", Population: "213836", Felony: "124", Misdemeanor: "1763", DWI: "96", "Traffic Tickets": "4200", "Traffic Warnings": "0", "All Reportable": "738", "Property Damage": "536", Injury: "201", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "10", "Aggravated Assault": "71", "Burglary (Residential)": "169", "Burglary (Non-Residential)": "36", "Auto Theft": "49", "All Thefts": "977", "Stolen Bikes": "92", "Theft From Vehicles": "482", Shoplifting: "122", Vandalism: "441", Fraud: "66", Forgery: "156", Arson: "0", }, { Date: "Oct-98", Population: "213836", Felony: "205", Misdemeanor: "1921", DWI: "107", "Traffic Tickets": "3835", "Traffic Warnings": "3206", "All Reportable": "893", "Property Damage": "655", Injury: "237", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "3", Robbery: "20", "Aggravated Assault": "85", "Burglary (Residential)": "151", "Burglary (Non-Residential)": "30", "Auto Theft": "38", "All Thefts": "868", "Stolen Bikes": "68", "Theft From Vehicles": "349", Shoplifting: "139", Vandalism: "610", Fraud: "74", Forgery: "99", Arson: "0", }, { Date: "Nov-98", Population: "213836", Felony: "179", Misdemeanor: "1722", DWI: "160", "Traffic Tickets": "3775", "Traffic Warnings": "3452", "All Reportable": "737", "Property Damage": "550", Injury: "186", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "3", "Aggravated Assault": "56", "Burglary (Residential)": "114", "Burglary (Non-Residential)": "23", "Auto Theft": "36", "All Thefts": "790", "Stolen Bikes": "25", "Theft From Vehicles": "345", Shoplifting: "135", Vandalism: "449", Fraud: "81", Forgery: "91", Arson: "0", }, { Date: "Dec-98", Population: "213836", Felony: "196", Misdemeanor: "1641", DWI: "167", "Traffic Tickets": "3671", "Traffic Warnings": "3688", "All Reportable": "696", "Property Damage": "526", Injury: "167", Fatality: "3", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "15", "Aggravated Assault": "55", "Burglary (Residential)": "104", "Burglary (Non-Residential)": "55", "Auto Theft": "35", "All Thefts": "733", "Stolen Bikes": "36", "Theft From Vehicles": "240", Shoplifting: "159", Vandalism: "412", Fraud: "82", Forgery: "143", Arson: "0", }, { Date: "Jan-99", Population: "215928", Felony: "203", Misdemeanor: "1484", DWI: "139", "Traffic Tickets": "3799", "Traffic Warnings": "3573", "All Reportable": "731", "Property Damage": "586", Injury: "145", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "16", "Aggravated Assault": "77", "Burglary (Residential)": "81", "Burglary (Non-Residential)": "62", "Auto Theft": "40", "All Thefts": "688", "Stolen Bikes": "4", "Theft From Vehicles": "306", Shoplifting: "112", Vandalism: "350", Fraud: "81", Forgery: "187", Arson: "0", }, { Date: "Feb-99", Population: "215928", Felony: "167", Misdemeanor: "1551", DWI: "141", "Traffic Tickets": "3487", "Traffic Warnings": "2885", "All Reportable": "710", "Property Damage": "547", Injury: "162", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "6", Robbery: "10", "Aggravated Assault": "64", "Burglary (Residential)": "98", "Burglary (Non-Residential)": "46", "Auto Theft": "34", "All Thefts": "644", "Stolen Bikes": "22", "Theft From Vehicles": "289", Shoplifting: "114", Vandalism: "368", Fraud: "73", Forgery: "141", Arson: "0", }, { Date: "Mar-99", Population: "215928", Felony: "196", Misdemeanor: "1914", DWI: "221", "Traffic Tickets": "4262", "Traffic Warnings": "4133", "All Reportable": "698", "Property Damage": "549", Injury: "149", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "8", Robbery: "23", "Aggravated Assault": "70", "Burglary (Residential)": "92", "Burglary (Non-Residential)": "41", "Auto Theft": "33", "All Thefts": "692", "Stolen Bikes": "29", "Theft From Vehicles": "263", Shoplifting: "151", Vandalism: "477", Fraud: "64", Forgery: "158", Arson: "0", }, { Date: "Apr-99", Population: "215928", Felony: "180", Misdemeanor: "1819", DWI: "125", "Traffic Tickets": "3341", "Traffic Warnings": "3299", "All Reportable": "724", "Property Damage": "545", Injury: "179", Fatality: "0", Homicide: "2", "Rape and Attempted Rape": "5", Robbery: "4", "Aggravated Assault": "87", "Burglary (Residential)": "97", "Burglary (Non-Residential)": "29", "Auto Theft": "29", "All Thefts": "745", "Stolen Bikes": "31", "Theft From Vehicles": "299", Shoplifting: "144", Vandalism: "430", Fraud: "38", Forgery: "143", Arson: "0", }, { Date: "May-99", Population: "215928", Felony: "184", Misdemeanor: "1699", DWI: "124", "Traffic Tickets": "4370", "Traffic Warnings": "3745", "All Reportable": "667", "Property Damage": "507", Injury: "160", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "10", Robbery: "14", "Aggravated Assault": "71", "Burglary (Residential)": "109", "Burglary (Non-Residential)": "30", "Auto Theft": "46", "All Thefts": "834", "Stolen Bikes": "60", "Theft From Vehicles": "355", Shoplifting: "124", Vandalism: "482", Fraud: "56", Forgery: "150", Arson: "0", }, { Date: "Jun-99", Population: "215928", Felony: "155", Misdemeanor: "1808", DWI: "101", "Traffic Tickets": "3573", "Traffic Warnings": "3636", "All Reportable": "756", "Property Damage": "536", Injury: "220", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "18", "Aggravated Assault": "59", "Burglary (Residential)": "129", "Burglary (Non-Residential)": "42", "Auto Theft": "36", "All Thefts": "896", "Stolen Bikes": "91", "Theft From Vehicles": "368", Shoplifting: "136", Vandalism: "487", Fraud: "65", Forgery: "62", Arson: "0", }, { Date: "Jul-99", Population: "215928", Felony: "218", Misdemeanor: "1928", DWI: "115", "Traffic Tickets": "3970", "Traffic Warnings": "3206", "All Reportable": "786", "Property Damage": "546", Injury: "238", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "12", "Aggravated Assault": "89", "Burglary (Residential)": "123", "Burglary (Non-Residential)": "49", "Auto Theft": "49", "All Thefts": "879", "Stolen Bikes": "115", "Theft From Vehicles": "348", Shoplifting: "106", Vandalism: "494", Fraud: "67", Forgery: "142", Arson: "0", }, { Date: "Aug-99", Population: "215928", Felony: "167", Misdemeanor: "2061", DWI: "85", "Traffic Tickets": "4031", "Traffic Warnings": "4439", "All Reportable": "764", "Property Damage": "557", Injury: "207", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "6", Robbery: "13", "Aggravated Assault": "103", "Burglary (Residential)": "123", "Burglary (Non-Residential)": "57", "Auto Theft": "39", "All Thefts": "925", "Stolen Bikes": "103", "Theft From Vehicles": "398", Shoplifting: "108", Vandalism: "517", Fraud: "82", Forgery: "179", Arson: "0", }, { Date: "Sep-99", Population: "215928", Felony: "185", Misdemeanor: "2022", DWI: "125", "Traffic Tickets": "3719", "Traffic Warnings": "2930", "All Reportable": "735", "Property Damage": "525", Injury: "210", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "1", Robbery: "18", "Aggravated Assault": "92", "Burglary (Residential)": "133", "Burglary (Non-Residential)": "47", "Auto Theft": "43", "All Thefts": "845", "Stolen Bikes": "85", "Theft From Vehicles": "298", Shoplifting: "137", Vandalism: "428", Fraud: "47", Forgery: "88", Arson: "0", }, { Date: "Oct-99", Population: "215928", Felony: "172", Misdemeanor: "1931", DWI: "127", "Traffic Tickets": "3594", "Traffic Warnings": "2577", "All Reportable": "718", "Property Damage": "516", Injury: "200", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "15", "Aggravated Assault": "78", "Burglary (Residential)": "102", "Burglary (Non-Residential)": "36", "Auto Theft": "52", "All Thefts": "833", "Stolen Bikes": "61", "Theft From Vehicles": "316", Shoplifting: "144", Vandalism: "601", Fraud: "62", Forgery: "118", Arson: "0", }, { Date: "Nov-99", Population: "215928", Felony: "147", Misdemeanor: "1700", DWI: "107", "Traffic Tickets": "3163", "Traffic Warnings": "2355", "All Reportable": "721", "Property Damage": "536", Injury: "185", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "17", Robbery: "8", "Aggravated Assault": "72", "Burglary (Residential)": "108", "Burglary (Non-Residential)": "49", "Auto Theft": "38", "All Thefts": "865", "Stolen Bikes": "41", "Theft From Vehicles": "357", Shoplifting: "108", Vandalism: "456", Fraud: "101", Forgery: "122", Arson: "0", }, { Date: "Dec-99", Population: "215928", Felony: "149", Misdemeanor: "1692", DWI: "186", "Traffic Tickets": "3515", "Traffic Warnings": "2689", "All Reportable": "815", "Property Damage": "643", Injury: "171", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "2", Robbery: "10", "Aggravated Assault": "63", "Burglary (Residential)": "89", "Burglary (Non-Residential)": "63", "Auto Theft": "49", "All Thefts": "795", "Stolen Bikes": "16", "Theft From Vehicles": "253", Shoplifting: "135", Vandalism: "341", Fraud: "73", Forgery: "204", Arson: "0", }, { Date: "Jan-00", Population: "225581", Felony: "175", Misdemeanor: "1685", DWI: "128", "Traffic Tickets": "3398", "Traffic Warnings": "3129", "All Reportable": "691", "Property Damage": "537", Injury: "154", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "8", Robbery: "11", "Aggravated Assault": "47", "Burglary (Residential)": "100", "Burglary (Non-Residential)": "47", "Auto Theft": "44", "All Thefts": "723", "Stolen Bikes": "24", "Theft From Vehicles": "340", Shoplifting: "89", Vandalism: "444", Fraud: "78", Forgery: "117", Arson: "0", }, { Date: "Feb-00", Population: "225581", Felony: "186", Misdemeanor: "1645", DWI: "89", "Traffic Tickets": "2775", "Traffic Warnings": "2317", "All Reportable": "707", "Property Damage": "538", Injury: "168", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "5", Robbery: "9", "Aggravated Assault": "62", "Burglary (Residential)": "109", "Burglary (Non-Residential)": "38", "Auto Theft": "47", "All Thefts": "799", "Stolen Bikes": "19", "Theft From Vehicles": "403", Shoplifting: "108", Vandalism: "422", Fraud: "94", Forgery: "86", Arson: "0", }, { Date: "Mar-00", Population: "225581", Felony: "174", Misdemeanor: "2194", DWI: "125", "Traffic Tickets": "3208", "Traffic Warnings": "2984", "All Reportable": "726", "Property Damage": "537", Injury: "189", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "15", "Aggravated Assault": "90", "Burglary (Residential)": "113", "Burglary (Non-Residential)": "89", "Auto Theft": "39", "All Thefts": "952", "Stolen Bikes": "35", "Theft From Vehicles": "504", Shoplifting: "117", Vandalism: "463", Fraud: "74", Forgery: "178", Arson: "0", }, { Date: "Apr-00", Population: "225581", Felony: "242", Misdemeanor: "1825", DWI: "97", "Traffic Tickets": "3138", "Traffic Warnings": "2467", "All Reportable": "677", "Property Damage": "487", Injury: "189", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "3", "Aggravated Assault": "82", "Burglary (Residential)": "107", "Burglary (Non-Residential)": "47", "Auto Theft": "31", "All Thefts": "719", "Stolen Bikes": "36", "Theft From Vehicles": "267", Shoplifting: "109", Vandalism: "393", Fraud: "85", Forgery: "66", Arson: "0", }, { Date: "May-00", Population: "225581", Felony: "171", Misdemeanor: "1800", DWI: "75", "Traffic Tickets": "4183", "Traffic Warnings": "3585", "All Reportable": "826", "Property Damage": "610", Injury: "215", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "11", "Aggravated Assault": "70", "Burglary (Residential)": "124", "Burglary (Non-Residential)": "32", "Auto Theft": "46", "All Thefts": "878", "Stolen Bikes": "63", "Theft From Vehicles": "347", Shoplifting: "143", Vandalism: "450", Fraud: "74", Forgery: "75", Arson: "0", }, { Date: "Jun-00", Population: "225581", Felony: "155", Misdemeanor: "2000", DWI: "91", "Traffic Tickets": "3669", "Traffic Warnings": "3158", "All Reportable": "722", "Property Damage": "541", Injury: "179", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "7", "Aggravated Assault": "76", "Burglary (Residential)": "124", "Burglary (Non-Residential)": "29", "Auto Theft": "51", "All Thefts": "964", "Stolen Bikes": "93", "Theft From Vehicles": "347", Shoplifting: "113", Vandalism: "530", Fraud: "82", Forgery: "121", Arson: "0", }, { Date: "Jul-00", Population: "225581", Felony: "196", Misdemeanor: "2190", DWI: "96", "Traffic Tickets": "3369", "Traffic Warnings": "2527", "All Reportable": "700", "Property Damage": "508", Injury: "191", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "18", "Aggravated Assault": "90", "Burglary (Residential)": "151", "Burglary (Non-Residential)": "65", "Auto Theft": "41", "All Thefts": "988", "Stolen Bikes": "101", "Theft From Vehicles": "401", Shoplifting: "132", Vandalism: "666", Fraud: "80", Forgery: "78", Arson: "0", }, { Date: "Aug-00", Population: "225581", Felony: "176", Misdemeanor: "2160", DWI: "108", "Traffic Tickets": "4499", "Traffic Warnings": "3317", "All Reportable": "705", "Property Damage": "517", Injury: "187", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "17", "Aggravated Assault": "79", "Burglary (Residential)": "139", "Burglary (Non-Residential)": "36", "Auto Theft": "34", "All Thefts": "1048", "Stolen Bikes": "113", "Theft From Vehicles": "418", Shoplifting: "133", Vandalism: "566", Fraud: "69", Forgery: "172", Arson: "0", }, { Date: "Sep-00", Population: "225581", Felony: "160", Misdemeanor: "2132", DWI: "87", "Traffic Tickets": "4353", "Traffic Warnings": "3388", "All Reportable": "749", "Property Damage": "565", Injury: "183", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "10", Robbery: "8", "Aggravated Assault": "92", "Burglary (Residential)": "107", "Burglary (Non-Residential)": "28", "Auto Theft": "28", "All Thefts": "903", "Stolen Bikes": "87", "Theft From Vehicles": "355", Shoplifting: "134", Vandalism: "407", Fraud: "89", Forgery: "117", Arson: "0", }, { Date: "Oct-00", Population: "225581", Felony: "134", Misdemeanor: "2013", DWI: "138", "Traffic Tickets": "3509", "Traffic Warnings": "3194", "All Reportable": "727", "Property Damage": "540", Injury: "186", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "20", "Aggravated Assault": "93", "Burglary (Residential)": "144", "Burglary (Non-Residential)": "27", "Auto Theft": "39", "All Thefts": "925", "Stolen Bikes": "72", "Theft From Vehicles": "333", Shoplifting: "121", Vandalism: "595", Fraud: "81", Forgery: "74", Arson: "0", }, { Date: "Nov-00", Population: "225581", Felony: "196", Misdemeanor: "1621", DWI: "102", "Traffic Tickets": "3315", "Traffic Warnings": "3341", "All Reportable": "777", "Property Damage": "595", Injury: "181", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "12", "Aggravated Assault": "66", "Burglary (Residential)": "110", "Burglary (Non-Residential)": "34", "Auto Theft": "44", "All Thefts": "744", "Stolen Bikes": "29", "Theft From Vehicles": "240", Shoplifting: "165", Vandalism: "528", Fraud: "51", Forgery: "82", Arson: "0", }, { Date: "Dec-00", Population: "225581", Felony: "135", Misdemeanor: "1606", DWI: "251", "Traffic Tickets": "4051", "Traffic Warnings": "3506", "All Reportable": "1046", "Property Damage": "859", Injury: "187", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "2", Robbery: "10", "Aggravated Assault": "56", "Burglary (Residential)": "77", "Burglary (Non-Residential)": "37", "Auto Theft": "39", "All Thefts": "617", "Stolen Bikes": "8", "Theft From Vehicles": "159", Shoplifting: "112", Vandalism: "310", Fraud: "64", Forgery: "102", Arson: "0", }, { Date: "Jan-01", Population: "230400", Felony: "185", Misdemeanor: "1791", DWI: "130", "Traffic Tickets": "4072", "Traffic Warnings": "3521", "All Reportable": "901", "Property Damage": "711", Injury: "188", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "2", Robbery: "15", "Aggravated Assault": "83", "Burglary (Residential)": "100", "Burglary (Non-Residential)": "44", "Auto Theft": "33", "All Thefts": "684", "Stolen Bikes": "9", "Theft From Vehicles": "229", Shoplifting: "116", Vandalism: "401", Fraud: "70", Forgery: "91", Arson: "0", }, { Date: "Feb-01", Population: "230400", Felony: "127", Misdemeanor: "1629", DWI: "106", "Traffic Tickets": "3347", "Traffic Warnings": "2933", "All Reportable": "1013", "Property Damage": "845", Injury: "168", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "13", "Aggravated Assault": "61", "Burglary (Residential)": "59", "Burglary (Non-Residential)": "21", "Auto Theft": "42", "All Thefts": "465", "Stolen Bikes": "10", "Theft From Vehicles": "129", Shoplifting: "90", Vandalism: "277", Fraud: "126", Forgery: "90", Arson: "0", }, { Date: "Mar-01", Population: "230400", Felony: "195", Misdemeanor: "2182", DWI: "126", "Traffic Tickets": "4013", "Traffic Warnings": "3974", "All Reportable": "678", "Property Damage": "522", Injury: "155", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "4", Robbery: "7", "Aggravated Assault": "101", "Burglary (Residential)": "92", "Burglary (Non-Residential)": "38", "Auto Theft": "47", "All Thefts": "772", "Stolen Bikes": "24", "Theft From Vehicles": "282", Shoplifting: "129", Vandalism: "705", Fraud: "118", Forgery: "203", Arson: "0", }, { Date: "Apr-01", Population: "230400", Felony: "209", Misdemeanor: "1989", DWI: "121", "Traffic Tickets": "3995", "Traffic Warnings": "3665", "All Reportable": "693", "Property Damage": "502", Injury: "191", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "10", "Aggravated Assault": "84", "Burglary (Residential)": "106", "Burglary (Non-Residential)": "30", "Auto Theft": "42", "All Thefts": "919", "Stolen Bikes": "41", "Theft From Vehicles": "401", Shoplifting: "138", Vandalism: "534", Fraud: "78", Forgery: "226", Arson: "0", }, { Date: "May-01", Population: "230400", Felony: "180", Misdemeanor: "2053", DWI: "110", "Traffic Tickets": "5805", "Traffic Warnings": "4960", "All Reportable": "753", "Property Damage": "571", Injury: "178", Fatality: "4", Homicide: "0", "Rape and Attempted Rape": "4", Robbery: "15", "Aggravated Assault": "86", "Burglary (Residential)": "131", "Burglary (Non-Residential)": "45", "Auto Theft": "46", "All Thefts": "901", "Stolen Bikes": "61", "Theft From Vehicles": "338", Shoplifting: "131", Vandalism: "449", Fraud: "101", Forgery: "158", Arson: "0", }, { Date: "Jun-01", Population: "230400", Felony: "183", Misdemeanor: "1959", DWI: "113", "Traffic Tickets": "4300", "Traffic Warnings": "3529", "All Reportable": "721", "Property Damage": "531", Injury: "189", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "12", Robbery: "20", "Aggravated Assault": "87", "Burglary (Residential)": "107", "Burglary (Non-Residential)": "49", "Auto Theft": "53", "All Thefts": "1037", "Stolen Bikes": "107", "Theft From Vehicles": "403", Shoplifting: "177", Vandalism: "512", Fraud: "80", Forgery: "113", Arson: "0", }, { Date: "Jul-01", Population: "230400", Felony: "234", Misdemeanor: "2018", DWI: "99", "Traffic Tickets": "3915", "Traffic Warnings": "4616", "All Reportable": "706", "Property Damage": "533", Injury: "172", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "9", "Aggravated Assault": "102", "Burglary (Residential)": "129", "Burglary (Non-Residential)": "51", "Auto Theft": "71", "All Thefts": "1039", "Stolen Bikes": "113", "Theft From Vehicles": "454", Shoplifting: "174", Vandalism: "489", Fraud: "99", Forgery: "113", Arson: "0", }, { Date: "Aug-01", Population: "230400", Felony: "230", Misdemeanor: "2095", DWI: "91", "Traffic Tickets": "5259", "Traffic Warnings": "4292", "All Reportable": "668", "Property Damage": "482", Injury: "186", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "11", Robbery: "15", "Aggravated Assault": "82", "Burglary (Residential)": "150", "Burglary (Non-Residential)": "59", "Auto Theft": "56", "All Thefts": "1152", "Stolen Bikes": "149", "Theft From Vehicles": "476", Shoplifting: "150", Vandalism: "473", Fraud: "95", Forgery: "102", Arson: "0", }, { Date: "Sep-01", Population: "230400", Felony: "179", Misdemeanor: "1999", DWI: "104", "Traffic Tickets": "3135", "Traffic Warnings": "2603", "All Reportable": "716", "Property Damage": "532", Injury: "183", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "11", "Aggravated Assault": "94", "Burglary (Residential)": "138", "Burglary (Non-Residential)": "65", "Auto Theft": "55", "All Thefts": "1003", "Stolen Bikes": "106", "Theft From Vehicles": "379", Shoplifting: "122", Vandalism: "423", Fraud: "89", Forgery: "131", Arson: "0", }, { Date: "Oct-01", Population: "230400", Felony: "208", Misdemeanor: "2083", DWI: "110", "Traffic Tickets": "3832", "Traffic Warnings": "3446", "All Reportable": "857", "Property Damage": "635", Injury: "222", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "11", Robbery: "14", "Aggravated Assault": "86", "Burglary (Residential)": "131", "Burglary (Non-Residential)": "52", "Auto Theft": "49", "All Thefts": "1100", "Stolen Bikes": "79", "Theft From Vehicles": "533", Shoplifting: "126", Vandalism: "537", Fraud: "97", Forgery: "230", Arson: "0", }, { Date: "Nov-01", Population: "230400", Felony: "210", Misdemeanor: "1934", DWI: "120", "Traffic Tickets": "3843", "Traffic Warnings": "3657", "All Reportable": "740", "Property Damage": "561", Injury: "177", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "2", Robbery: "10", "Aggravated Assault": "69", "Burglary (Residential)": "124", "Burglary (Non-Residential)": "29", "Auto Theft": "36", "All Thefts": "1117", "Stolen Bikes": "47", "Theft From Vehicles": "588", Shoplifting: "147", Vandalism: "521", Fraud: "89", Forgery: "136", Arson: "0", }, { Date: "Dec-01", Population: "230400", Felony: "177", Misdemeanor: "1778", DWI: "267", "Traffic Tickets": "3954", "Traffic Warnings": "3450", "All Reportable": "807", "Property Damage": "623", Injury: "184", Fatality: "0", Homicide: "2", "Rape and Attempted Rape": "8", Robbery: "12", "Aggravated Assault": "75", "Burglary (Residential)": "128", "Burglary (Non-Residential)": "27", "Auto Theft": "33", "All Thefts": "872", "Stolen Bikes": "27", "Theft From Vehicles": "334", Shoplifting: "154", Vandalism: "426", Fraud: "72", Forgery: "94", Arson: "0", }, { Date: "Jan-02", Population: "233737", Felony: "183", Misdemeanor: "1707", DWI: "124", "Traffic Tickets": "3846", "Traffic Warnings": "4225", "All Reportable": "688", "Property Damage": "548", Injury: "139", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "5", Robbery: "14", "Aggravated Assault": "78", "Burglary (Residential)": "119", "Burglary (Non-Residential)": "45", "Auto Theft": "39", "All Thefts": "796", "Stolen Bikes": "31", "Theft From Vehicles": "323", Shoplifting: "135", Vandalism: "529", Fraud: "120", Forgery: "135", Arson: "0", }, { Date: "Feb-02", Population: "233737", Felony: "242", Misdemeanor: "1669", DWI: "127", "Traffic Tickets": "3935", "Traffic Warnings": "3832", "All Reportable": "672", "Property Damage": "513", Injury: "158", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "7", "Aggravated Assault": "70", "Burglary (Residential)": "96", "Burglary (Non-Residential)": "10", "Auto Theft": "34", "All Thefts": "697", "Stolen Bikes": "19", "Theft From Vehicles": "306", Shoplifting: "107", Vandalism: "338", Fraud: "84", Forgery: "214", Arson: "0", }, { Date: "Mar-02", Population: "233737", Felony: "239", Misdemeanor: "1943", DWI: "146", "Traffic Tickets": "4361", "Traffic Warnings": "3586", "All Reportable": "830", "Property Damage": "645", Injury: "185", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "4", Robbery: "7", "Aggravated Assault": "76", "Burglary (Residential)": "92", "Burglary (Non-Residential)": "22", "Auto Theft": "38", "All Thefts": "965", "Stolen Bikes": "22", "Theft From Vehicles": "466", Shoplifting: "125", Vandalism: "462", Fraud: "73", Forgery: "232", Arson: "0", }, { Date: "Apr-02", Population: "233737", Felony: "193", Misdemeanor: "2247", DWI: "115", "Traffic Tickets": "4340", "Traffic Warnings": "4055", "All Reportable": "685", "Property Damage": "512", Injury: "172", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "11", Robbery: "13", "Aggravated Assault": "90", "Burglary (Residential)": "117", "Burglary (Non-Residential)": "39", "Auto Theft": "45", "All Thefts": "872", "Stolen Bikes": "52", "Theft From Vehicles": "313", Shoplifting: "144", Vandalism: "438", Fraud: "68", Forgery: "218", Arson: "0", }, { Date: "May-02", Population: "233737", Felony: "209", Misdemeanor: "2023", DWI: "146", "Traffic Tickets": "5492", "Traffic Warnings": "3914", "All Reportable": "814", "Property Damage": "605", Injury: "209", Fatality: "0", Homicide: "2", "Rape and Attempted Rape": "9", Robbery: "28", "Aggravated Assault": "88", "Burglary (Residential)": "103", "Burglary (Non-Residential)": "19", "Auto Theft": "38", "All Thefts": "903", "Stolen Bikes": "57", "Theft From Vehicles": "391", Shoplifting: "149", Vandalism: "471", Fraud: "92", Forgery: "140", Arson: "0", }, { Date: "Jun-02", Population: "233737", Felony: "169", Misdemeanor: "2014", DWI: "105", "Traffic Tickets": "4913", "Traffic Warnings": "3860", "All Reportable": "705", "Property Damage": "516", Injury: "188", Fatality: "1", Homicide: "2", "Rape and Attempted Rape": "8", Robbery: "14", "Aggravated Assault": "79", "Burglary (Residential)": "143", "Burglary (Non-Residential)": "33", "Auto Theft": "43", "All Thefts": "910", "Stolen Bikes": "91", "Theft From Vehicles": "373", Shoplifting: "97", Vandalism: "518", Fraud: "58", Forgery: "111", Arson: "0", }, { Date: "Jul-02", Population: "233737", Felony: "226", Misdemeanor: "1970", DWI: "98", "Traffic Tickets": "4703", "Traffic Warnings": "3437", "All Reportable": "689", "Property Damage": "519", Injury: "169", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "13", "Aggravated Assault": "104", "Burglary (Residential)": "158", "Burglary (Non-Residential)": "68", "Auto Theft": "43", "All Thefts": "1053", "Stolen Bikes": "108", "Theft From Vehicles": "449", Shoplifting: "122", Vandalism: "618", Fraud: "95", Forgery: "181", Arson: "0", }, { Date: "Aug-02", Population: "233737", Felony: "199", Misdemeanor: "2196", DWI: "115", "Traffic Tickets": "4805", "Traffic Warnings": "3178", "All Reportable": "774", "Property Damage": "557", Injury: "215", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "14", Robbery: "15", "Aggravated Assault": "86", "Burglary (Residential)": "130", "Burglary (Non-Residential)": "58", "Auto Theft": "47", "All Thefts": "1090", "Stolen Bikes": "131", "Theft From Vehicles": "463", Shoplifting: "141", Vandalism: "579", Fraud: "120", Forgery: "173", Arson: "0", }, { Date: "Sep-02", Population: "233737", Felony: "249", Misdemeanor: "2137", DWI: "128", "Traffic Tickets": "4557", "Traffic Warnings": "2763", "All Reportable": "750", "Property Damage": "547", Injury: "203", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "19", "Aggravated Assault": "87", "Burglary (Residential)": "117", "Burglary (Non-Residential)": "55", "Auto Theft": "47", "All Thefts": "1052", "Stolen Bikes": "106", "Theft From Vehicles": "453", Shoplifting: "122", Vandalism: "539", Fraud: "83", Forgery: "138", Arson: "0", }, { Date: "Oct-02", Population: "233737", Felony: "174", Misdemeanor: "1938", DWI: "118", "Traffic Tickets": "3851", "Traffic Warnings": "2490", "All Reportable": "852", "Property Damage": "635", Injury: "216", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "15", "Aggravated Assault": "69", "Burglary (Residential)": "85", "Burglary (Non-Residential)": "76", "Auto Theft": "55", "All Thefts": "923", "Stolen Bikes": "54", "Theft From Vehicles": "359", Shoplifting: "157", Vandalism: "471", Fraud: "90", Forgery: "226", Arson: "0", }, { Date: "Nov-02", Population: "233737", Felony: "192", Misdemeanor: "1707", DWI: "130", "Traffic Tickets": "3830", "Traffic Warnings": "2825", "All Reportable": "804", "Property Damage": "614", Injury: "188", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "18", "Aggravated Assault": "58", "Burglary (Residential)": "105", "Burglary (Non-Residential)": "91", "Auto Theft": "48", "All Thefts": "814", "Stolen Bikes": "24", "Theft From Vehicles": "323", Shoplifting: "156", Vandalism: "476", Fraud: "96", Forgery: "211", Arson: "0", }, { Date: "Dec-02", Population: "233737", Felony: "167", Misdemeanor: "1690", DWI: "166", "Traffic Tickets": "4210", "Traffic Warnings": "3576", "All Reportable": "694", "Property Damage": "521", Injury: "173", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "14", "Aggravated Assault": "62", "Burglary (Residential)": "115", "Burglary (Non-Residential)": "68", "Auto Theft": "36", "All Thefts": "930", "Stolen Bikes": "16", "Theft From Vehicles": "398", Shoplifting: "119", Vandalism: "555", Fraud: "101", Forgery: "219", Arson: "0", }, { Date: "Jan-03", Population: "237356", Felony: "178", Misdemeanor: "1457", DWI: "115", "Traffic Tickets": "3434", "Traffic Warnings": "2601", "All Reportable": "742", "Property Damage": "596", Injury: "144", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "23", "Aggravated Assault": "61", "Burglary (Residential)": "92", "Burglary (Non-Residential)": "81", "Auto Theft": "25", "All Thefts": "765", "Stolen Bikes": "14", "Theft From Vehicles": "313", Shoplifting: "118", Vandalism: "457", Fraud: "95", Forgery: "273", Arson: "0", }, { Date: "Feb-03", Population: "237356", Felony: "180", Misdemeanor: "1433", DWI: "76", "Traffic Tickets": "3537", "Traffic Warnings": "2106", "All Reportable": "929", "Property Damage": "737", Injury: "192", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "3", Robbery: "10", "Aggravated Assault": "65", "Burglary (Residential)": "67", "Burglary (Non-Residential)": "24", "Auto Theft": "33", "All Thefts": "654", "Stolen Bikes": "8", "Theft From Vehicles": "266", Shoplifting: "110", Vandalism: "336", Fraud: "60", Forgery: "221", Arson: "0", }, { Date: "Mar-03", Population: "237356", Felony: "244", Misdemeanor: "2041", DWI: "162", "Traffic Tickets": "4138", "Traffic Warnings": "2317", "All Reportable": "714", "Property Damage": "573", Injury: "140", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "8", Robbery: "9", "Aggravated Assault": "79", "Burglary (Residential)": "95", "Burglary (Non-Residential)": "81", "Auto Theft": "50", "All Thefts": "945", "Stolen Bikes": "17", "Theft From Vehicles": "460", Shoplifting: "118", Vandalism: "589", Fraud: "113", Forgery: "249", Arson: "0", }, { Date: "Apr-03", Population: "237356", Felony: "165", Misdemeanor: "1927", DWI: "83", "Traffic Tickets": "4431", "Traffic Warnings": "2474", "All Reportable": "768", "Property Damage": "576", Injury: "191", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "5", Robbery: "12", "Aggravated Assault": "76", "Burglary (Residential)": "96", "Burglary (Non-Residential)": "43", "Auto Theft": "52", "All Thefts": "823", "Stolen Bikes": "24", "Theft From Vehicles": "347", Shoplifting: "139", Vandalism: "531", Fraud: "91", Forgery: "183", Arson: "0", }, { Date: "May-03", Population: "237356", Felony: "154", Misdemeanor: "2088", DWI: "95", "Traffic Tickets": "5124", "Traffic Warnings": "2460", "All Reportable": "803", "Property Damage": "599", Injury: "202", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "15", "Aggravated Assault": "85", "Burglary (Residential)": "94", "Burglary (Non-Residential)": "61", "Auto Theft": "38", "All Thefts": "1035", "Stolen Bikes": "52", "Theft From Vehicles": "456", Shoplifting: "134", Vandalism: "537", Fraud: "84", Forgery: "148", Arson: "0", }, { Date: "Jun-03", Population: "237356", Felony: "198", Misdemeanor: "1973", DWI: "105", "Traffic Tickets": "3929", "Traffic Warnings": "2385", "All Reportable": "737", "Property Damage": "553", Injury: "182", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "16", "Aggravated Assault": "72", "Burglary (Residential)": "150", "Burglary (Non-Residential)": "68", "Auto Theft": "43", "All Thefts": "938", "Stolen Bikes": "62", "Theft From Vehicles": "402", Shoplifting: "125", Vandalism: "478", Fraud: "94", Forgery: "273", Arson: "0", }, { Date: "Jul-03", Population: "237356", Felony: "194", Misdemeanor: "1962", DWI: "96", "Traffic Tickets": "4425", "Traffic Warnings": "2786", "All Reportable": "738", "Property Damage": "558", Injury: "179", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "9", Robbery: "11", "Aggravated Assault": "73", "Burglary (Residential)": "121", "Burglary (Non-Residential)": "56", "Auto Theft": "35", "All Thefts": "988", "Stolen Bikes": "108", "Theft From Vehicles": "385", Shoplifting: "131", Vandalism: "832", Fraud: "95", Forgery: "239", Arson: "0", }, { Date: "Aug-03", Population: "237356", Felony: "183", Misdemeanor: "2190", DWI: "97", "Traffic Tickets": "3870", "Traffic Warnings": "2614", "All Reportable": "666", "Property Damage": "510", Injury: "155", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "9", "Aggravated Assault": "75", "Burglary (Residential)": "123", "Burglary (Non-Residential)": "35", "Auto Theft": "45", "All Thefts": "1011", "Stolen Bikes": "81", "Theft From Vehicles": "427", Shoplifting: "137", Vandalism: "485", Fraud: "99", Forgery: "286", Arson: "0", }, { Date: "Sep-03", Population: "237356", Felony: "156", Misdemeanor: "1828", DWI: "98", "Traffic Tickets": "3854", "Traffic Warnings": "2847", "All Reportable": "757", "Property Damage": "567", Injury: "190", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "10", "Aggravated Assault": "82", "Burglary (Residential)": "126", "Burglary (Non-Residential)": "37", "Auto Theft": "37", "All Thefts": "966", "Stolen Bikes": "76", "Theft From Vehicles": "359", Shoplifting: "134", Vandalism: "471", Fraud: "88", Forgery: "151", Arson: "0", }, { Date: "Oct-03", Population: "237356", Felony: "209", Misdemeanor: "1883", DWI: "116", "Traffic Tickets": "3905", "Traffic Warnings": "2261", "All Reportable": "809", "Property Damage": "623", Injury: "181", Fatality: "5", Homicide: "1", "Rape and Attempted Rape": "13", Robbery: "11", "Aggravated Assault": "68", "Burglary (Residential)": "122", "Burglary (Non-Residential)": "56", "Auto Theft": "41", "All Thefts": "1038", "Stolen Bikes": "54", "Theft From Vehicles": "374", Shoplifting: "145", Vandalism: "529", Fraud: "87", Forgery: "230", Arson: "0", }, { Date: "Nov-03", Population: "237356", Felony: "165", Misdemeanor: "1712", DWI: "115", "Traffic Tickets": "3868", "Traffic Warnings": "2431", "All Reportable": "734", "Property Damage": "590", Injury: "140", Fatality: "4", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "10", "Aggravated Assault": "53", "Burglary (Residential)": "99", "Burglary (Non-Residential)": "44", "Auto Theft": "31", "All Thefts": "817", "Stolen Bikes": "28", "Theft From Vehicles": "315", Shoplifting: "115", Vandalism: "488", Fraud: "89", Forgery: "156", Arson: "0", }, { Date: "Dec-03", Population: "237356", Felony: "163", Misdemeanor: "1560", DWI: "182", "Traffic Tickets": "3690", "Traffic Warnings": "3058", "All Reportable": "893", "Property Damage": "727", Injury: "165", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "10", "Aggravated Assault": "48", "Burglary (Residential)": "101", "Burglary (Non-Residential)": "40", "Auto Theft": "39", "All Thefts": "815", "Stolen Bikes": "15", "Theft From Vehicles": "308", Shoplifting: "107", Vandalism: "496", Fraud: "97", Forgery: "160", Arson: "0", }, { Date: "Jan-04", Population: "239417", Felony: "127", Misdemeanor: "1593", DWI: "153", "Traffic Tickets": "3516", "Traffic Warnings": "2818", "All Reportable": "730", "Property Damage": "568", Injury: "162", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "17", "Aggravated Assault": "58", "Burglary (Residential)": "63", "Burglary (Non-Residential)": "19", "Auto Theft": "29", "All Thefts": "771", "Stolen Bikes": "7", "Theft From Vehicles": "286", Shoplifting: "143", Vandalism: "390", Fraud: "88", Forgery: "228", Arson: "0", }, { Date: "Feb-04", Population: "239417", Felony: "164", Misdemeanor: "1712", DWI: "128", "Traffic Tickets": "3984", "Traffic Warnings": "3602", "All Reportable": "851", "Property Damage": "689", Injury: "162", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "16", "Aggravated Assault": "53", "Burglary (Residential)": "67", "Burglary (Non-Residential)": "27", "Auto Theft": "43", "All Thefts": "619", "Stolen Bikes": "5", "Theft From Vehicles": "193", Shoplifting: "103", Vandalism: "298", Fraud: "84", Forgery: "62", Arson: "0", }, { Date: "Mar-04", Population: "239417", Felony: "227", Misdemeanor: "2154", DWI: "147", "Traffic Tickets": "4713", "Traffic Warnings": "3561", "All Reportable": "588", "Property Damage": "460", Injury: "128", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "15", Robbery: "16", "Aggravated Assault": "67", "Burglary (Residential)": "107", "Burglary (Non-Residential)": "43", "Auto Theft": "42", "All Thefts": "804", "Stolen Bikes": "35", "Theft From Vehicles": "281", Shoplifting: "129", Vandalism: "452", Fraud: "81", Forgery: "127", Arson: "0", }, { Date: "Apr-04", Population: "239417", Felony: "232", Misdemeanor: "1807", DWI: "119", "Traffic Tickets": "5334", "Traffic Warnings": "4078", "All Reportable": "635", "Property Damage": "455", Injury: "179", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "16", Robbery: "10", "Aggravated Assault": "70", "Burglary (Residential)": "111", "Burglary (Non-Residential)": "33", "Auto Theft": "24", "All Thefts": "805", "Stolen Bikes": "34", "Theft From Vehicles": "317", Shoplifting: "105", Vandalism: "410", Fraud: "91", Forgery: "87", Arson: "0", }, { Date: "May-04", Population: "239417", Felony: "160", Misdemeanor: "1891", DWI: "139", "Traffic Tickets": "5408", "Traffic Warnings": "4199", "All Reportable": "650", "Property Damage": "483", Injury: "167", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "11", "Aggravated Assault": "73", "Burglary (Residential)": "87", "Burglary (Non-Residential)": "55", "Auto Theft": "28", "All Thefts": "888", "Stolen Bikes": "54", "Theft From Vehicles": "318", Shoplifting: "121", Vandalism: "508", Fraud: "92", Forgery: "91", Arson: "0", }, { Date: "Jun-04", Population: "239417", Felony: "191", Misdemeanor: "2035", DWI: "127", "Traffic Tickets": "4983", "Traffic Warnings": "4406", "All Reportable": "717", "Property Damage": "526", Injury: "190", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "9", Robbery: "17", "Aggravated Assault": "92", "Burglary (Residential)": "113", "Burglary (Non-Residential)": "62", "Auto Theft": "46", "All Thefts": "1034", "Stolen Bikes": "86", "Theft From Vehicles": "396", Shoplifting: "127", Vandalism: "475", Fraud: "82", Forgery: "140", Arson: "0", }, { Date: "Jul-04", Population: "239417", Felony: "195", Misdemeanor: "1939", DWI: "110", "Traffic Tickets": "4369", "Traffic Warnings": "3615", "All Reportable": "734", "Property Damage": "533", Injury: "201", Fatality: "0", Homicide: "2", "Rape and Attempted Rape": "9", Robbery: "8", "Aggravated Assault": "82", "Burglary (Residential)": "146", "Burglary (Non-Residential)": "45", "Auto Theft": "39", "All Thefts": "1062", "Stolen Bikes": "90", "Theft From Vehicles": "441", Shoplifting: "124", Vandalism: "457", Fraud: "113", Forgery: "169", Arson: "0", }, { Date: "Aug-04", Population: "239417", Felony: "196", Misdemeanor: "2167", DWI: "134", "Traffic Tickets": "4180", "Traffic Warnings": "4621", "All Reportable": "654", "Property Damage": "477", Injury: "176", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "6", Robbery: "23", "Aggravated Assault": "85", "Burglary (Residential)": "142", "Burglary (Non-Residential)": "55", "Auto Theft": "33", "All Thefts": "952", "Stolen Bikes": "83", "Theft From Vehicles": "363", Shoplifting: "126", Vandalism: "528", Fraud: "120", Forgery: "182", Arson: "0", }, { Date: "Sep-04", Population: "239417", Felony: "164", Misdemeanor: "2092", DWI: "106", "Traffic Tickets": "4454", "Traffic Warnings": "4168", "All Reportable": "688", "Property Damage": "497", Injury: "191", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "11", Robbery: "17", "Aggravated Assault": "68", "Burglary (Residential)": "114", "Burglary (Non-Residential)": "28", "Auto Theft": "25", "All Thefts": "954", "Stolen Bikes": "84", "Theft From Vehicles": "363", Shoplifting: "119", Vandalism: "367", Fraud: "102", Forgery: "78", Arson: "0", }, { Date: "Oct-04", Population: "239417", Felony: "155", Misdemeanor: "2109", DWI: "126", "Traffic Tickets": "3883", "Traffic Warnings": "3214", "All Reportable": "675", "Property Damage": "485", Injury: "189", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "23", "Aggravated Assault": "83", "Burglary (Residential)": "121", "Burglary (Non-Residential)": "66", "Auto Theft": "38", "All Thefts": "997", "Stolen Bikes": "53", "Theft From Vehicles": "348", Shoplifting: "154", Vandalism: "548", Fraud: "89", Forgery: "133", Arson: "0", }, { Date: "Nov-04", Population: "239417", Felony: "181", Misdemeanor: "1588", DWI: "143", "Traffic Tickets": "3475", "Traffic Warnings": "3234", "All Reportable": "661", "Property Damage": "496", Injury: "164", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "7", Robbery: "23", "Aggravated Assault": "58", "Burglary (Residential)": "115", "Burglary (Non-Residential)": "57", "Auto Theft": "20", "All Thefts": "831", "Stolen Bikes": "14", "Theft From Vehicles": "332", Shoplifting: "129", Vandalism: "438", Fraud: "104", Forgery: "167", Arson: "0", }, { Date: "Dec-04", Population: "239417", Felony: "204", Misdemeanor: "1774", DWI: "213", "Traffic Tickets": "4159", "Traffic Warnings": "4219", "All Reportable": "668", "Property Damage": "512", Injury: "155", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "10", "Aggravated Assault": "77", "Burglary (Residential)": "126", "Burglary (Non-Residential)": "48", "Auto Theft": "38", "All Thefts": "879", "Stolen Bikes": "21", "Theft From Vehicles": "264", Shoplifting: "143", Vandalism: "475", Fraud: "101", Forgery: "113", Arson: "0", }, { Date: "Jan-05", Population: "242009", Felony: "126", Misdemeanor: "1511", DWI: "131", "Traffic Tickets": "3729", "Traffic Warnings": "4545", "All Reportable": "1006", "Property Damage": "840", Injury: "165", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "11", "Aggravated Assault": "57", "Burglary (Residential)": "63", "Burglary (Non-Residential)": "47", "Auto Theft": "20", "All Thefts": "731", "Stolen Bikes": "8", "Theft From Vehicles": "300", Shoplifting: "122", Vandalism: "414", Fraud: "55", Forgery: "55", Arson: "0", }, { Date: "Feb-05", Population: "242009", Felony: "163", Misdemeanor: "1727", DWI: "113", "Traffic Tickets": "4354", "Traffic Warnings": "4692", "All Reportable": "794", "Property Damage": "658", Injury: "134", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "10", "Aggravated Assault": "65", "Burglary (Residential)": "75", "Burglary (Non-Residential)": "64", "Auto Theft": "22", "All Thefts": "695", "Stolen Bikes": "12", "Theft From Vehicles": "280", Shoplifting: "133", Vandalism: "365", Fraud: "70", Forgery: "99", Arson: "0", }, { Date: "Mar-05", Population: "242009", Felony: "202", Misdemeanor: "2069", DWI: "111", "Traffic Tickets": "5564", "Traffic Warnings": "5036", "All Reportable": "665", "Property Damage": "517", Injury: "148", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "15", "Aggravated Assault": "83", "Burglary (Residential)": "103", "Burglary (Non-Residential)": "48", "Auto Theft": "50", "All Thefts": "870", "Stolen Bikes": "32", "Theft From Vehicles": "310", Shoplifting: "133", Vandalism: "524", Fraud: "69", Forgery: "196", Arson: "0", }, { Date: "Apr-05", Population: "242009", Felony: "244", Misdemeanor: "2054", DWI: "118", "Traffic Tickets": "4506", "Traffic Warnings": "3589", "All Reportable": "799", "Property Damage": "637", Injury: "162", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "14", Robbery: "17", "Aggravated Assault": "106", "Burglary (Residential)": "108", "Burglary (Non-Residential)": "40", "Auto Theft": "44", "All Thefts": "928", "Stolen Bikes": "39", "Theft From Vehicles": "371", Shoplifting: "113", Vandalism: "375", Fraud: "103", Forgery: "86", Arson: "0", }, { Date: "May-05", Population: "242009", Felony: "231", Misdemeanor: "2453", DWI: "138", "Traffic Tickets": "5513", "Traffic Warnings": "4696", "All Reportable": "770", "Property Damage": "607", Injury: "161", Fatality: "2", Homicide: "1", "Rape and Attempted Rape": "6", Robbery: "22", "Aggravated Assault": "101", "Burglary (Residential)": "115", "Burglary (Non-Residential)": "60", "Auto Theft": "55", "All Thefts": "969", "Stolen Bikes": "60", "Theft From Vehicles": "324", Shoplifting: "129", Vandalism: "538", Fraud: "101", Forgery: "169", Arson: "0", }, { Date: "Jun-05", Population: "242009", Felony: "198", Misdemeanor: "2094", DWI: "124", "Traffic Tickets": "5648", "Traffic Warnings": "4968", "All Reportable": "807", "Property Damage": "638", Injury: "169", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "12", "Aggravated Assault": "80", "Burglary (Residential)": "113", "Burglary (Non-Residential)": "38", "Auto Theft": "35", "All Thefts": "885", "Stolen Bikes": "85", "Theft From Vehicles": "350", Shoplifting: "95", Vandalism: "503", Fraud: "76", Forgery: "106", Arson: "0", }, { Date: "Jul-05", Population: "242009", Felony: "259", Misdemeanor: "2212", DWI: "154", "Traffic Tickets": "5415", "Traffic Warnings": "5415", "All Reportable": "702", "Property Damage": "554", Injury: "148", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "22", "Aggravated Assault": "72", "Burglary (Residential)": "120", "Burglary (Non-Residential)": "47", "Auto Theft": "26", "All Thefts": "807", "Stolen Bikes": "79", "Theft From Vehicles": "258", Shoplifting: "106", Vandalism: "495", Fraud: "93", Forgery: "115", Arson: "0", }, { Date: "Aug-05", Population: "242009", Felony: "211", Misdemeanor: "2320", DWI: "142", "Traffic Tickets": "5330", "Traffic Warnings": "5922", "All Reportable": "786", "Property Damage": "633", Injury: "151", Fatality: "2", Homicide: "1", "Rape and Attempted Rape": "8", Robbery: "21", "Aggravated Assault": "78", "Burglary (Residential)": "127", "Burglary (Non-Residential)": "51", "Auto Theft": "41", "All Thefts": "925", "Stolen Bikes": "85", "Theft From Vehicles": "306", Shoplifting: "138", Vandalism: "484", Fraud: "97", Forgery: "138", Arson: "0", }, { Date: "Sep-05", Population: "242009", Felony: "182", Misdemeanor: "2086", DWI: "115", "Traffic Tickets": "4213", "Traffic Warnings": "3675", "All Reportable": "699", "Property Damage": "549", Injury: "150", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "19", "Aggravated Assault": "90", "Burglary (Residential)": "112", "Burglary (Non-Residential)": "33", "Auto Theft": "27", "All Thefts": "892", "Stolen Bikes": "78", "Theft From Vehicles": "304", Shoplifting: "124", Vandalism: "398", Fraud: "78", Forgery: "99", Arson: "0", }, { Date: "Oct-05", Population: "242009", Felony: "249", Misdemeanor: "2094", DWI: "145", "Traffic Tickets": "4500", "Traffic Warnings": "4265", "All Reportable": "769", "Property Damage": "604", Injury: "163", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "31", "Aggravated Assault": "92", "Burglary (Residential)": "139", "Burglary (Non-Residential)": "42", "Auto Theft": "32", "All Thefts": "941", "Stolen Bikes": "78", "Theft From Vehicles": "278", Shoplifting: "144", Vandalism: "656", Fraud: "75", Forgery: "171", Arson: "0", }, { Date: "Nov-05", Population: "242009", Felony: "192", Misdemeanor: "1778", DWI: "111", "Traffic Tickets": "4689", "Traffic Warnings": "4091", "All Reportable": "745", "Property Damage": "602", Injury: "143", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "25", "Aggravated Assault": "97", "Burglary (Residential)": "102", "Burglary (Non-Residential)": "61", "Auto Theft": "26", "All Thefts": "739", "Stolen Bikes": "24", "Theft From Vehicles": "208", Shoplifting: "133", Vandalism: "663", Fraud: "87", Forgery: "253", Arson: "0", }, { Date: "Dec-05", Population: "242009", Felony: "171", Misdemeanor: "1685", DWI: "198", "Traffic Tickets": "4271", "Traffic Warnings": "5002", "All Reportable": "1043", "Property Damage": "880", Injury: "163", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "9", Robbery: "20", "Aggravated Assault": "68", "Burglary (Residential)": "95", "Burglary (Non-Residential)": "28", "Auto Theft": "26", "All Thefts": "726", "Stolen Bikes": "15", "Theft From Vehicles": "231", Shoplifting: "121", Vandalism: "329", Fraud: "96", Forgery: "101", Arson: "0", }, { Date: "Jan-06", Population: "244653", Felony: "192", Misdemeanor: "2183", DWI: "156", "Traffic Tickets": "5575", "Traffic Warnings": "5962", "All Reportable": "586", "Property Damage": "462", Injury: "124", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "9", "Aggravated Assault": "69", "Burglary (Residential)": "109", "Burglary (Non-Residential)": "29", "Auto Theft": "33", "All Thefts": "715", "Stolen Bikes": "24", "Theft From Vehicles": "180", Shoplifting: "122", Vandalism: "472", Fraud: "89", Forgery: "141", Arson: "0", }, { Date: "Feb-06", Population: "244653", Felony: "219", Misdemeanor: "1976", DWI: "134", "Traffic Tickets": "4219", "Traffic Warnings": "4400", "All Reportable": "662", "Property Damage": "534", Injury: "128", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "10", Robbery: "14", "Aggravated Assault": "78", "Burglary (Residential)": "75", "Burglary (Non-Residential)": "18", "Auto Theft": "24", "All Thefts": "556", "Stolen Bikes": "19", "Theft From Vehicles": "127", Shoplifting: "99", Vandalism: "396", Fraud: "93", Forgery: "190", Arson: "0", }, { Date: "Mar-06", Population: "244653", Felony: "239", Misdemeanor: "2237", DWI: "178", "Traffic Tickets": "4436", "Traffic Warnings": "5160", "All Reportable": "697", "Property Damage": "556", Injury: "140", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "16", "Aggravated Assault": "63", "Burglary (Residential)": "87", "Burglary (Non-Residential)": "56", "Auto Theft": "25", "All Thefts": "703", "Stolen Bikes": "23", "Theft From Vehicles": "226", Shoplifting: "125", Vandalism: "441", Fraud: "76", Forgery: "146", Arson: "0", }, { Date: "Apr-06", Population: "244653", Felony: "195", Misdemeanor: "2318", DWI: "149", "Traffic Tickets": "4114", "Traffic Warnings": "4159", "All Reportable": "726", "Property Damage": "545", Injury: "180", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "10", "Aggravated Assault": "98", "Burglary (Residential)": "119", "Burglary (Non-Residential)": "32", "Auto Theft": "27", "All Thefts": "692", "Stolen Bikes": "41", "Theft From Vehicles": "225", Shoplifting: "97", Vandalism: "461", Fraud: "73", Forgery: "100", Arson: "0", }, { Date: "May-06", Population: "244653", Felony: "222", Misdemeanor: "2265", DWI: "163", "Traffic Tickets": "5158", "Traffic Warnings": "4828", "All Reportable": "712", "Property Damage": "527", Injury: "184", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "15", Robbery: "13", "Aggravated Assault": "69", "Burglary (Residential)": "121", "Burglary (Non-Residential)": "23", "Auto Theft": "31", "All Thefts": "827", "Stolen Bikes": "62", "Theft From Vehicles": "227", Shoplifting: "100", Vandalism: "488", Fraud: "99", Forgery: "243", Arson: "0", }, { Date: "Jun-06", Population: "244653", Felony: "176", Misdemeanor: "1905", DWI: "119", "Traffic Tickets": "4682", "Traffic Warnings": "4071", "All Reportable": "733", "Property Damage": "564", Injury: "168", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "13", "Aggravated Assault": "73", "Burglary (Residential)": "134", "Burglary (Non-Residential)": "72", "Auto Theft": "39", "All Thefts": "873", "Stolen Bikes": "95", "Theft From Vehicles": "300", Shoplifting: "121", Vandalism: "549", Fraud: "112", Forgery: "100", Arson: "0", }, { Date: "Jul-06", Population: "244653", Felony: "235", Misdemeanor: "2198", DWI: "141", "Traffic Tickets": "4134", "Traffic Warnings": "3778", "All Reportable": "675", "Property Damage": "519", Injury: "156", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "9", Robbery: "15", "Aggravated Assault": "98", "Burglary (Residential)": "143", "Burglary (Non-Residential)": "70", "Auto Theft": "46", "All Thefts": "1047", "Stolen Bikes": "119", "Theft From Vehicles": "404", Shoplifting: "123", Vandalism: "578", Fraud: "85", Forgery: "115", Arson: "0", }, { Date: "Aug-06", Population: "244653", Felony: "227", Misdemeanor: "2502", DWI: "169", "Traffic Tickets": "4529", "Traffic Warnings": "4161", "All Reportable": "723", "Property Damage": "557", Injury: "165", Fatality: "1", Homicide: "2", "Rape and Attempted Rape": "9", Robbery: "15", "Aggravated Assault": "70", "Burglary (Residential)": "142", "Burglary (Non-Residential)": "50", "Auto Theft": "45", "All Thefts": "990", "Stolen Bikes": "84", "Theft From Vehicles": "392", Shoplifting: "119", Vandalism: "557", Fraud: "85", Forgery: "111", Arson: "0", }, { Date: "Sep-06", Population: "244653", Felony: "202", Misdemeanor: "2190", DWI: "153", "Traffic Tickets": "4125", "Traffic Warnings": "3852", "All Reportable": "738", "Property Damage": "575", Injury: "161", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "15", Robbery: "9", "Aggravated Assault": "85", "Burglary (Residential)": "92", "Burglary (Non-Residential)": "72", "Auto Theft": "43", "All Thefts": "839", "Stolen Bikes": "67", "Theft From Vehicles": "296", Shoplifting: "103", Vandalism: "549", Fraud: "95", Forgery: "181", Arson: "0", }, { Date: "Oct-06", Population: "244653", Felony: "209", Misdemeanor: "2376", DWI: "176", "Traffic Tickets": "4290", "Traffic Warnings": "3577", "All Reportable": "767", "Property Damage": "596", Injury: "171", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "4", Robbery: "14", "Aggravated Assault": "93", "Burglary (Residential)": "117", "Burglary (Non-Residential)": "51", "Auto Theft": "33", "All Thefts": "843", "Stolen Bikes": "58", "Theft From Vehicles": "283", Shoplifting: "141", Vandalism: "565", Fraud: "97", Forgery: "107", Arson: "0", }, { Date: "Nov-06", Population: "244653", Felony: "177", Misdemeanor: "1831", DWI: "114", "Traffic Tickets": "4786", "Traffic Warnings": "3557", "All Reportable": "691", "Property Damage": "549", Injury: "141", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "7", Robbery: "12", "Aggravated Assault": "68", "Burglary (Residential)": "97", "Burglary (Non-Residential)": "41", "Auto Theft": "21", "All Thefts": "739", "Stolen Bikes": "32", "Theft From Vehicles": "193", Shoplifting: "136", Vandalism: "656", Fraud: "101", Forgery: "159", Arson: "0", }, { Date: "Dec-06", Population: "244653", Felony: "242", Misdemeanor: "2007", DWI: "212", "Traffic Tickets": "4524", "Traffic Warnings": "3566", "All Reportable": "785", "Property Damage": "617", Injury: "168", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "14", "Aggravated Assault": "73", "Burglary (Residential)": "74", "Burglary (Non-Residential)": "45", "Auto Theft": "37", "All Thefts": "825", "Stolen Bikes": "18", "Theft From Vehicles": "211", Shoplifting: "169", Vandalism: "469", Fraud: "77", Forgery: "98", Arson: "0", }, { Date: "Jan-07", Population: "247789", Felony: "178", Misdemeanor: "2181", DWI: "163", "Traffic Tickets": "4093", "Traffic Warnings": "3694", "All Reportable": "1018", "Property Damage": "862", Injury: "154", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "16", "Aggravated Assault": "75", "Burglary (Residential)": "119", "Burglary (Non-Residential)": "32", "Auto Theft": "21", "All Thefts": "663", "Stolen Bikes": "8", "Theft From Vehicles": "166", Shoplifting: "141", Vandalism: "610", Fraud: "95", Forgery: "147", Arson: "0", }, { Date: "Feb-07", Population: "247789", Felony: "167", Misdemeanor: "1897", DWI: "143", "Traffic Tickets": "3938", "Traffic Warnings": "3308", "All Reportable": "875", "Property Damage": "754", Injury: "121", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "7", "Aggravated Assault": "59", "Burglary (Residential)": "70", "Burglary (Non-Residential)": "34", "Auto Theft": "32", "All Thefts": "599", "Stolen Bikes": "5", "Theft From Vehicles": "200", Shoplifting: "120", Vandalism: "342", Fraud: "99", Forgery: "69", Arson: "0", }, { Date: "Mar-07", Population: "247789", Felony: "188", Misdemeanor: "2470", DWI: "163", "Traffic Tickets": "4786", "Traffic Warnings": "4181", "All Reportable": "776", "Property Damage": "647", Injury: "129", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "9", Robbery: "17", "Aggravated Assault": "76", "Burglary (Residential)": "98", "Burglary (Non-Residential)": "42", "Auto Theft": "33", "All Thefts": "836", "Stolen Bikes": "28", "Theft From Vehicles": "289", Shoplifting: "171", Vandalism: "431", Fraud: "117", Forgery: "71", Arson: "0", }, { Date: "Apr-07", Population: "247789", Felony: "193", Misdemeanor: "2413", DWI: "161", "Traffic Tickets": "3111", "Traffic Warnings": "3031", "All Reportable": "672", "Property Damage": "522", Injury: "148", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "17", "Aggravated Assault": "83", "Burglary (Residential)": "76", "Burglary (Non-Residential)": "27", "Auto Theft": "42", "All Thefts": "874", "Stolen Bikes": "40", "Theft From Vehicles": "305", Shoplifting: "119", Vandalism: "459", Fraud: "105", Forgery: "61", Arson: "0", }, { Date: "May-07", Population: "247789", Felony: "283", Misdemeanor: "2594", DWI: "129", "Traffic Tickets": "4350", "Traffic Warnings": "3272", "All Reportable": "764", "Property Damage": "577", Injury: "186", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "11", "Aggravated Assault": "126", "Burglary (Residential)": "135", "Burglary (Non-Residential)": "52", "Auto Theft": "16", "All Thefts": "1045", "Stolen Bikes": "62", "Theft From Vehicles": "372", Shoplifting: "147", Vandalism: "431", Fraud: "119", Forgery: "118", Arson: "0", }, { Date: "Jun-07", Population: "247789", Felony: "265", Misdemeanor: "2305", DWI: "109", "Traffic Tickets": "3500", "Traffic Warnings": "3697", "All Reportable": "700", "Property Damage": "536", Injury: "161", Fatality: "3", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "12", "Aggravated Assault": "88", "Burglary (Residential)": "116", "Burglary (Non-Residential)": "49", "Auto Theft": "38", "All Thefts": "945", "Stolen Bikes": "91", "Theft From Vehicles": "338", Shoplifting: "155", Vandalism: "487", Fraud: "99", Forgery: "68", Arson: "0", }, { Date: "Jul-07", Population: "247789", Felony: "239", Misdemeanor: "2364", DWI: "131", "Traffic Tickets": "3613", "Traffic Warnings": "4051", "All Reportable": "697", "Property Damage": "540", Injury: "157", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "13", "Aggravated Assault": "99", "Burglary (Residential)": "178", "Burglary (Non-Residential)": "43", "Auto Theft": "57", "All Thefts": "851", "Stolen Bikes": "107", "Theft From Vehicles": "284", Shoplifting: "133", Vandalism: "507", Fraud: "115", Forgery: "74", Arson: "0", }, { Date: "Aug-07", Population: "247789", Felony: "269", Misdemeanor: "2326", DWI: "103", "Traffic Tickets": "4147", "Traffic Warnings": "3345", "All Reportable": "765", "Property Damage": "588", Injury: "177", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "9", Robbery: "17", "Aggravated Assault": "91", "Burglary (Residential)": "138", "Burglary (Non-Residential)": "25", "Auto Theft": "39", "All Thefts": "817", "Stolen Bikes": "83", "Theft From Vehicles": "311", Shoplifting: "146", Vandalism: "391", Fraud: "105", Forgery: "85", Arson: "0", }, { Date: "Sep-07", Population: "247789", Felony: "210", Misdemeanor: "2408", DWI: "143", "Traffic Tickets": "3957", "Traffic Warnings": "3151", "All Reportable": "784", "Property Damage": "620", Injury: "164", Fatality: "0", Homicide: "2", "Rape and Attempted Rape": "11", Robbery: "15", "Aggravated Assault": "95", "Burglary (Residential)": "124", "Burglary (Non-Residential)": "32", "Auto Theft": "41", "All Thefts": "808", "Stolen Bikes": "73", "Theft From Vehicles": "330", Shoplifting: "121", Vandalism: "418", Fraud: "89", Forgery: "84", Arson: "0", }, { Date: "Oct-07", Population: "247789", Felony: "270", Misdemeanor: "2163", DWI: "150", "Traffic Tickets": "4282", "Traffic Warnings": "4092", "All Reportable": "859", "Property Damage": "662", Injury: "196", Fatality: "3", Homicide: "2", "Rape and Attempted Rape": "20", Robbery: "10", "Aggravated Assault": "83", "Burglary (Residential)": "150", "Burglary (Non-Residential)": "51", "Auto Theft": "36", "All Thefts": "751", "Stolen Bikes": "70", "Theft From Vehicles": "218", Shoplifting: "155", Vandalism: "464", Fraud: "99", Forgery: "82", Arson: "0", }, { Date: "Nov-07", Population: "247789", Felony: "213", Misdemeanor: "1836", DWI: "159", "Traffic Tickets": "4731", "Traffic Warnings": "5286", "All Reportable": "710", "Property Damage": "572", Injury: "138", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "4", Robbery: "11", "Aggravated Assault": "84", "Burglary (Residential)": "143", "Burglary (Non-Residential)": "40", "Auto Theft": "29", "All Thefts": "675", "Stolen Bikes": "23", "Theft From Vehicles": "212", Shoplifting: "131", Vandalism: "447", Fraud: "74", Forgery: "82", Arson: "0", }, { Date: "Dec-07", Population: "247789", Felony: "212", Misdemeanor: "1760", DWI: "196", "Traffic Tickets": "3489", "Traffic Warnings": "2981", "All Reportable": "1093", "Property Damage": "925", Injury: "167", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "11", Robbery: "21", "Aggravated Assault": "70", "Burglary (Residential)": "109", "Burglary (Non-Residential)": "33", "Auto Theft": "26", "All Thefts": "557", "Stolen Bikes": "8", "Theft From Vehicles": "162", Shoplifting: "135", Vandalism: "254", Fraud: "83", Forgery: "47", Arson: "0", }, { Date: "Jan-08", Population: "250939", Felony: "158", Misdemeanor: "2015", DWI: "174", "Traffic Tickets": "4310", "Traffic Warnings": "4183", "All Reportable": "776", "Property Damage": "642", Injury: "134", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "8", Robbery: "26", "Aggravated Assault": "67", "Burglary (Residential)": "121", "Burglary (Non-Residential)": "28", "Auto Theft": "32", "All Thefts": "544", "Stolen Bikes": "8", "Theft From Vehicles": "173", Shoplifting: "131", Vandalism: "284", Fraud: "107", Forgery: "43", Arson: "0", }, { Date: "Feb-08", Population: "250939", Felony: "159", Misdemeanor: "2024", DWI: "172", "Traffic Tickets": "4186", "Traffic Warnings": "3757", "All Reportable": "880", "Property Damage": "731", Injury: "149", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "2", Robbery: "10", "Aggravated Assault": "70", "Burglary (Residential)": "66", "Burglary (Non-Residential)": "20", "Auto Theft": "28", "All Thefts": "526", "Stolen Bikes": "4", "Theft From Vehicles": "201", Shoplifting: "110", Vandalism: "273", Fraud: "101", Forgery: "24", Arson: "0", }, { Date: "Mar-08", Population: "250939", Felony: "228", Misdemeanor: "2411", DWI: "213", "Traffic Tickets": "4775", "Traffic Warnings": "4421", "All Reportable": "665", "Property Damage": "534", Injury: "131", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "13", "Aggravated Assault": "62", "Burglary (Residential)": "89", "Burglary (Non-Residential)": "20", "Auto Theft": "37", "All Thefts": "665", "Stolen Bikes": "24", "Theft From Vehicles": "204", Shoplifting: "150", Vandalism: "466", Fraud: "94", Forgery: "57", Arson: "0", }, { Date: "Apr-08", Population: "250939", Felony: "209", Misdemeanor: "2312", DWI: "182", "Traffic Tickets": "4306", "Traffic Warnings": "3795", "All Reportable": "729", "Property Damage": "581", Injury: "148", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "13", "Aggravated Assault": "74", "Burglary (Residential)": "93", "Burglary (Non-Residential)": "29", "Auto Theft": "25", "All Thefts": "723", "Stolen Bikes": "23", "Theft From Vehicles": "264", Shoplifting: "149", Vandalism: "435", Fraud: "119", Forgery: "70", Arson: "0", }, { Date: "May-08", Population: "250939", Felony: "235", Misdemeanor: "2429", DWI: "198", "Traffic Tickets": "5109", "Traffic Warnings": "3964", "All Reportable": "673", "Property Damage": "528", Injury: "144", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "3", Robbery: "22", "Aggravated Assault": "79", "Burglary (Residential)": "93", "Burglary (Non-Residential)": "17", "Auto Theft": "27", "All Thefts": "740", "Stolen Bikes": "43", "Theft From Vehicles": "281", Shoplifting: "128", Vandalism: "449", Fraud: "89", Forgery: "94", Arson: "0", }, { Date: "Jun-08", Population: "250939", Felony: "241", Misdemeanor: "2542", DWI: "200", "Traffic Tickets": "4572", "Traffic Warnings": "4365", "All Reportable": "645", "Property Damage": "492", Injury: "153", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "17", Robbery: "19", "Aggravated Assault": "96", "Burglary (Residential)": "104", "Burglary (Non-Residential)": "25", "Auto Theft": "29", "All Thefts": "661", "Stolen Bikes": "51", "Theft From Vehicles": "245", Shoplifting: "132", Vandalism: "442", Fraud: "94", Forgery: "47", Arson: "0", }, { Date: "Jul-08", Population: "250939", Felony: "217", Misdemeanor: "2602", DWI: "182", "Traffic Tickets": "4810", "Traffic Warnings": "4318", "All Reportable": "579", "Property Damage": "442", Injury: "135", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "22", "Aggravated Assault": "108", "Burglary (Residential)": "97", "Burglary (Non-Residential)": "36", "Auto Theft": "35", "All Thefts": "800", "Stolen Bikes": "109", "Theft From Vehicles": "266", Shoplifting: "136", Vandalism: "542", Fraud: "96", Forgery: "34", Arson: "0", }, { Date: "Aug-08", Population: "250939", Felony: "251", Misdemeanor: "2941", DWI: "172", "Traffic Tickets": "5136", "Traffic Warnings": "3917", "All Reportable": "699", "Property Damage": "545", Injury: "154", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "16", Robbery: "23", "Aggravated Assault": "95", "Burglary (Residential)": "135", "Burglary (Non-Residential)": "26", "Auto Theft": "16", "All Thefts": "846", "Stolen Bikes": "110", "Theft From Vehicles": "286", Shoplifting: "138", Vandalism: "425", Fraud: "103", Forgery: "92", Arson: "0", }, { Date: "Sep-08", Population: "250939", Felony: "212", Misdemeanor: "2616", DWI: "182", "Traffic Tickets": "4399", "Traffic Warnings": "3597", "All Reportable": "742", "Property Damage": "582", Injury: "160", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "22", "Aggravated Assault": "92", "Burglary (Residential)": "115", "Burglary (Non-Residential)": "22", "Auto Theft": "37", "All Thefts": "788", "Stolen Bikes": "75", "Theft From Vehicles": "275", Shoplifting: "138", Vandalism: "392", Fraud: "78", Forgery: "49", Arson: "0", }, { Date: "Oct-08", Population: "250939", Felony: "233", Misdemeanor: "2536", DWI: "185", "Traffic Tickets": "4433", "Traffic Warnings": "3773", "All Reportable": "764", "Property Damage": "579", Injury: "184", Fatality: "1", Homicide: "2", "Rape and Attempted Rape": "7", Robbery: "22", "Aggravated Assault": "59", "Burglary (Residential)": "127", "Burglary (Non-Residential)": "37", "Auto Theft": "25", "All Thefts": "770", "Stolen Bikes": "68", "Theft From Vehicles": "255", Shoplifting: "165", Vandalism: "511", Fraud: "110", Forgery: "46", Arson: "0", }, { Date: "Nov-08", Population: "250939", Felony: "227", Misdemeanor: "2199", DWI: "187", "Traffic Tickets": "4318", "Traffic Warnings": "4261", "All Reportable": "716", "Property Damage": "574", Injury: "141", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "16", "Aggravated Assault": "88", "Burglary (Residential)": "87", "Burglary (Non-Residential)": "38", "Auto Theft": "41", "All Thefts": "609", "Stolen Bikes": "29", "Theft From Vehicles": "216", Shoplifting: "113", Vandalism: "441", Fraud: "98", Forgery: "72", Arson: "0", }, { Date: "Dec-08", Population: "250939", Felony: "173", Misdemeanor: "1856", DWI: "206", "Traffic Tickets": "3508", "Traffic Warnings": "3264", "All Reportable": "1050", "Property Damage": "884", Injury: "165", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "8", Robbery: "9", "Aggravated Assault": "56", "Burglary (Residential)": "91", "Burglary (Non-Residential)": "33", "Auto Theft": "19", "All Thefts": "531", "Stolen Bikes": "12", "Theft From Vehicles": "128", Shoplifting: "145", Vandalism: "310", Fraud: "93", Forgery: "91", Arson: "0", }, { Date: "Jan-09", Population: "254001", Felony: "192", Misdemeanor: "2203", DWI: "212", "Traffic Tickets": "4503", "Traffic Warnings": "4425", "All Reportable": "844", "Property Damage": "700", Injury: "143", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "12", Robbery: "15", "Aggravated Assault": "56", "Burglary (Residential)": "83", "Burglary (Non-Residential)": "12", "Auto Theft": "24", "All Thefts": "576", "Stolen Bikes": "9", "Theft From Vehicles": "196", Shoplifting: "148", Vandalism: "332", Fraud: "100", Forgery: "43", Arson: "0", }, { Date: "Feb-09", Population: "254001", Felony: "186", Misdemeanor: "2003", DWI: "214", "Traffic Tickets": "4377", "Traffic Warnings": "4235", "All Reportable": "727", "Property Damage": "593", Injury: "134", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "16", "Aggravated Assault": "56", "Burglary (Residential)": "79", "Burglary (Non-Residential)": "11", "Auto Theft": "18", "All Thefts": "458", "Stolen Bikes": "13", "Theft From Vehicles": "140", Shoplifting: "106", Vandalism: "299", Fraud: "81", Forgery: "61", Arson: "0", }, { Date: "Mar-09", Population: "254001", Felony: "253", Misdemeanor: "2329", DWI: "235", "Traffic Tickets": "4766", "Traffic Warnings": "4721", "All Reportable": "637", "Property Damage": "524", Injury: "113", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "17", Robbery: "15", "Aggravated Assault": "66", "Burglary (Residential)": "155", "Burglary (Non-Residential)": "40", "Auto Theft": "21", "All Thefts": "591", "Stolen Bikes": "17", "Theft From Vehicles": "193", Shoplifting: "155", Vandalism: "380", Fraud: "94", Forgery: "105", Arson: "0", }, { Date: "Apr-09", Population: "254001", Felony: "202", Misdemeanor: "2155", DWI: "214", "Traffic Tickets": "3732", "Traffic Warnings": "3164", "All Reportable": "643", "Property Damage": "506", Injury: "135", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "10", "Aggravated Assault": "75", "Burglary (Residential)": "108", "Burglary (Non-Residential)": "47", "Auto Theft": "17", "All Thefts": "623", "Stolen Bikes": "22", "Theft From Vehicles": "229", Shoplifting: "150", Vandalism: "399", Fraud: "99", Forgery: "31", Arson: "0", }, { Date: "May-09", Population: "254001", Felony: "241", Misdemeanor: "2234", DWI: "218", "Traffic Tickets": "4887", "Traffic Warnings": "3178", "All Reportable": "696", "Property Damage": "532", Injury: "164", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "12", "Aggravated Assault": "90", "Burglary (Residential)": "103", "Burglary (Non-Residential)": "42", "Auto Theft": "15", "All Thefts": "762", "Stolen Bikes": "42", "Theft From Vehicles": "292", Shoplifting: "155", Vandalism: "428", Fraud: "95", Forgery: "35", Arson: "0", }, { Date: "Jun-09", Population: "254001", Felony: "169", Misdemeanor: "2100", DWI: "162", "Traffic Tickets": "3846", "Traffic Warnings": "3807", "All Reportable": "640", "Property Damage": "487", Injury: "153", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "16", "Aggravated Assault": "69", "Burglary (Residential)": "115", "Burglary (Non-Residential)": "34", "Auto Theft": "26", "All Thefts": "672", "Stolen Bikes": "70", "Theft From Vehicles": "216", Shoplifting: "152", Vandalism: "382", Fraud: "95", Forgery: "52", Arson: "0", }, { Date: "Jul-09", Population: "254001", Felony: "204", Misdemeanor: "2466", DWI: "166", "Traffic Tickets": "3782", "Traffic Warnings": "3529", "All Reportable": "672", "Property Damage": "508", Injury: "163", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "15", "Aggravated Assault": "78", "Burglary (Residential)": "96", "Burglary (Non-Residential)": "59", "Auto Theft": "30", "All Thefts": "810", "Stolen Bikes": "88", "Theft From Vehicles": "332", Shoplifting: "148", Vandalism: "521", Fraud: "127", Forgery: "20", Arson: "0", }, { Date: "Aug-09", Population: "254001", Felony: "221", Misdemeanor: "2297", DWI: "185", "Traffic Tickets": "4134", "Traffic Warnings": "3186", "All Reportable": "693", "Property Damage": "555", Injury: "137", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "3", Robbery: "23", "Aggravated Assault": "75", "Burglary (Residential)": "136", "Burglary (Non-Residential)": "24", "Auto Theft": "31", "All Thefts": "791", "Stolen Bikes": "97", "Theft From Vehicles": "284", Shoplifting: "141", Vandalism: "392", Fraud: "129", Forgery: "37", Arson: "0", }, { Date: "Sep-09", Population: "254001", Felony: "193", Misdemeanor: "2409", DWI: "156", "Traffic Tickets": "4047", "Traffic Warnings": "3108", "All Reportable": "714", "Property Damage": "565", Injury: "149", Fatality: "0", Homicide: "2", "Rape and Attempted Rape": "13", Robbery: "24", "Aggravated Assault": "93", "Burglary (Residential)": "98", "Burglary (Non-Residential)": "16", "Auto Theft": "11", "All Thefts": "669", "Stolen Bikes": "59", "Theft From Vehicles": "233", Shoplifting: "143", Vandalism: "338", Fraud: "133", Forgery: "31", Arson: "0", }, { Date: "Oct-09", Population: "254001", Felony: "187", Misdemeanor: "2040", DWI: "194", "Traffic Tickets": "3570", "Traffic Warnings": "3161", "All Reportable": "789", "Property Damage": "615", Injury: "174", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "7", Robbery: "18", "Aggravated Assault": "69", "Burglary (Residential)": "91", "Burglary (Non-Residential)": "20", "Auto Theft": "26", "All Thefts": "705", "Stolen Bikes": "34", "Theft From Vehicles": "285", Shoplifting: "140", Vandalism: "435", Fraud: "99", Forgery: "53", Arson: "0", }, { Date: "Nov-09", Population: "254001", Felony: "180", Misdemeanor: "1979", DWI: "204", "Traffic Tickets": "4103", "Traffic Warnings": "3647", "All Reportable": "627", "Property Damage": "514", Injury: "112", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "10", Robbery: "15", "Aggravated Assault": "64", "Burglary (Residential)": "96", "Burglary (Non-Residential)": "23", "Auto Theft": "37", "All Thefts": "687", "Stolen Bikes": "28", "Theft From Vehicles": "267", Shoplifting: "164", Vandalism: "360", Fraud: "95", Forgery: "77", Arson: "0", }, { Date: "Dec-09", Population: "254001", Felony: "166", Misdemeanor: "1574", DWI: "170", "Traffic Tickets": "2543", "Traffic Warnings": "2363", "All Reportable": "1095", "Property Damage": "932", Injury: "163", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "11", "Aggravated Assault": "45", "Burglary (Residential)": "71", "Burglary (Non-Residential)": "27", "Auto Theft": "15", "All Thefts": "568", "Stolen Bikes": "6", "Theft From Vehicles": "144", Shoplifting: "171", Vandalism: "222", Fraud: "106", Forgery: "46", Arson: "0", }, { Date: "Jan-10", Population: "259261", Felony: "173", Misdemeanor: "1736", DWI: "183", "Traffic Tickets": "3549", "Traffic Warnings": "3826", "All Reportable": "1045", "Property Damage": "906", Injury: "139", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "19", "Aggravated Assault": "66", "Burglary (Residential)": "73", "Burglary (Non-Residential)": "24", "Auto Theft": "19", "All Thefts": "506", "Stolen Bikes": "1", "Theft From Vehicles": "175", Shoplifting: "111", Vandalism: "242", Fraud: "138", Forgery: "96", Arson: "0", }, { Date: "Feb-10", Population: "259261", Felony: "133", Misdemeanor: "1693", DWI: "170", "Traffic Tickets": "3192", "Traffic Warnings": "3247", "All Reportable": "799", "Property Damage": "669", Injury: "129", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "5", "Aggravated Assault": "46", "Burglary (Residential)": "61", "Burglary (Non-Residential)": "11", "Auto Theft": "18", "All Thefts": "477", "Stolen Bikes": "5", "Theft From Vehicles": "147", Shoplifting: "127", Vandalism: "303", Fraud: "86", Forgery: "22", Arson: "0", }, { Date: "Mar-10", Population: "259261", Felony: "194", Misdemeanor: "1937", DWI: "159", "Traffic Tickets": "4048", "Traffic Warnings": "4936", "All Reportable": "585", "Property Damage": "465", Injury: "120", Fatality: "0", Homicide: "2", "Rape and Attempted Rape": "9", Robbery: "12", "Aggravated Assault": "89", "Burglary (Residential)": "68", "Burglary (Non-Residential)": "27", "Auto Theft": "22", "All Thefts": "631", "Stolen Bikes": "11", "Theft From Vehicles": "194", Shoplifting: "144", Vandalism: "415", Fraud: "127", Forgery: "19", Arson: "0", }, { Date: "Apr-10", Population: "259261", Felony: "251", Misdemeanor: "2089", DWI: "146", "Traffic Tickets": "3791", "Traffic Warnings": "3541", "All Reportable": "682", "Property Damage": "524", Injury: "157", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "9", "Aggravated Assault": "98", "Burglary (Residential)": "89", "Burglary (Non-Residential)": "19", "Auto Theft": "36", "All Thefts": "682", "Stolen Bikes": "47", "Theft From Vehicles": "151", Shoplifting: "158", Vandalism: "279", Fraud: "114", Forgery: "119", Arson: "0", }, { Date: "May-10", Population: "259261", Felony: "197", Misdemeanor: "2098", DWI: "163", "Traffic Tickets": "4941", "Traffic Warnings": "3557", "All Reportable": "661", "Property Damage": "522", Injury: "139", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "14", "Aggravated Assault": "67", "Burglary (Residential)": "74", "Burglary (Non-Residential)": "30", "Auto Theft": "23", "All Thefts": "646", "Stolen Bikes": "46", "Theft From Vehicles": "210", Shoplifting: "120", Vandalism: "337", Fraud: "89", Forgery: "53", Arson: "0", }, { Date: "Jun-10", Population: "259261", Felony: "238", Misdemeanor: "2459", DWI: "154", "Traffic Tickets": "4745", "Traffic Warnings": "4553", "All Reportable": "674", "Property Damage": "512", Injury: "160", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "16", "Aggravated Assault": "82", "Burglary (Residential)": "114", "Burglary (Non-Residential)": "23", "Auto Theft": "23", "All Thefts": "634", "Stolen Bikes": "69", "Theft From Vehicles": "178", Shoplifting: "133", Vandalism: "372", Fraud: "120", Forgery: "43", Arson: "0", }, { Date: "Jul-10", Population: "259261", Felony: "223", Misdemeanor: "2252", DWI: "118", "Traffic Tickets": "3667", "Traffic Warnings": "3813", "All Reportable": "632", "Property Damage": "491", Injury: "140", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "15", Robbery: "17", "Aggravated Assault": "79", "Burglary (Residential)": "90", "Burglary (Non-Residential)": "24", "Auto Theft": "36", "All Thefts": "768", "Stolen Bikes": "77", "Theft From Vehicles": "310", Shoplifting: "126", Vandalism: "448", Fraud: "105", Forgery: "33", Arson: "0", }, { Date: "Aug-10", Population: "259261", Felony: "211", Misdemeanor: "2438", DWI: "180", "Traffic Tickets": "4703", "Traffic Warnings": "3855", "All Reportable": "709", "Property Damage": "537", Injury: "172", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "20", "Aggravated Assault": "100", "Burglary (Residential)": "133", "Burglary (Non-Residential)": "29", "Auto Theft": "33", "All Thefts": "865", "Stolen Bikes": "94", "Theft From Vehicles": "348", Shoplifting: "155", Vandalism: "385", Fraud: "121", Forgery: "49", Arson: "0", }, { Date: "Sep-10", Population: "259261", Felony: "169", Misdemeanor: "2226", DWI: "168", "Traffic Tickets": "4435", "Traffic Warnings": "3600", "All Reportable": "754", "Property Damage": "573", Injury: "181", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "15", Robbery: "18", "Aggravated Assault": "99", "Burglary (Residential)": "84", "Burglary (Non-Residential)": "40", "Auto Theft": "33", "All Thefts": "863", "Stolen Bikes": "70", "Theft From Vehicles": "341", Shoplifting: "149", Vandalism: "461", Fraud: "612", Forgery: "13", Arson: "0", }, { Date: "Oct-10", Population: "259261", Felony: "180", Misdemeanor: "2171", DWI: "186", "Traffic Tickets": "4145", "Traffic Warnings": "3841", "All Reportable": "766", "Property Damage": "589", Injury: "177", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "17", "Aggravated Assault": "70", "Burglary (Residential)": "143", "Burglary (Non-Residential)": "31", "Auto Theft": "25", "All Thefts": "820", "Stolen Bikes": "66", "Theft From Vehicles": "314", Shoplifting: "154", Vandalism: "409", Fraud: "226", Forgery: "33", Arson: "0", }, { Date: "Nov-10", Population: "259261", Felony: "205", Misdemeanor: "1913", DWI: "164", "Traffic Tickets": "4085", "Traffic Warnings": "3915", "All Reportable": "665", "Property Damage": "519", Injury: "144", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "17", Robbery: "18", "Aggravated Assault": "69", "Burglary (Residential)": "115", "Burglary (Non-Residential)": "30", "Auto Theft": "50", "All Thefts": "776", "Stolen Bikes": "29", "Theft From Vehicles": "333", Shoplifting: "173", Vandalism: "378", Fraud: "125", Forgery: "49", Arson: "0", }, { Date: "Dec-10", Population: "259261", Felony: "189", Misdemeanor: "1597", DWI: "199", "Traffic Tickets": "3279", "Traffic Warnings": "3261", "All Reportable": "750", "Property Damage": "618", Injury: "132", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "13", Robbery: "13", "Aggravated Assault": "62", "Burglary (Residential)": "72", "Burglary (Non-Residential)": "27", "Auto Theft": "22", "All Thefts": "699", "Stolen Bikes": "20", "Theft From Vehicles": "236", Shoplifting: "188", Vandalism: "340", Fraud: "110", Forgery: "20", Arson: "0", }, { Date: "Jan-11", Population: "262466", Felony: "173", Misdemeanor: "1914", DWI: "175", "Traffic Tickets": "4134", "Traffic Warnings": "4329", "All Reportable": "1000", "Property Damage": "840", Injury: "159", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "16", Robbery: "9", "Aggravated Assault": "42", "Burglary (Residential)": "75", "Burglary (Non-Residential)": "24", "Auto Theft": "24", "All Thefts": "597", "Stolen Bikes": "7", "Theft From Vehicles": "238", Shoplifting: "138", Vandalism: "291", Fraud: "111", Forgery: "32", Arson: "0", }, { Date: "Feb-11", Population: "262466", Felony: "141", Misdemeanor: "1725", DWI: "149", "Traffic Tickets": "3820", "Traffic Warnings": "3591", "All Reportable": "738", "Property Damage": "612", Injury: "124", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "10", "Aggravated Assault": "34", "Burglary (Residential)": "48", "Burglary (Non-Residential)": "17", "Auto Theft": "18", "All Thefts": "452", "Stolen Bikes": "8", "Theft From Vehicles": "97", Shoplifting: "132", Vandalism: "331", Fraud: "104", Forgery: "49", Arson: "0", }, { Date: "Mar-11", Population: "262466", Felony: "182", Misdemeanor: "2165", DWI: "190", "Traffic Tickets": "5215", "Traffic Warnings": "6717", "All Reportable": "483", "Property Damage": "389", Injury: "94", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "6", Robbery: "16", "Aggravated Assault": "49", "Burglary (Residential)": "90", "Burglary (Non-Residential)": "13", "Auto Theft": "26", "All Thefts": "649", "Stolen Bikes": "29", "Theft From Vehicles": "216", Shoplifting: "177", Vandalism: "395", Fraud: "111", Forgery: "11", Arson: "0", }, { Date: "Apr-11", Population: "262466", Felony: "214", Misdemeanor: "1879", DWI: "151", "Traffic Tickets": "3168", "Traffic Warnings": "3053", "All Reportable": "622", "Property Damage": "482", Injury: "140", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "16", Robbery: "11", "Aggravated Assault": "58", "Burglary (Residential)": "94", "Burglary (Non-Residential)": "24", "Auto Theft": "31", "All Thefts": "775", "Stolen Bikes": "31", "Theft From Vehicles": "271", Shoplifting: "175", Vandalism: "341", Fraud: "126", Forgery: "17", Arson: "0", }, { Date: "May-11", Population: "262466", Felony: "198", Misdemeanor: "1779", DWI: "152", "Traffic Tickets": "4683", "Traffic Warnings": "3947", "All Reportable": "668", "Property Damage": "513", Injury: "155", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "17", Robbery: "15", "Aggravated Assault": "67", "Burglary (Residential)": "113", "Burglary (Non-Residential)": "32", "Auto Theft": "40", "All Thefts": "780", "Stolen Bikes": "63", "Theft From Vehicles": "255", Shoplifting: "152", Vandalism: "363", Fraud: "177", Forgery: "19", Arson: "0", }, { Date: "Jun-11", Population: "262466", Felony: "293", Misdemeanor: "1974", DWI: "127", "Traffic Tickets": "4110", "Traffic Warnings": "3957", "All Reportable": "597", "Property Damage": "480", Injury: "116", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "20", Robbery: "19", "Aggravated Assault": "55", "Burglary (Residential)": "80", "Burglary (Non-Residential)": "18", "Auto Theft": "26", "All Thefts": "822", "Stolen Bikes": "79", "Theft From Vehicles": "296", Shoplifting: "164", Vandalism: "400", Fraud: "157", Forgery: "26", Arson: "0", }, { Date: "Jul-11", Population: "262466", Felony: "206", Misdemeanor: "2173", DWI: "161", "Traffic Tickets": "4205", "Traffic Warnings": "4130", "All Reportable": "654", "Property Damage": "489", Injury: "165", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "22", Robbery: "17", "Aggravated Assault": "66", "Burglary (Residential)": "132", "Burglary (Non-Residential)": "46", "Auto Theft": "35", "All Thefts": "797", "Stolen Bikes": "71", "Theft From Vehicles": "281", Shoplifting: "172", Vandalism: "401", Fraud: "120", Forgery: "80", Arson: "0", }, { Date: "Aug-11", Population: "262466", Felony: "238", Misdemeanor: "2138", DWI: "143", "Traffic Tickets": "4914", "Traffic Warnings": "5087", "All Reportable": "722", "Property Damage": "538", Injury: "184", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "14", Robbery: "21", "Aggravated Assault": "49", "Burglary (Residential)": "123", "Burglary (Non-Residential)": "24", "Auto Theft": "37", "All Thefts": "809", "Stolen Bikes": "79", "Theft From Vehicles": "283", Shoplifting: "176", Vandalism: "366", Fraud: "145", Forgery: "26", Arson: "0", }, { Date: "Sep-11", Population: "262466", Felony: "145", Misdemeanor: "2129", DWI: "167", "Traffic Tickets": "4597", "Traffic Warnings": "4378", "All Reportable": "741", "Property Damage": "553", Injury: "186", Fatality: "2", Homicide: "1", "Rape and Attempted Rape": "7", Robbery: "11", "Aggravated Assault": "40", "Burglary (Residential)": "84", "Burglary (Non-Residential)": "24", "Auto Theft": "26", "All Thefts": "708", "Stolen Bikes": "51", "Theft From Vehicles": "220", Shoplifting: "161", Vandalism: "296", Fraud: "123", Forgery: "18", Arson: "0", }, { Date: "Oct-11", Population: "262466", Felony: "184", Misdemeanor: "2037", DWI: "166", "Traffic Tickets": "4212", "Traffic Warnings": "3715", "All Reportable": "752", "Property Damage": "587", Injury: "164", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "14", Robbery: "14", "Aggravated Assault": "63", "Burglary (Residential)": "83", "Burglary (Non-Residential)": "39", "Auto Theft": "26", "All Thefts": "753", "Stolen Bikes": "47", "Theft From Vehicles": "271", Shoplifting: "201", Vandalism: "321", Fraud: "120", Forgery: "22", Arson: "0", }, { Date: "Nov-11", Population: "262466", Felony: "239", Misdemeanor: "1780", DWI: "129", "Traffic Tickets": "4122", "Traffic Warnings": "3564", "All Reportable": "737", "Property Damage": "571", Injury: "166", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "16", Robbery: "16", "Aggravated Assault": "39", "Burglary (Residential)": "67", "Burglary (Non-Residential)": "25", "Auto Theft": "27", "All Thefts": "597", "Stolen Bikes": "26", "Theft From Vehicles": "167", Shoplifting: "171", Vandalism: "292", Fraud: "99", Forgery: "20", Arson: "0", }, { Date: "Dec-11", Population: "262466", Felony: "175", Misdemeanor: "1556", DWI: "196", "Traffic Tickets": "3692", "Traffic Warnings": "3648", "All Reportable": "883", "Property Damage": "729", Injury: "154", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "17", "Aggravated Assault": "41", "Burglary (Residential)": "80", "Burglary (Non-Residential)": "19", "Auto Theft": "30", "All Thefts": "626", "Stolen Bikes": "14", "Theft From Vehicles": "166", Shoplifting: "175", Vandalism: "253", Fraud: "118", Forgery: "49", Arson: "0", }, { Date: "Jan-12", Population: "265663", Felony: "194", Misdemeanor: "1579", DWI: "184", "Traffic Tickets": "4204", "Traffic Warnings": "5127", "All Reportable": "639", "Property Damage": "501", Injury: "137", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "16", Robbery: "8", "Aggravated Assault": "56", "Burglary (Residential)": "81", "Burglary (Non-Residential)": "23", "Auto Theft": "30", "All Thefts": "665", "Stolen Bikes": "13", "Theft From Vehicles": "256", Shoplifting: "159", Vandalism: "306", Fraud: "137", Forgery: "38", Arson: "0", }, { Date: "Feb-12", Population: "265663", Felony: "181", Misdemeanor: "1604", DWI: "145", "Traffic Tickets": "3912", "Traffic Warnings": "3993", "All Reportable": "728", "Property Damage": "575", Injury: "153", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "10", "Aggravated Assault": "35", "Burglary (Residential)": "58", "Burglary (Non-Residential)": "11", "Auto Theft": "19", "All Thefts": "456", "Stolen Bikes": "6", "Theft From Vehicles": "113", Shoplifting: "107", Vandalism: "221", Fraud: "136", Forgery: "24", Arson: "0", }, { Date: "Mar-12", Population: "265663", Felony: "225", Misdemeanor: "1922", DWI: "129", "Traffic Tickets": "4741", "Traffic Warnings": "6058", "All Reportable": "642", "Property Damage": "504", Injury: "137", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "21", Robbery: "18", "Aggravated Assault": "50", "Burglary (Residential)": "85", "Burglary (Non-Residential)": "33", "Auto Theft": "18", "All Thefts": "679", "Stolen Bikes": "24", "Theft From Vehicles": "261", Shoplifting: "149", Vandalism: "352", Fraud: "134", Forgery: "23", Arson: "0", }, { Date: "Apr-12", Population: "265663", Felony: "268", Misdemeanor: "1969", DWI: "148", "Traffic Tickets": "3705", "Traffic Warnings": "3752", "All Reportable": "685", "Property Damage": "529", Injury: "156", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "23", Robbery: "15", "Aggravated Assault": "48", "Burglary (Residential)": "119", "Burglary (Non-Residential)": "15", "Auto Theft": "22", "All Thefts": "641", "Stolen Bikes": "39", "Theft From Vehicles": "209", Shoplifting: "149", Vandalism: "324", Fraud: "139", Forgery: "53", Arson: "0", }, { Date: "May-12", Population: "265663", Felony: "279", Misdemeanor: "1922", DWI: "113", "Traffic Tickets": "5265", "Traffic Warnings": "5038", "All Reportable": "673", "Property Damage": "497", Injury: "176", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "18", "Aggravated Assault": "60", "Burglary (Residential)": "111", "Burglary (Non-Residential)": "28", "Auto Theft": "23", "All Thefts": "742", "Stolen Bikes": "66", "Theft From Vehicles": "231", Shoplifting: "182", Vandalism: "293", Fraud: "144", Forgery: "48", Arson: "0", }, { Date: "Jun-12", Population: "265663", Felony: "212", Misdemeanor: "1843", DWI: "97", "Traffic Tickets": "4483", "Traffic Warnings": "4281", "All Reportable": "599", "Property Damage": "462", Injury: "136", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "21", "Aggravated Assault": "58", "Burglary (Residential)": "91", "Burglary (Non-Residential)": "34", "Auto Theft": "13", "All Thefts": "640", "Stolen Bikes": "70", "Theft From Vehicles": "187", Shoplifting: "150", Vandalism: "325", Fraud: "112", Forgery: "29", Arson: "0", }, { Date: "Jul-12", Population: "265663", Felony: "305", Misdemeanor: "1920", DWI: "123", "Traffic Tickets": "3841", "Traffic Warnings": "4046", "All Reportable": "557", "Property Damage": "443", Injury: "113", Fatality: "1", Homicide: "2", "Rape and Attempted Rape": "16", Robbery: "22", "Aggravated Assault": "74", "Burglary (Residential)": "143", "Burglary (Non-Residential)": "35", "Auto Theft": "24", "All Thefts": "738", "Stolen Bikes": "68", "Theft From Vehicles": "261", Shoplifting: "125", Vandalism: "363", Fraud: "169", Forgery: "68", Arson: "0", }, { Date: "Aug-12", Population: "265663", Felony: "285", Misdemeanor: "2232", DWI: "130", "Traffic Tickets": "4363", "Traffic Warnings": "4159", "All Reportable": "731", "Property Damage": "546", Injury: "185", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "19", Robbery: "9", "Aggravated Assault": "64", "Burglary (Residential)": "146", "Burglary (Non-Residential)": "44", "Auto Theft": "30", "All Thefts": "825", "Stolen Bikes": "76", "Theft From Vehicles": "320", Shoplifting: "137", Vandalism: "352", Fraud: "173", Forgery: "19", Arson: "0", }, { Date: "Sep-12", Population: "265663", Felony: "150", Misdemeanor: "2023", DWI: "146", "Traffic Tickets": "4173", "Traffic Warnings": "3609", "All Reportable": "724", "Property Damage": "555", Injury: "169", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "16", Robbery: "12", "Aggravated Assault": "69", "Burglary (Residential)": "94", "Burglary (Non-Residential)": "34", "Auto Theft": "26", "All Thefts": "683", "Stolen Bikes": "71", "Theft From Vehicles": "184", Shoplifting: "148", Vandalism: "328", Fraud: "130", Forgery: "18", Arson: "0", }, { Date: "Oct-12", Population: "265663", Felony: "180", Misdemeanor: "1724", DWI: "113", "Traffic Tickets": "3719", "Traffic Warnings": "3657", "All Reportable": "680", "Property Damage": "526", Injury: "154", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "15", Robbery: "18", "Aggravated Assault": "43", "Burglary (Residential)": "131", "Burglary (Non-Residential)": "39", "Auto Theft": "35", "All Thefts": "774", "Stolen Bikes": "40", "Theft From Vehicles": "257", Shoplifting: "171", Vandalism: "322", Fraud: "158", Forgery: "33", Arson: "0", }, { Date: "Nov-12", Population: "265663", Felony: "214", Misdemeanor: "1841", DWI: "123", "Traffic Tickets": "4062", "Traffic Warnings": "3576", "All Reportable": "647", "Property Damage": "502", Injury: "145", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "25", "Aggravated Assault": "48", "Burglary (Residential)": "104", "Burglary (Non-Residential)": "25", "Auto Theft": "27", "All Thefts": "734", "Stolen Bikes": "23", "Theft From Vehicles": "278", Shoplifting: "162", Vandalism: "269", Fraud: "126", Forgery: "173", Arson: "0", }, { Date: "Dec-12", Population: "265663", Felony: "178", Misdemeanor: "1618", DWI: "189", "Traffic Tickets": "3591", "Traffic Warnings": "3227", "All Reportable": "780", "Property Damage": "637", Injury: "141", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "7", Robbery: "22", "Aggravated Assault": "37", "Burglary (Residential)": "88", "Burglary (Non-Residential)": "21", "Auto Theft": "24", "All Thefts": "625", "Stolen Bikes": "14", "Theft From Vehicles": "212", Shoplifting: "174", Vandalism: "370", Fraud: "132", Forgery: "86", Arson: "0", }, { Date: "Jan-13", Population: "268937", Felony: "244", Misdemeanor: "1807", DWI: "129", "Traffic Tickets": "4701", "Traffic Warnings": "5434", "All Reportable": "672", "Property Damage": "554", Injury: "118", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "14", Robbery: "16", "Aggravated Assault": "45", "Burglary (Residential)": "61", "Burglary (Non-Residential)": "13", "Auto Theft": "24", "All Thefts": "529", "Stolen Bikes": "5", "Theft From Vehicles": "169", Shoplifting: "129", Vandalism: "334", Fraud: "156", Forgery: "31", Arson: "3", }, { Date: "Feb-13", Population: "268937", Felony: "170", Misdemeanor: "1476", DWI: "125", "Traffic Tickets": "3830", "Traffic Warnings": "4659", "All Reportable": "588", "Property Damage": "464", Injury: "123", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "13", "Aggravated Assault": "41", "Burglary (Residential)": "58", "Burglary (Non-Residential)": "12", "Auto Theft": "18", "All Thefts": "486", "Stolen Bikes": "8", "Theft From Vehicles": "111", Shoplifting: "142", Vandalism: "211", Fraud: "134", Forgery: "8", Arson: "4", }, { Date: "Mar-13", Population: "268937", Felony: "183", Misdemeanor: "1499", DWI: "130", "Traffic Tickets": "4531", "Traffic Warnings": "5696", "All Reportable": "748", "Property Damage": "605", Injury: "142", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "9", "Aggravated Assault": "57", "Burglary (Residential)": "83", "Burglary (Non-Residential)": "49", "Auto Theft": "18", "All Thefts": "507", "Stolen Bikes": "12", "Theft From Vehicles": "169", Shoplifting: "123", Vandalism: "251", Fraud: "172", Forgery: "48", Arson: "6", }, { Date: "Apr-13", Population: "268937", Felony: "238", Misdemeanor: "1929", DWI: "120", "Traffic Tickets": "3862", "Traffic Warnings": "3966", "All Reportable": "702", "Property Damage": "535", Injury: "167", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "21", "Aggravated Assault": "59", "Burglary (Residential)": "78", "Burglary (Non-Residential)": "18", "Auto Theft": "15", "All Thefts": "535", "Stolen Bikes": "30", "Theft From Vehicles": "139", Shoplifting: "151", Vandalism: "308", Fraud: "133", Forgery: "15", Arson: "5", }, { Date: "May-13", Population: "268937", Felony: "199", Misdemeanor: "1939", DWI: "99", "Traffic Tickets": "4649", "Traffic Warnings": "4252", "All Reportable": "669", "Property Damage": "495", Injury: "174", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "13", "Aggravated Assault": "49", "Burglary (Residential)": "85", "Burglary (Non-Residential)": "18", "Auto Theft": "26", "All Thefts": "629", "Stolen Bikes": "34", "Theft From Vehicles": "173", Shoplifting: "159", Vandalism: "283", Fraud: "119", Forgery: "24", Arson: "5", }, { Date: "Jun-13", Population: "268937", Felony: "268", Misdemeanor: "1797", DWI: "108", "Traffic Tickets": "4136", "Traffic Warnings": "4081", "All Reportable": "634", "Property Damage": "483", Injury: "150", Fatality: "1", Homicide: "3", "Rape and Attempted Rape": "10", Robbery: "15", "Aggravated Assault": "47", "Burglary (Residential)": "86", "Burglary (Non-Residential)": "12", "Auto Theft": "21", "All Thefts": "642", "Stolen Bikes": "39", "Theft From Vehicles": "184", Shoplifting: "141", Vandalism: "277", Fraud: "134", Forgery: "69", Arson: "8", }, { Date: "Jul-13", Population: "268937", Felony: "308", Misdemeanor: "1773", DWI: "90", "Traffic Tickets": "4024", "Traffic Warnings": "3898", "All Reportable": "658", "Property Damage": "504", Injury: "153", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "12", Robbery: "24", "Aggravated Assault": "80", "Burglary (Residential)": "129", "Burglary (Non-Residential)": "18", "Auto Theft": "38", "All Thefts": "807", "Stolen Bikes": "74", "Theft From Vehicles": "298", Shoplifting: "158", Vandalism: "342", Fraud: "170", Forgery: "28", Arson: "18", }, { Date: "Aug-13", Population: "268937", Felony: "254", Misdemeanor: "1938", DWI: "122", "Traffic Tickets": "4772", "Traffic Warnings": "4534", "All Reportable": "664", "Property Damage": "496", Injury: "168", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "11", "Aggravated Assault": "43", "Burglary (Residential)": "136", "Burglary (Non-Residential)": "32", "Auto Theft": "26", "All Thefts": "806", "Stolen Bikes": "79", "Theft From Vehicles": "285", Shoplifting: "167", Vandalism: "326", Fraud: "178", Forgery: "86", Arson: "7", }, { Date: "Sep-13", Population: "268937", Felony: "257", Misdemeanor: "1955", DWI: "116", "Traffic Tickets": "3796", "Traffic Warnings": "3900", "All Reportable": "731", "Property Damage": "553", Injury: "178", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "23", "Aggravated Assault": "55", "Burglary (Residential)": "93", "Burglary (Non-Residential)": "41", "Auto Theft": "29", "All Thefts": "754", "Stolen Bikes": "64", "Theft From Vehicles": "257", Shoplifting: "150", Vandalism: "339", Fraud: "149", Forgery: "16", Arson: "5", }, { Date: "Oct-13", Population: "268937", Felony: "245", Misdemeanor: "1651", DWI: "105", "Traffic Tickets": "3470", "Traffic Warnings": "3158", "All Reportable": "726", "Property Damage": "552", Injury: "174", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "30", "Aggravated Assault": "48", "Burglary (Residential)": "114", "Burglary (Non-Residential)": "35", "Auto Theft": "21", "All Thefts": "730", "Stolen Bikes": "63", "Theft From Vehicles": "240", Shoplifting: "137", Vandalism: "191", Fraud: "178", Forgery: "49", Arson: "2", }, { Date: "Nov-13", Population: "268937", Felony: "286", Misdemeanor: "1704", DWI: "103", "Traffic Tickets": "3776", "Traffic Warnings": "3280", "All Reportable": "708", "Property Damage": "552", Injury: "155", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "17", "Aggravated Assault": "58", "Burglary (Residential)": "101", "Burglary (Non-Residential)": "15", "Auto Theft": "28", "All Thefts": "620", "Stolen Bikes": "23", "Theft From Vehicles": "224", Shoplifting: "148", Vandalism: "286", Fraud: "147", Forgery: "56", Arson: "6", }, { Date: "Dec-13", Population: "268937", Felony: "325", Misdemeanor: "1590", DWI: "132", "Traffic Tickets": "3968", "Traffic Warnings": "3339", "All Reportable": "807", "Property Damage": "664", Injury: "143", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "20", Robbery: "16", "Aggravated Assault": "31", "Burglary (Residential)": "92", "Burglary (Non-Residential)": "24", "Auto Theft": "24", "All Thefts": "532", "Stolen Bikes": "16", "Theft From Vehicles": "154", Shoplifting: "152", Vandalism: "238", Fraud: "113", Forgery: "92", Arson: "1", }, { Date: "Jan-14", Population: "273945", Felony: "309", Misdemeanor: "1769", DWI: "101", "Traffic Tickets": "5180", "Traffic Warnings": "4610", "All Reportable": "723", "Property Damage": "587", Injury: "134", Fatality: "2", Homicide: "1", "Rape and Attempted Rape": "17", Robbery: "17", "Aggravated Assault": "33", "Burglary (Residential)": "70", "Burglary (Non-Residential)": "8", "Auto Theft": "33", "All Thefts": "517", "Stolen Bikes": "9", "Theft From Vehicles": "133", Shoplifting: "129", Vandalism: "275", Fraud: "183", Forgery: "31", Arson: "2", }, { Date: "Feb-14", Population: "273945", Felony: "246", Misdemeanor: "1517", DWI: "117", "Traffic Tickets": "3952", "Traffic Warnings": "3744", "All Reportable": "682", "Property Damage": "571", Injury: "111", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "5", Robbery: "15", "Aggravated Assault": "38", "Burglary (Residential)": "51", "Burglary (Non-Residential)": "26", "Auto Theft": "24", "All Thefts": "450", "Stolen Bikes": "9", "Theft From Vehicles": "144", Shoplifting: "104", Vandalism: "199", Fraud: "137", Forgery: "36", Arson: "3", }, { Date: "Mar-14", Population: "273945", Felony: "273", Misdemeanor: "1881", DWI: "141", "Traffic Tickets": "5200", "Traffic Warnings": "5249", "All Reportable": "568", "Property Damage": "423", Injury: "143", Fatality: "2", Homicide: "1", "Rape and Attempted Rape": "9", Robbery: "13", "Aggravated Assault": "46", "Burglary (Residential)": "79", "Burglary (Non-Residential)": "14", "Auto Theft": "19", "All Thefts": "535", "Stolen Bikes": "18", "Theft From Vehicles": "174", Shoplifting: "118", Vandalism: "314", Fraud: "173", Forgery: "36", Arson: "8", }, { Date: "Apr-14", Population: "273945", Felony: "270", Misdemeanor: "1799", DWI: "106", "Traffic Tickets": "4099", "Traffic Warnings": "4055", "All Reportable": "657", "Property Damage": "498", Injury: "159", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "5", Robbery: "17", "Aggravated Assault": "57", "Burglary (Residential)": "101", "Burglary (Non-Residential)": "16", "Auto Theft": "23", "All Thefts": "645", "Stolen Bikes": "33", "Theft From Vehicles": "184", Shoplifting: "153", Vandalism: "294", Fraud: "151", Forgery: "20", Arson: "10", }, { Date: "May-14", Population: "273945", Felony: "308", Misdemeanor: "1870", DWI: "119", "Traffic Tickets": "5613", "Traffic Warnings": "4676", "All Reportable": "738", "Property Damage": "564", Injury: "174", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "13", Robbery: "17", "Aggravated Assault": "46", "Burglary (Residential)": "92", "Burglary (Non-Residential)": "23", "Auto Theft": "15", "All Thefts": "665", "Stolen Bikes": "45", "Theft From Vehicles": "196", Shoplifting: "151", Vandalism: "322", Fraud: "149", Forgery: "31", Arson: "5", }, { Date: "Jun-14", Population: "273945", Felony: "254", Misdemeanor: "1846", DWI: "106", "Traffic Tickets": "4332", "Traffic Warnings": "3901", "All Reportable": "652", "Property Damage": "526", Injury: "124", Fatality: "2", Homicide: "1", "Rape and Attempted Rape": "26", Robbery: "20", "Aggravated Assault": "53", "Burglary (Residential)": "102", "Burglary (Non-Residential)": "34", "Auto Theft": "24", "All Thefts": "623", "Stolen Bikes": "45", "Theft From Vehicles": "186", Shoplifting: "148", Vandalism: "264", Fraud: "161", Forgery: "69", Arson: "5", }, { Date: "Jul-14", Population: "273945", Felony: "264", Misdemeanor: "1797", DWI: "87", "Traffic Tickets": "4408", "Traffic Warnings": "4373", "All Reportable": "621", "Property Damage": "483", Injury: "137", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "15", Robbery: "12", "Aggravated Assault": "48", "Burglary (Residential)": "99", "Burglary (Non-Residential)": "37", "Auto Theft": "25", "All Thefts": "641", "Stolen Bikes": "65", "Theft From Vehicles": "211", Shoplifting: "154", Vandalism: "347", Fraud: "186", Forgery: "16", Arson: "10", }, { Date: "Aug-14", Population: "273945", Felony: "214", Misdemeanor: "1874", DWI: "125", "Traffic Tickets": "4279", "Traffic Warnings": "3652", "All Reportable": "694", "Property Damage": "499", Injury: "191", Fatality: "4", Homicide: "2", "Rape and Attempted Rape": "14", Robbery: "19", "Aggravated Assault": "37", "Burglary (Residential)": "92", "Burglary (Non-Residential)": "20", "Auto Theft": "35", "All Thefts": "707", "Stolen Bikes": "99", "Theft From Vehicles": "215", Shoplifting: "160", Vandalism: "264", Fraud: "142", Forgery: "15", Arson: "4", }, { Date: "Sep-14", Population: "273945", Felony: "246", Misdemeanor: "1817", DWI: "108", "Traffic Tickets": "4018", "Traffic Warnings": "3736", "All Reportable": "698", "Property Damage": "535", Injury: "161", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "14", Robbery: "19", "Aggravated Assault": "50", "Burglary (Residential)": "70", "Burglary (Non-Residential)": "18", "Auto Theft": "24", "All Thefts": "615", "Stolen Bikes": "65", "Theft From Vehicles": "176", Shoplifting: "137", Vandalism: "328", Fraud: "140", Forgery: "22", Arson: "6", }, { Date: "Oct-14", Population: "273945", Felony: "270", Misdemeanor: "1667", DWI: "102", "Traffic Tickets": "4128", "Traffic Warnings": "3343", "All Reportable": "709", "Property Damage": "521", Injury: "188", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "10", Robbery: "24", "Aggravated Assault": "57", "Burglary (Residential)": "113", "Burglary (Non-Residential)": "25", "Auto Theft": "28", "All Thefts": "702", "Stolen Bikes": "44", "Theft From Vehicles": "245", Shoplifting: "180", Vandalism: "245", Fraud: "160", Forgery: "47", Arson: "6", }, { Date: "Nov-14", Population: "273945", Felony: "265", Misdemeanor: "1570", DWI: "118", "Traffic Tickets": "3702", "Traffic Warnings": "2989", "All Reportable": "823", "Property Damage": "673", Injury: "149", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "14", Robbery: "13", "Aggravated Assault": "39", "Burglary (Residential)": "75", "Burglary (Non-Residential)": "11", "Auto Theft": "30", "All Thefts": "645", "Stolen Bikes": "23", "Theft From Vehicles": "229", Shoplifting: "176", Vandalism: "222", Fraud: "120", Forgery: "34", Arson: "2", }, { Date: "Dec-14", Population: "273945", Felony: "248", Misdemeanor: "1481", DWI: "139", "Traffic Tickets": "2943", "Traffic Warnings": "2884", "All Reportable": "732", "Property Damage": "588", Injury: "143", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "10", Robbery: "19", "Aggravated Assault": "53", "Burglary (Residential)": "93", "Burglary (Non-Residential)": "17", "Auto Theft": "28", "All Thefts": "679", "Stolen Bikes": "15", "Theft From Vehicles": "295", Shoplifting: "173", Vandalism: "258", Fraud: "138", Forgery: "43", Arson: "4", }, { Date: "Jan-15", Population: "277178", Felony: "232", Misdemeanor: "1506", DWI: "117", "Traffic Tickets": "3960", "Traffic Warnings": "3734", "All Reportable": "672", "Property Damage": "536", Injury: "134", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "22", "Aggravated Assault": "39", "Burglary (Residential)": "79", "Burglary (Non-Residential)": "20", "Auto Theft": "27", "All Thefts": "590", "Stolen Bikes": "12", "Theft From Vehicles": "218", Shoplifting: "162", Vandalism: "223", Fraud: "142", Forgery: "39", Arson: "5", }, { Date: "Feb-15", Population: "277178", Felony: "256", Misdemeanor: "1403", DWI: "98", "Traffic Tickets": "3474", "Traffic Warnings": "3047", "All Reportable": "767", "Property Damage": "626", Injury: "140", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "11", "Aggravated Assault": "40", "Burglary (Residential)": "57", "Burglary (Non-Residential)": "5", "Auto Theft": "20", "All Thefts": "368", "Stolen Bikes": "9", "Theft From Vehicles": "106", Shoplifting: "100", Vandalism: "160", Fraud: "161", Forgery: "50", Arson: "3", }, { Date: "Mar-15", Population: "277178", Felony: "272", Misdemeanor: "1777", DWI: "113", "Traffic Tickets": "4024", "Traffic Warnings": "4022", "All Reportable": "645", "Property Damage": "486", Injury: "158", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "18", Robbery: "10", "Aggravated Assault": "62", "Burglary (Residential)": "88", "Burglary (Non-Residential)": "12", "Auto Theft": "27", "All Thefts": "630", "Stolen Bikes": "23", "Theft From Vehicles": "274", Shoplifting: "143", Vandalism: "246", Fraud: "217", Forgery: "37", Arson: "11", }, { Date: "Apr-15", Population: "277178", Felony: "329", Misdemeanor: "1656", DWI: "107", "Traffic Tickets": "3607", "Traffic Warnings": "2929", "All Reportable": "692", "Property Damage": "565", Injury: "126", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "19", Robbery: "19", "Aggravated Assault": "52", "Burglary (Residential)": "102", "Burglary (Non-Residential)": "20", "Auto Theft": "25", "All Thefts": "593", "Stolen Bikes": "42", "Theft From Vehicles": "230", Shoplifting: "111", Vandalism: "294", Fraud: "226", Forgery: "53", Arson: "8", }, { Date: "May-15", Population: "277178", Felony: "273", Misdemeanor: "1410", DWI: "82", "Traffic Tickets": "3656", "Traffic Warnings": "2765", "All Reportable": "736", "Property Damage": "569", Injury: "165", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "20", "Aggravated Assault": "47", "Burglary (Residential)": "132", "Burglary (Non-Residential)": "15", "Auto Theft": "28", "All Thefts": "634", "Stolen Bikes": "47", "Theft From Vehicles": "229", Shoplifting: "147", Vandalism: "342", Fraud: "149", Forgery: "57", Arson: "3", }, { Date: "Jun-15", Population: "277178", Felony: "262", Misdemeanor: "1529", DWI: "70", "Traffic Tickets": "3643", "Traffic Warnings": "2997", "All Reportable": "722", "Property Damage": "557", Injury: "165", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "12", Robbery: "22", "Aggravated Assault": "49", "Burglary (Residential)": "70", "Burglary (Non-Residential)": "22", "Auto Theft": "35", "All Thefts": "603", "Stolen Bikes": "42", "Theft From Vehicles": "215", Shoplifting: "151", Vandalism: "261", Fraud: "200", Forgery: "23", Arson: "12", }, { Date: "Jul-15", Population: "277178", Felony: "287", Misdemeanor: "1471", DWI: "86", "Traffic Tickets": "3521", "Traffic Warnings": "3515", "All Reportable": "711", "Property Damage": "557", Injury: "153", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "20", Robbery: "15", "Aggravated Assault": "53", "Burglary (Residential)": "95", "Burglary (Non-Residential)": "15", "Auto Theft": "25", "All Thefts": "723", "Stolen Bikes": "52", "Theft From Vehicles": "286", Shoplifting: "177", Vandalism: "278", Fraud: "159", Forgery: "22", Arson: "20", }, { Date: "Aug-15", Population: "277178", Felony: "264", Misdemeanor: "1592", DWI: "91", "Traffic Tickets": "3797", "Traffic Warnings": "3950", "All Reportable": "763", "Property Damage": "592", Injury: "170", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "18", Robbery: "20", "Aggravated Assault": "54", "Burglary (Residential)": "99", "Burglary (Non-Residential)": "15", "Auto Theft": "37", "All Thefts": "663", "Stolen Bikes": "57", "Theft From Vehicles": "246", Shoplifting: "155", Vandalism: "328", Fraud: "155", Forgery: "46", Arson: "3", }, { Date: "Sep-15", Population: "277178", Felony: "385", Misdemeanor: "1687", DWI: "127", "Traffic Tickets": "4068", "Traffic Warnings": "3458", "All Reportable": "776", "Property Damage": "598", Injury: "174", Fatality: "4", Homicide: "0", "Rape and Attempted Rape": "24", Robbery: "23", "Aggravated Assault": "71", "Burglary (Residential)": "107", "Burglary (Non-Residential)": "34", "Auto Theft": "38", "All Thefts": "651", "Stolen Bikes": "62", "Theft From Vehicles": "208", Shoplifting: "155", Vandalism: "303", Fraud: "150", Forgery: "72", Arson: "7", }, { Date: "Oct-15", Population: "277178", Felony: "349", Misdemeanor: "1729", DWI: "124", "Traffic Tickets": "3812", "Traffic Warnings": "3145", "All Reportable": "790", "Property Damage": "612", Injury: "178", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "21", Robbery: "17", "Aggravated Assault": "62", "Burglary (Residential)": "97", "Burglary (Non-Residential)": "25", "Auto Theft": "25", "All Thefts": "632", "Stolen Bikes": "48", "Theft From Vehicles": "205", Shoplifting: "167", Vandalism: "264", Fraud: "177", Forgery: "19", Arson: "12", }, { Date: "Nov-15", Population: "277178", Felony: "289", Misdemeanor: "1564", DWI: "88", "Traffic Tickets": "3376", "Traffic Warnings": "2932", "All Reportable": "801", "Property Damage": "659", Injury: "141", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "21", Robbery: "17", "Aggravated Assault": "50", "Burglary (Residential)": "79", "Burglary (Non-Residential)": "14", "Auto Theft": "27", "All Thefts": "589", "Stolen Bikes": "39", "Theft From Vehicles": "202", Shoplifting: "154", Vandalism: "267", Fraud: "137", Forgery: "17", Arson: "6", }, { Date: "Dec-15", Population: "277178", Felony: "273", Misdemeanor: "1542", DWI: "103", "Traffic Tickets": "3126", "Traffic Warnings": "2592", "All Reportable": "765", "Property Damage": "601", Injury: "164", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "8", Robbery: "17", "Aggravated Assault": "37", "Burglary (Residential)": "80", "Burglary (Non-Residential)": "38", "Auto Theft": "25", "All Thefts": "637", "Stolen Bikes": "17", "Theft From Vehicles": "194", Shoplifting: "199", Vandalism: "310", Fraud: "141", Forgery: "16", Arson: "7", }, { Date: "Jan-16", Population: "281254", Felony: "277", Misdemeanor: "1500", DWI: "84", "Traffic Tickets": "3909", "Traffic Warnings": "3324", "All Reportable": "840", "Property Damage": "718", Injury: "121", Fatality: "1", Homicide: "2", "Rape and Attempted Rape": "11", Robbery: "19", "Aggravated Assault": "35", "Burglary (Residential)": "55", "Burglary (Non-Residential)": "17", "Auto Theft": "45", "All Thefts": "518", "Stolen Bikes": "11", "Theft From Vehicles": "152", Shoplifting: "190", Vandalism: "226", Fraud: "161", Forgery: "12", Arson: "4", }, { Date: "Feb-16", Population: "281254", Felony: "283", Misdemeanor: "1489", DWI: "90", "Traffic Tickets": "4030", "Traffic Warnings": "3713", "All Reportable": "646", "Property Damage": "525", Injury: "121", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "4", Robbery: "18", "Aggravated Assault": "47", "Burglary (Residential)": "72", "Burglary (Non-Residential)": "20", "Auto Theft": "21", "All Thefts": "419", "Stolen Bikes": "11", "Theft From Vehicles": "131", Shoplifting: "146", Vandalism: "171", Fraud: "166", Forgery: "8", Arson: "3", }, { Date: "Mar-16", Population: "281254", Felony: "347", Misdemeanor: "1563", DWI: "98", "Traffic Tickets": "3863", "Traffic Warnings": "3588", "All Reportable": "629", "Property Damage": "490", Injury: "139", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "17", Robbery: "11", "Aggravated Assault": "47", "Burglary (Residential)": "78", "Burglary (Non-Residential)": "13", "Auto Theft": "22", "All Thefts": "525", "Stolen Bikes": "30", "Theft From Vehicles": "170", Shoplifting: "177", Vandalism: "252", Fraud: "186", Forgery: "18", Arson: "4", }, { Date: "Apr-16", Population: "281254", Felony: "398", Misdemeanor: "1482", DWI: "73", "Traffic Tickets": "3379", "Traffic Warnings": "3278", "All Reportable": "751", "Property Damage": "588", Injury: "161", Fatality: "2", Homicide: "2", "Rape and Attempted Rape": "24", Robbery: "6", "Aggravated Assault": "46", "Burglary (Residential)": "105", "Burglary (Non-Residential)": "25", "Auto Theft": "32", "All Thefts": "547", "Stolen Bikes": "33", "Theft From Vehicles": "148", Shoplifting: "190", Vandalism: "261", Fraud: "166", Forgery: "80", Arson: "7", }, { Date: "May-16", Population: "281254", Felony: "311", Misdemeanor: "1605", DWI: "105", "Traffic Tickets": "3488", "Traffic Warnings": "3580", "All Reportable": "821", "Property Damage": "629", Injury: "192", Fatality: "0", Homicide: "3", "Rape and Attempted Rape": "15", Robbery: "21", "Aggravated Assault": "57", "Burglary (Residential)": "80", "Burglary (Non-Residential)": "22", "Auto Theft": "23", "All Thefts": "654", "Stolen Bikes": "39", "Theft From Vehicles": "234", Shoplifting: "178", Vandalism: "281", Fraud: "122", Forgery: "13", Arson: "7", }, { Date: "Jun-16", Population: "281254", Felony: "279", Misdemeanor: "1452", DWI: "81", "Traffic Tickets": "3780", "Traffic Warnings": "3609", "All Reportable": "732", "Property Damage": "558", Injury: "174", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "31", Robbery: "15", "Aggravated Assault": "42", "Burglary (Residential)": "92", "Burglary (Non-Residential)": "16", "Auto Theft": "28", "All Thefts": "641", "Stolen Bikes": "55", "Theft From Vehicles": "222", Shoplifting: "164", Vandalism: "250", Fraud: "175", Forgery: "21", Arson: "6", }, { Date: "Jul-16", Population: "281254", Felony: "309", Misdemeanor: "1486", DWI: "75", "Traffic Tickets": "3175", "Traffic Warnings": "2813", "All Reportable": "677", "Property Damage": "513", Injury: "164", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "17", Robbery: "15", "Aggravated Assault": "70", "Burglary (Residential)": "92", "Burglary (Non-Residential)": "15", "Auto Theft": "27", "All Thefts": "622", "Stolen Bikes": "58", "Theft From Vehicles": "214", Shoplifting: "137", Vandalism: "277", Fraud: "216", Forgery: "10", Arson: "1", }, { Date: "Aug-16", Population: "281254", Felony: "318", Misdemeanor: "1609", DWI: "108", "Traffic Tickets": "4347", "Traffic Warnings": "4041", "All Reportable": "763", "Property Damage": "607", Injury: "155", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "28", Robbery: "14", "Aggravated Assault": "59", "Burglary (Residential)": "105", "Burglary (Non-Residential)": "21", "Auto Theft": "18", "All Thefts": "626", "Stolen Bikes": "51", "Theft From Vehicles": "234", Shoplifting: "147", Vandalism: "283", Fraud: "219", Forgery: "12", Arson: "10", }, { Date: "Sep-16", Population: "281254", Felony: "306", Misdemeanor: "1802", DWI: "77", "Traffic Tickets": "3766", "Traffic Warnings": "3223", "All Reportable": "843", "Property Damage": "653", Injury: "190", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "21", Robbery: "21", "Aggravated Assault": "51", "Burglary (Residential)": "97", "Burglary (Non-Residential)": "23", "Auto Theft": "31", "All Thefts": "639", "Stolen Bikes": "39", "Theft From Vehicles": "272", Shoplifting: "130", Vandalism: "262", Fraud: "187", Forgery: "21", Arson: "6", }, { Date: "Oct-16", Population: "281254", Felony: "276", Misdemeanor: "1662", DWI: "68", "Traffic Tickets": "3127", "Traffic Warnings": "2387", "All Reportable": "773", "Property Damage": "600", Injury: "173", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "21", Robbery: "9", "Aggravated Assault": "47", "Burglary (Residential)": "90", "Burglary (Non-Residential)": "18", "Auto Theft": "34", "All Thefts": "756", "Stolen Bikes": "37", "Theft From Vehicles": "314", Shoplifting: "186", Vandalism: "269", Fraud: "177", Forgery: "18", Arson: "13", }, { Date: "Nov-16", Population: "281254", Felony: "324", Misdemeanor: "1429", DWI: "79", "Traffic Tickets": "3114", "Traffic Warnings": "2468", "All Reportable": "726", "Property Damage": "552", Injury: "173", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "17", Robbery: "17", "Aggravated Assault": "44", "Burglary (Residential)": "93", "Burglary (Non-Residential)": "21", "Auto Theft": "30", "All Thefts": "652", "Stolen Bikes": "38", "Theft From Vehicles": "245", Shoplifting: "162", Vandalism: "319", Fraud: "142", Forgery: "18", Arson: "7", }, { Date: "Dec-16", Population: "281254", Felony: "293", Misdemeanor: "1239", DWI: "99", "Traffic Tickets": "2910", "Traffic Warnings": "2595", "All Reportable": "771", "Property Damage": "624", Injury: "146", Fatality: "1", Homicide: "2", "Rape and Attempted Rape": "17", Robbery: "25", "Aggravated Assault": "42", "Burglary (Residential)": "47", "Burglary (Non-Residential)": "41", "Auto Theft": "19", "All Thefts": "471", "Stolen Bikes": "11", "Theft From Vehicles": "102", Shoplifting: "180", Vandalism: "172", Fraud: "113", Forgery: "45", Arson: "7", }, { Date: "Jan-17", Population: "284506", Felony: "331", Misdemeanor: "1336", DWI: "79", "Traffic Tickets": "3374", "Traffic Warnings": "3194", "All Reportable": "803", "Property Damage": "667", Injury: "135", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "17", Robbery: "21", "Aggravated Assault": "49", "Burglary (Residential)": "67", "Burglary (Non-Residential)": "21", "Auto Theft": "23", "All Thefts": "518", "Stolen Bikes": "12", "Theft From Vehicles": "162", Shoplifting: "175", Vandalism: "193", Fraud: "124", Forgery: "19", Arson: "8", }, { Date: "Feb-17", Population: "284506", Felony: "277", Misdemeanor: "1427", DWI: "78", "Traffic Tickets": "3675", "Traffic Warnings": "4017", "All Reportable": "579", "Property Damage": "469", Injury: "110", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "21", Robbery: "19", "Aggravated Assault": "39", "Burglary (Residential)": "58", "Burglary (Non-Residential)": "16", "Auto Theft": "21", "All Thefts": "426", "Stolen Bikes": "14", "Theft From Vehicles": "102", Shoplifting: "140", Vandalism: "191", Fraud: "150", Forgery: "16", Arson: "1", }, { Date: "Mar-17", Population: "284506", Felony: "317", Misdemeanor: "1500", DWI: "118", "Traffic Tickets": "3874", "Traffic Warnings": "4367", "All Reportable": "685", "Property Damage": "550", Injury: "135", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "20", Robbery: "10", "Aggravated Assault": "33", "Burglary (Residential)": "50", "Burglary (Non-Residential)": "22", "Auto Theft": "22", "All Thefts": "451", "Stolen Bikes": "17", "Theft From Vehicles": "112", Shoplifting: "122", Vandalism: "207", Fraud: "149", Forgery: "14", Arson: "6", }, { Date: "Apr-17", Population: "284506", Felony: "333", Misdemeanor: "1559", DWI: "86", "Traffic Tickets": "3461", "Traffic Warnings": "4305", "All Reportable": "686", "Property Damage": "520", Injury: "165", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "21", Robbery: "13", "Aggravated Assault": "55", "Burglary (Residential)": "90", "Burglary (Non-Residential)": "25", "Auto Theft": "19", "All Thefts": "496", "Stolen Bikes": "35", "Theft From Vehicles": "128", Shoplifting: "154", Vandalism: "234", Fraud: "173", Forgery: "11", Arson: "2", }, { Date: "May-17", Population: "284506", Felony: "318", Misdemeanor: "1594", DWI: "80", "Traffic Tickets": "3702", "Traffic Warnings": "4005", "All Reportable": "778", "Property Damage": "599", Injury: "179", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "16", Robbery: "13", "Aggravated Assault": "63", "Burglary (Residential)": "75", "Burglary (Non-Residential)": "24", "Auto Theft": "23", "All Thefts": "534", "Stolen Bikes": "27", "Theft From Vehicles": "176", Shoplifting: "147", Vandalism: "254", Fraud: "165", Forgery: "8", Arson: "7", }, { Date: "Jun-17", Population: "284506", Felony: "310", Misdemeanor: "1514", DWI: "90", "Traffic Tickets": "3568", "Traffic Warnings": "3780", "All Reportable": "757", "Property Damage": "587", Injury: "170", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "18", Robbery: "14", "Aggravated Assault": "47", "Burglary (Residential)": "70", "Burglary (Non-Residential)": "15", "Auto Theft": "19", "All Thefts": "603", "Stolen Bikes": "55", "Theft From Vehicles": "225", Shoplifting: "149", Vandalism: "263", Fraud: "160", Forgery: "9", Arson: "4", }, { Date: "Jul-17", Population: "284506", Felony: "368", Misdemeanor: "1582", DWI: "77", "Traffic Tickets": "3416", "Traffic Warnings": "3405", "All Reportable": "620", "Property Damage": "488", Injury: "131", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "21", Robbery: "17", "Aggravated Assault": "60", "Burglary (Residential)": "120", "Burglary (Non-Residential)": "18", "Auto Theft": "30", "All Thefts": "666", "Stolen Bikes": "61", "Theft From Vehicles": "272", Shoplifting: "153", Vandalism: "258", Fraud: "181", Forgery: "44", Arson: "5", }, { Date: "Aug-17", Population: "284506", Felony: "297", Misdemeanor: "1630", DWI: "87", "Traffic Tickets": "4180", "Traffic Warnings": "3629", "All Reportable": "793", "Property Damage": "603", Injury: "189", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "33", Robbery: "13", "Aggravated Assault": "61", "Burglary (Residential)": "85", "Burglary (Non-Residential)": "17", "Auto Theft": "31", "All Thefts": "682", "Stolen Bikes": "79", "Theft From Vehicles": "226", Shoplifting: "153", Vandalism: "258", Fraud: "178", Forgery: "12", Arson: "5", }, { Date: "Sep-17", Population: "284506", Felony: "339", Misdemeanor: "1613", DWI: "75", "Traffic Tickets": "3412", "Traffic Warnings": "3357", "All Reportable": "805", "Property Damage": "605", Injury: "199", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "17", Robbery: "16", "Aggravated Assault": "56", "Burglary (Residential)": "107", "Burglary (Non-Residential)": "23", "Auto Theft": "47", "All Thefts": "775", "Stolen Bikes": "82", "Theft From Vehicles": "285", Shoplifting: "178", Vandalism: "271", Fraud: "181", Forgery: "15", Arson: "7", }, { Date: "Oct-17", Population: "284506", Felony: "290", Misdemeanor: "1580", DWI: "70", "Traffic Tickets": "3076", "Traffic Warnings": "2699", "All Reportable": "903", "Property Damage": "694", Injury: "206", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "30", Robbery: "20", "Aggravated Assault": "49", "Burglary (Residential)": "100", "Burglary (Non-Residential)": "48", "Auto Theft": "48", "All Thefts": "725", "Stolen Bikes": "63", "Theft From Vehicles": "274", Shoplifting: "184", Vandalism: "337", Fraud: "168", Forgery: "12", Arson: "5", }, { Date: "Nov-17", Population: "284506", Felony: "235", Misdemeanor: "1497", DWI: "78", "Traffic Tickets": "2931", "Traffic Warnings": "2476", "All Reportable": "752", "Property Damage": "597", Injury: "154", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "24", Robbery: "15", "Aggravated Assault": "73", "Burglary (Residential)": "67", "Burglary (Non-Residential)": "21", "Auto Theft": "41", "All Thefts": "628", "Stolen Bikes": "37", "Theft From Vehicles": "205", Shoplifting: "190", Vandalism: "301", Fraud: "148", Forgery: "22", Arson: "4", }, { Date: "Dec-17", Population: "284506", Felony: "292", Misdemeanor: "1269", DWI: "85", "Traffic Tickets": "2545", "Traffic Warnings": "2577", "All Reportable": "836", "Property Damage": "694", Injury: "142", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "22", Robbery: "20", "Aggravated Assault": "32", "Burglary (Residential)": "97", "Burglary (Non-Residential)": "17", "Auto Theft": "33", "All Thefts": "705", "Stolen Bikes": "24", "Theft From Vehicles": "215", Shoplifting: "181", Vandalism: "240", Fraud: "143", Forgery: "12", Arson: "2", }, { Date: "Jan-18", Population: "287401", Felony: "290", Misdemeanor: "1352", DWI: "97", "Traffic Tickets": "3070", "Traffic Warnings": "3456", "All Reportable": "829", "Property Damage": "658", Injury: "170", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "30", Robbery: "8", "Aggravated Assault": "44", "Burglary (Residential)": "81", "Burglary (Non-Residential)": "17", "Auto Theft": "26", "All Thefts": "494", "Stolen Bikes": "8", "Theft From Vehicles": "174", Shoplifting: "171", Vandalism: "194", Fraud: "123", Forgery: "6", Arson: "2", }, { Date: "Feb-18", Population: "287401", Felony: "292", Misdemeanor: "1266", DWI: "88", "Traffic Tickets": "2839", "Traffic Warnings": "3195", "All Reportable": "910", "Property Damage": "746", Injury: "163", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "23", Robbery: "7", "Aggravated Assault": "42", "Burglary (Residential)": "74", "Burglary (Non-Residential)": "14", "Auto Theft": "24", "All Thefts": "394", "Stolen Bikes": "17", "Theft From Vehicles": "116", Shoplifting: "123", Vandalism: "215", Fraud: "139", Forgery: "6", Arson: "4", }, { Date: "Mar-18", Population: "287401", Felony: "252", Misdemeanor: "1407", DWI: "105", "Traffic Tickets": "3040", "Traffic Warnings": "3590", "All Reportable": "668", "Property Damage": "547", Injury: "119", Fatality: "2", Homicide: "1", "Rape and Attempted Rape": "20", Robbery: "15", "Aggravated Assault": "46", "Burglary (Residential)": "87", "Burglary (Non-Residential)": "15", "Auto Theft": "26", "All Thefts": "507", "Stolen Bikes": "30", "Theft From Vehicles": "165", Shoplifting: "162", Vandalism: "227", Fraud: "150", Forgery: "5", Arson: "3", }, { Date: "Apr-18", Population: "287401", Felony: "327", Misdemeanor: "1410", DWI: "67", "Traffic Tickets": "3043", "Traffic Warnings": "3705", "All Reportable": "662", "Property Damage": "502", Injury: "160", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "20", Robbery: "12", "Aggravated Assault": "42", "Burglary (Residential)": "83", "Burglary (Non-Residential)": "18", "Auto Theft": "22", "All Thefts": "486", "Stolen Bikes": "34", "Theft From Vehicles": "126", Shoplifting: "139", Vandalism: "202", Fraud: "142", Forgery: "7", Arson: "2", }, { Date: "May-18", Population: "287401", Felony: "294", Misdemeanor: "1479", DWI: "102", "Traffic Tickets": "3531", "Traffic Warnings": "4199", "All Reportable": "713", "Property Damage": "533", Injury: "180", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "25", Robbery: "12", "Aggravated Assault": "51", "Burglary (Residential)": "74", "Burglary (Non-Residential)": "39", "Auto Theft": "29", "All Thefts": "637", "Stolen Bikes": "54", "Theft From Vehicles": "233", Shoplifting: "153", Vandalism: "250", Fraud: "259", Forgery: "21", Arson: "3", }, { Date: "Jun-18", Population: "287401", Felony: "375", Misdemeanor: "1394", DWI: "65", "Traffic Tickets": "3752", "Traffic Warnings": "4985", "All Reportable": "625", "Property Damage": "491", Injury: "134", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "25", Robbery: "12", "Aggravated Assault": "73", "Burglary (Residential)": "72", "Burglary (Non-Residential)": "16", "Auto Theft": "37", "All Thefts": "579", "Stolen Bikes": "57", "Theft From Vehicles": "150", Shoplifting: "184", Vandalism: "221", Fraud: "137", Forgery: "17", Arson: "5", }, { Date: "Jul-18", Population: "287401", Felony: "368", Misdemeanor: "1534", DWI: "73", "Traffic Tickets": "3392", "Traffic Warnings": "4440", "All Reportable": "655", "Property Damage": "500", Injury: "155", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "29", Robbery: "17", "Aggravated Assault": "52", "Burglary (Residential)": "94", "Burglary (Non-Residential)": "23", "Auto Theft": "49", "All Thefts": "654", "Stolen Bikes": "60", "Theft From Vehicles": "206", Shoplifting: "178", Vandalism: "264", Fraud: "181", Forgery: "7", Arson: "4", }, { Date: "Aug-18", Population: "287401", Felony: "383", Misdemeanor: "1554", DWI: "102", "Traffic Tickets": "3824", "Traffic Warnings": "4448", "All Reportable": "828", "Property Damage": "636", Injury: "192", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "24", Robbery: "21", "Aggravated Assault": "70", "Burglary (Residential)": "77", "Burglary (Non-Residential)": "19", "Auto Theft": "24", "All Thefts": "642", "Stolen Bikes": "59", "Theft From Vehicles": "199", Shoplifting: "158", Vandalism: "221", Fraud: "183", Forgery: "42", Arson: "3", }, { Date: "Sep-18", Population: "287401", Felony: "347", Misdemeanor: "1661", DWI: "102", "Traffic Tickets": "3268", "Traffic Warnings": "3160", "All Reportable": "856", "Property Damage": "662", Injury: "192", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "22", Robbery: "23", "Aggravated Assault": "51", "Burglary (Residential)": "77", "Burglary (Non-Residential)": "22", "Auto Theft": "47", "All Thefts": "571", "Stolen Bikes": "67", "Theft From Vehicles": "168", Shoplifting: "160", Vandalism: "251", Fraud: "151", Forgery: "36", Arson: "4", }, { Date: "Oct-18", Population: "287401", Felony: "341", Misdemeanor: "1664", DWI: "79", "Traffic Tickets": "3267", "Traffic Warnings": "3245", "All Reportable": "877", "Property Damage": "693", Injury: "181", Fatality: "1", Homicide: "2", "Rape and Attempted Rape": "21", Robbery: "15", "Aggravated Assault": "47", "Burglary (Residential)": "93", "Burglary (Non-Residential)": "24", "Auto Theft": "56", "All Thefts": "667", "Stolen Bikes": "43", "Theft From Vehicles": "210", Shoplifting: "187", Vandalism: "227", Fraud: "146", Forgery: "21", Arson: "8", }, { Date: "Nov-18", Population: "287401", Felony: "342", Misdemeanor: "1431", DWI: "92", "Traffic Tickets": "3133", "Traffic Warnings": "3596", "All Reportable": "830", "Property Damage": "659", Injury: "169", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "24", Robbery: "11", "Aggravated Assault": "35", "Burglary (Residential)": "76", "Burglary (Non-Residential)": "17", "Auto Theft": "30", "All Thefts": "520", "Stolen Bikes": "19", "Theft From Vehicles": "118", Shoplifting: "196", Vandalism: "190", Fraud: "185", Forgery: "16", Arson: "7", }, { Date: "Dec-18", Population: "287401", Felony: "334", Misdemeanor: "1215", DWI: "106", "Traffic Tickets": "2809", "Traffic Warnings": "2962", "All Reportable": "759", "Property Damage": "632", Injury: "127", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "21", Robbery: "7", "Aggravated Assault": "37", "Burglary (Residential)": "45", "Burglary (Non-Residential)": "27", "Auto Theft": "38", "All Thefts": "522", "Stolen Bikes": "16", "Theft From Vehicles": "179", Shoplifting: "184", Vandalism: "184", Fraud: "162", Forgery: "30", Arson: "2", }, { Date: "Jan-19", Population: "287401", Felony: "344", Misdemeanor: "1414", DWI: "76", "Traffic Tickets": "3360", "Traffic Warnings": "3770", "All Reportable": "750", "Property Damage": "621", Injury: "128", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "28", Robbery: "11", "Aggravated Assault": "43", "Burglary (Residential)": "51", "Burglary (Non-Residential)": "26", "Auto Theft": "43", "All Thefts": "467", "Stolen Bikes": "17", "Theft From Vehicles": "140", Shoplifting: "172", Vandalism: "137", Fraud: "150", Forgery: "21", Arson: "0", }, { Date: "Feb-19", Population: "287401", Felony: "283", Misdemeanor: "1052", DWI: "57", "Traffic Tickets": "2653", "Traffic Warnings": "2858", "All Reportable": "949", "Property Damage": "799", Injury: "149", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "21", Robbery: "14", "Aggravated Assault": "46", "Burglary (Residential)": "46", "Burglary (Non-Residential)": "20", "Auto Theft": "37", "All Thefts": "433", "Stolen Bikes": "11", "Theft From Vehicles": "127", Shoplifting: "137", Vandalism: "124", Fraud: "169", Forgery: "22", Arson: "0", }, { Date: "Mar-19", Population: "287401", Felony: "354", Misdemeanor: "1389", DWI: "103", "Traffic Tickets": "3075", "Traffic Warnings": "3779", "All Reportable": "725", "Property Damage": "610", Injury: "113", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "33", Robbery: "17", "Aggravated Assault": "34", "Burglary (Residential)": "55", "Burglary (Non-Residential)": "12", "Auto Theft": "32", "All Thefts": "434", "Stolen Bikes": "16", "Theft From Vehicles": "130", Shoplifting: "143", Vandalism: "165", Fraud: "192", Forgery: "9", Arson: "6", }, { Date: "Apr-19", Population: "287401", Felony: "380", Misdemeanor: "1331", DWI: "59", "Traffic Tickets": "2278", "Traffic Warnings": "2958", "All Reportable": "617", "Property Damage": "481", Injury: "133", Fatality: "3", Homicide: "0", "Rape and Attempted Rape": "21", Robbery: "7", "Aggravated Assault": "59", "Burglary (Residential)": "82", "Burglary (Non-Residential)": "16", "Auto Theft": "30", "All Thefts": "571", "Stolen Bikes": "40", "Theft From Vehicles": "189", Shoplifting: "152", Vandalism: "247", Fraud: "194", Forgery: "10", Arson: "9", }, { Date: "May-19", Population: "287401", Felony: "387", Misdemeanor: "1266", DWI: "68", "Traffic Tickets": "3424", "Traffic Warnings": "3657", "All Reportable": "690", "Property Damage": "541", Injury: "148", Fatality: "1", Homicide: "2", "Rape and Attempted Rape": "22", Robbery: "11", "Aggravated Assault": "53", "Burglary (Residential)": "66", "Burglary (Non-Residential)": "24", "Auto Theft": "46", "All Thefts": "598", "Stolen Bikes": "27", "Theft From Vehicles": "209", Shoplifting: "162", Vandalism: "249", Fraud: "182", Forgery: "20", Arson: "5", }, { Date: "Jun-19", Population: "287401", Felony: "283", Misdemeanor: "1171", DWI: "71", "Traffic Tickets": "2742", "Traffic Warnings": "3375", "All Reportable": "630", "Property Damage": "487", Injury: "141", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "31", Robbery: "12", "Aggravated Assault": "45", "Burglary (Residential)": "60", "Burglary (Non-Residential)": "20", "Auto Theft": "43", "All Thefts": "579", "Stolen Bikes": "55", "Theft From Vehicles": "212", Shoplifting: "145", Vandalism: "308", Fraud: "174", Forgery: "6", Arson: "9", }, { Date: "Jul-19", Population: "287401", Felony: "263", Misdemeanor: "1211", DWI: "60", "Traffic Tickets": "2739", "Traffic Warnings": "3102", "All Reportable": "643", "Property Damage": "498", Injury: "143", Fatality: "2", Homicide: "2", "Rape and Attempted Rape": "39", Robbery: "19", "Aggravated Assault": "70", "Burglary (Residential)": "65", "Burglary (Non-Residential)": "21", "Auto Theft": "36", "All Thefts": "687", "Stolen Bikes": "51", "Theft From Vehicles": "319", Shoplifting: "136", Vandalism: "254", Fraud: "204", Forgery: "21", Arson: "9", }, { Date: "Aug-19", Population: "287401", Felony: "308", Misdemeanor: "1308", DWI: "82", "Traffic Tickets": "3177", "Traffic Warnings": "3365", "All Reportable": "755", "Property Damage": "571", Injury: "183", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "37", Robbery: "15", "Aggravated Assault": "66", "Burglary (Residential)": "61", "Burglary (Non-Residential)": "32", "Auto Theft": "24", "All Thefts": "668", "Stolen Bikes": "63", "Theft From Vehicles": "256", Shoplifting: "141", Vandalism: "306", Fraud: "188", Forgery: "22", Arson: "3", }, { Date: "Sep-19", Population: "287401", Felony: "309", Misdemeanor: "1327", DWI: "63", "Traffic Tickets": "2303", "Traffic Warnings": "2089", "All Reportable": "765", "Property Damage": "602", Injury: "163", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "28", Robbery: "12", "Aggravated Assault": "59", "Burglary (Residential)": "72", "Burglary (Non-Residential)": "23", "Auto Theft": "41", "All Thefts": "565", "Stolen Bikes": "42", "Theft From Vehicles": "224", Shoplifting: "143", Vandalism: "244", Fraud: "158", Forgery: "46", Arson: "3", }, { Date: "Oct-19", Population: "287401", Felony: "287", Misdemeanor: "1270", DWI: "59", "Traffic Tickets": "2601", "Traffic Warnings": "2388", "All Reportable": "748", "Property Damage": "582", Injury: "164", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "24", Robbery: "21", "Aggravated Assault": "44", "Burglary (Residential)": "74", "Burglary (Non-Residential)": "15", "Auto Theft": "29", "All Thefts": "557", "Stolen Bikes": "32", "Theft From Vehicles": "146", Shoplifting: "172", Vandalism: "198", Fraud: "178", Forgery: "15", Arson: "6", }, { Date: "Nov-19", Population: "287401", Felony: "291", Misdemeanor: "1225", DWI: "80", "Traffic Tickets": "2970", "Traffic Warnings": "2590", "All Reportable": "663", "Property Damage": "513", Injury: "148", Fatality: "2", Homicide: "0", "Rape and Attempted Rape": "20", Robbery: "15", "Aggravated Assault": "59", "Burglary (Residential)": "40", "Burglary (Non-Residential)": "48", "Auto Theft": "43", "All Thefts": "451", "Stolen Bikes": "15", "Theft From Vehicles": "132", Shoplifting: "132", Vandalism: "192", Fraud: "174", Forgery: "54", Arson: "1", }, { Date: "Dec-19", Population: "287401", Felony: "287", Misdemeanor: "1122", DWI: "76", "Traffic Tickets": "2725", "Traffic Warnings": "2664", "All Reportable": "734", "Property Damage": "590", Injury: "144", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "20", Robbery: "9", "Aggravated Assault": "44", "Burglary (Residential)": "42", "Burglary (Non-Residential)": "30", "Auto Theft": "28", "All Thefts": "535", "Stolen Bikes": "9", "Theft From Vehicles": "198", Shoplifting: "144", Vandalism: "179", Fraud: "158", Forgery: "24", Arson: "3", }, { Date: "Jan-20", Population: "289548", Felony: "312", Misdemeanor: "1156", DWI: "53", "Traffic Tickets": "3114", "Traffic Warnings": "3467", "All Reportable": "837", "Property Damage": "699", Injury: "138", Fatality: "0", Homicide: "-2", "Rape and Attempted Rape": "29", Robbery: "17", "Aggravated Assault": "60", "Burglary (Residential)": "59", "Burglary (Non-Residential)": "18", "Auto Theft": "62", "All Thefts": "444", "Stolen Bikes": "7", "Theft From Vehicles": "144", Shoplifting: "134", Vandalism: "137", Fraud: "173", Forgery: "17", Arson: "2", }, { Date: "Feb-20", Population: "289548", Felony: "307", Misdemeanor: "1186", DWI: "83", "Traffic Tickets": "3224", "Traffic Warnings": "3123", "All Reportable": "685", "Property Damage": "564", Injury: "120", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "33", Robbery: "10", "Aggravated Assault": "61", "Burglary (Residential)": "38", "Burglary (Non-Residential)": "22", "Auto Theft": "51", "All Thefts": "496", "Stolen Bikes": "9", "Theft From Vehicles": "188", Shoplifting: "144", Vandalism: "163", Fraud: "177", Forgery: "40", Arson: "6", }, { Date: "Mar-20", Population: "289548", Felony: "280", Misdemeanor: "1111", DWI: "77", "Traffic Tickets": "2743", "Traffic Warnings": "2822", "All Reportable": "519", "Property Damage": "416", Injury: "100", Fatality: "3", Homicide: "2", "Rape and Attempted Rape": "23", Robbery: "12", "Aggravated Assault": "45", "Burglary (Residential)": "71", "Burglary (Non-Residential)": "32", "Auto Theft": "46", "All Thefts": "596", "Stolen Bikes": "21", "Theft From Vehicles": "305", Shoplifting: "116", Vandalism: "206", Fraud: "203", Forgery: "36", Arson: "2", }, { Date: "Apr-20", Population: "289548", Felony: "267", Misdemeanor: "825", DWI: "38", "Traffic Tickets": "1369", "Traffic Warnings": "875", "All Reportable": "358", "Property Damage": "286", Injury: "71", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "19", Robbery: "17", "Aggravated Assault": "68", "Burglary (Residential)": "57", "Burglary (Non-Residential)": "28", "Auto Theft": "55", "All Thefts": "649", "Stolen Bikes": "28", "Theft From Vehicles": "390", Shoplifting: "95", Vandalism: "224", Fraud: "210", Forgery: "11", Arson: "5", }, { Date: "May-20", Population: "289548", Felony: "268", Misdemeanor: "1024", DWI: "72", "Traffic Tickets": "2488", "Traffic Warnings": "1721", "All Reportable": "492", "Property Damage": "392", Injury: "100", Fatality: "0", Homicide: "1", "Rape and Attempted Rape": "22", Robbery: "6", "Aggravated Assault": "93", "Burglary (Residential)": "43", "Burglary (Non-Residential)": "28", "Auto Theft": "33", "All Thefts": "582", "Stolen Bikes": "22", "Theft From Vehicles": "272", Shoplifting: "126", Vandalism: "359", Fraud: "197", Forgery: "7", Arson: "8", }, { Date: "Jun-20", Population: "289548", Felony: "272", Misdemeanor: "950", DWI: "70", "Traffic Tickets": "1559", "Traffic Warnings": "1576", "All Reportable": "569", "Property Damage": "428", Injury: "141", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "21", Robbery: "11", "Aggravated Assault": "77", "Burglary (Residential)": "49", "Burglary (Non-Residential)": "34", "Auto Theft": "58", "All Thefts": "539", "Stolen Bikes": "44", "Theft From Vehicles": "238", Shoplifting: "113", Vandalism: "274", Fraud: "219", Forgery: "24", Arson: "7", }, { Date: "Jul-20", Population: "289548", Felony: "338", Misdemeanor: "983", DWI: "62", "Traffic Tickets": "1576", "Traffic Warnings": "1172", "All Reportable": "608", "Property Damage": "462", Injury: "145", Fatality: "1", Homicide: "3", "Rape and Attempted Rape": "42", Robbery: "21", "Aggravated Assault": "97", "Burglary (Residential)": "63", "Burglary (Non-Residential)": "17", "Auto Theft": "50", "All Thefts": "537", "Stolen Bikes": "40", "Theft From Vehicles": "221", Shoplifting: "132", Vandalism: "233", Fraud: "202", Forgery: "12", Arson: "13", }, { Date: "Aug-20", Population: "289548", Felony: "327", Misdemeanor: "1187", DWI: "76", "Traffic Tickets": "2276", "Traffic Warnings": "1588", "All Reportable": "592", "Property Damage": "449", Injury: "142", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "18", Robbery: "11", "Aggravated Assault": "79", "Burglary (Residential)": "80", "Burglary (Non-Residential)": "18", "Auto Theft": "42", "All Thefts": "669", "Stolen Bikes": "47", "Theft From Vehicles": "328", Shoplifting: "130", Vandalism: "250", Fraud: "225", Forgery: "23", Arson: "9", }, { Date: "Sep-20", Population: "289548", Felony: "289", Misdemeanor: "1001", DWI: "80", "Traffic Tickets": "1957", "Traffic Warnings": "1179", "All Reportable": "646", "Property Damage": "493", Injury: "150", Fatality: "3", Homicide: "1", "Rape and Attempted Rape": "14", Robbery: "22", "Aggravated Assault": "70", "Burglary (Residential)": "64", "Burglary (Non-Residential)": "25", "Auto Theft": "44", "All Thefts": "674", "Stolen Bikes": "50", "Theft From Vehicles": "321", Shoplifting: "128", Vandalism: "231", Fraud: "174", Forgery: "21", Arson: "4", }, { Date: "Oct-20", Population: "289548", Felony: "306", Misdemeanor: "1032", DWI: "77", "Traffic Tickets": "1964", "Traffic Warnings": "988", "All Reportable": "625", "Property Damage": "507", Injury: "118", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "21", Robbery: "22", "Aggravated Assault": "69", "Burglary (Residential)": "49", "Burglary (Non-Residential)": "24", "Auto Theft": "45", "All Thefts": "551", "Stolen Bikes": "35", "Theft From Vehicles": "186", Shoplifting: "127", Vandalism: "275", Fraud: "203", Forgery: "33", Arson: "8", }, { Date: "Nov-20", Population: "289548", Felony: "318", Misdemeanor: "863", DWI: "85", "Traffic Tickets": "1938", "Traffic Warnings": "351", "All Reportable": "557", "Property Damage": "454", Injury: "102", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "22", Robbery: "6", "Aggravated Assault": "57", "Burglary (Residential)": "77", "Burglary (Non-Residential)": "35", "Auto Theft": "47", "All Thefts": "581", "Stolen Bikes": "20", "Theft From Vehicles": "241", Shoplifting: "134", Vandalism: "283", Fraud: "204", Forgery: "18", Arson: "5", }, { Date: "Dec-20", Population: "289548", Felony: "325", Misdemeanor: "871", DWI: "52", "Traffic Tickets": "1792", "Traffic Warnings": "198", "All Reportable": "616", "Property Damage": "510", Injury: "106", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "24", Robbery: "10", "Aggravated Assault": "55", "Burglary (Residential)": "75", "Burglary (Non-Residential)": "50", "Auto Theft": "60", "All Thefts": "584", "Stolen Bikes": "14", "Theft From Vehicles": "292", Shoplifting: "133", Vandalism: "198", Fraud: "208", Forgery: "41", Arson: "8", }, { Date: "Jan-21", Population: "289548", Felony: "270", Misdemeanor: "835", DWI: "57", "Traffic Tickets": "2001", "Traffic Warnings": "955", "All Reportable": "634", "Property Damage": "516", Injury: "118", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "25", Robbery: "10", "Aggravated Assault": "65", "Burglary (Residential)": "53", "Burglary (Non-Residential)": "27", "Auto Theft": "30", "All Thefts": "413", "Stolen Bikes": "7", "Theft From Vehicles": "174", Shoplifting: "116", Vandalism: "133", Fraud: "173", Forgery: "60", Arson: "1", }, { Date: "Feb-21", Population: "289548", Felony: "221", Misdemeanor: "704", DWI: "110", "Traffic Tickets": "1821", "Traffic Warnings": "858", "All Reportable": "717", "Property Damage": "591", Injury: "126", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "11", Robbery: "6", "Aggravated Assault": "36", "Burglary (Residential)": "43", "Burglary (Non-Residential)": "11", "Auto Theft": "46", "All Thefts": "396", "Stolen Bikes": "2", "Theft From Vehicles": "184", Shoplifting: "84", Vandalism: "114", Fraud: "156", Forgery: "19", Arson: "1", }, { Date: "Mar-21", Population: "289548", Felony: "391", Misdemeanor: "988", DWI: "113", "Traffic Tickets": "2108", "Traffic Warnings": "1148", "All Reportable": "536", "Property Damage": "405", Injury: "130", Fatality: "1", Homicide: "2", "Rape and Attempted Rape": "21", Robbery: "9", "Aggravated Assault": "41", "Burglary (Residential)": "55", "Burglary (Non-Residential)": "18", "Auto Theft": "71", "All Thefts": "450", "Stolen Bikes": "0", "Theft From Vehicles": "213", Shoplifting: "76", Vandalism: "308", Fraud: "190", Forgery: "40", Arson: "6", }, { Date: "Apr-21", Population: "289548", Felony: "375", Misdemeanor: "984", DWI: "78", "Traffic Tickets": "2013", "Traffic Warnings": "1623", "All Reportable": "551", "Property Damage": "409", Injury: "141", Fatality: "1", Homicide: "0", "Rape and Attempted Rape": "24", Robbery: "16", "Aggravated Assault": "62", "Burglary (Residential)": "57", "Burglary (Non-Residential)": "20", "Auto Theft": "47", "All Thefts": "516", "Stolen Bikes": "0", "Theft From Vehicles": "201", Shoplifting: "124", Vandalism: "321", Fraud: "155", Forgery: "39", Arson: "3", }, { Date: "May-21", Population: "289548", Felony: "344", Misdemeanor: "1047", DWI: "66", "Traffic Tickets": "1931", "Traffic Warnings": "987", "All Reportable": "577", "Property Damage": "426", Injury: "148", Fatality: "3", Homicide: "1", "Rape and Attempted Rape": "25", Robbery: "8", "Aggravated Assault": "59", "Burglary (Residential)": "46", "Burglary (Non-Residential)": "16", "Auto Theft": "75", "All Thefts": "514", "Stolen Bikes": "0", "Theft From Vehicles": "206", Shoplifting: "109", Vandalism: "326", Fraud: "175", Forgery: "15", Arson: "6", }, { Date: "Jun-21", Population: "289548", Felony: "397", Misdemeanor: "1096", DWI: "92", "Traffic Tickets": "1630", "Traffic Warnings": "928", "All Reportable": "654", "Property Damage": "502", Injury: "150", Fatality: "2", Homicide: "2", "Rape and Attempted Rape": "12", Robbery: "15", "Aggravated Assault": "62", "Burglary (Residential)": "51", "Burglary (Non-Residential)": "20", "Auto Theft": "81", "All Thefts": "595", "Stolen Bikes": "0", "Theft From Vehicles": "225", Shoplifting: "135", Vandalism: "316", Fraud: "176", Forgery: "22", Arson: "8", }, { Date: "Jul-21", Population: "289548", Felony: "336", Misdemeanor: "1016", DWI: "99", "Traffic Tickets": "1633", "Traffic Warnings": "672", "All Reportable": "619", "Property Damage": "473", Injury: "146", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "19", Robbery: "16", "Aggravated Assault": "85", "Burglary (Residential)": "54", "Burglary (Non-Residential)": "22", "Auto Theft": "65", "All Thefts": "601", "Stolen Bikes": "0", "Theft From Vehicles": "261", Shoplifting: "118", Vandalism: "399", Fraud: "214", Forgery: "14", Arson: "6", }, { Date: "Aug-21", Population: "289548", Felony: "313", Misdemeanor: "1070", DWI: "131", "Traffic Tickets": "1557", "Traffic Warnings": "813", "All Reportable": "673", "Property Damage": "500", Injury: "173", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "18", Robbery: "14", "Aggravated Assault": "72", "Burglary (Residential)": "65", "Burglary (Non-Residential)": "23", "Auto Theft": "45", "All Thefts": "535", "Stolen Bikes": "0", "Theft From Vehicles": "237", Shoplifting: "92", Vandalism: "314", Fraud: "210", Forgery: "11", Arson: "7", }, { Date: "Sep-21", Population: "289548", Felony: "324", Misdemeanor: "1022", DWI: "105", "Traffic Tickets": "1367", "Traffic Warnings": "621", "All Reportable": "703", "Property Damage": "531", Injury: "171", Fatality: "1", Homicide: "1", "Rape and Attempted Rape": "21", Robbery: "9", "Aggravated Assault": "64", "Burglary (Residential)": "59", "Burglary (Non-Residential)": "30", "Auto Theft": "53", "All Thefts": "641", "Stolen Bikes": "0", "Theft From Vehicles": "264", Shoplifting: "131", Vandalism: "395", Fraud: "242", Forgery: "22", Arson: "6", }, { Date: "Oct-21", Population: "289548", Felony: "329", Misdemeanor: "1074", DWI: "108", "Traffic Tickets": "1509", "Traffic Warnings": "759", "All Reportable": "735", "Property Damage": "554", Injury: "177", Fatality: "4", Homicide: "2", "Rape and Attempted Rape": "18", Robbery: "12", "Aggravated Assault": "71", "Burglary (Residential)": "67", "Burglary (Non-Residential)": "25", "Auto Theft": "52", "All Thefts": "698", "Stolen Bikes": "0", "Theft From Vehicles": "368", Shoplifting: "115", Vandalism: "468", Fraud: "220", Forgery: "35", Arson: "8", }, { Date: "Nov-21", Population: "289548", Felony: "291", Misdemeanor: "992", DWI: "104", "Traffic Tickets": "1980", "Traffic Warnings": "650", "All Reportable": "672", "Property Damage": "529", Injury: "143", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "29", Robbery: "9", "Aggravated Assault": "56", "Burglary (Residential)": "59", "Burglary (Non-Residential)": "24", "Auto Theft": "75", "All Thefts": "588", "Stolen Bikes": "0", "Theft From Vehicles": "279", Shoplifting: "111", Vandalism: "362", Fraud: "213", Forgery: "26", Arson: "6", }, { Date: "Dec-21", Population: "289548", Felony: "272", Misdemeanor: "826", DWI: "89", "Traffic Tickets": "1498", "Traffic Warnings": "612", "All Reportable": "574", "Property Damage": "453", Injury: "121", Fatality: "0", Homicide: "0", "Rape and Attempted Rape": "20", Robbery: "8", "Aggravated Assault": "35", "Burglary (Residential)": "54", "Burglary (Non-Residential)": "25", "Auto Theft": "52", "All Thefts": "585", "Stolen Bikes": "0", "Theft From Vehicles": "269", Shoplifting: "100", Vandalism: "384", Fraud: "245", Forgery: "27", Arson: "1", }, ]; const yearData = [ { Date: 1990, Population: 191972, Felony: 1371, Misdemeanor: 19727, DWI: 1994, "Traffic Tickets": 37867, "Traffic Warnings": 58957, "All Reportable": 8376, "Property Damage": 6153, Injury: 2214, Fatality: 9, Homicide: 3, "Rape and Attempted Rape": 105, Robbery: 119, "Aggravated Assault": 724, "Burglary (Residential)": 1460, "Burglary (Non-Residential)": 671, "Auto Theft": 442, "All Thefts": 9940, "Stolen Bikes": 977, "Theft From Vehicles": 0, Shoplifting: 0, Vandalism: 5261, Fraud: 1135, Forgery: 798, Arson: 0, }, { Date: 1991, Population: 195270, Felony: 1105, Misdemeanor: 17494, DWI: 1614, "Traffic Tickets": 31220, "Traffic Warnings": 43911, "All Reportable": 8054, "Property Damage": 5873, Injury: 2174, Fatality: 7, Homicide: 0, "Rape and Attempted Rape": 94, Robbery: 117, "Aggravated Assault": 888, "Burglary (Residential)": 1723, "Burglary (Non-Residential)": 609, "Auto Theft": 429, "All Thefts": 11152, "Stolen Bikes": 1263, "Theft From Vehicles": 0, Shoplifting: 0, Vandalism: 5414, Fraud: 1555, Forgery: 1197, Arson: 0, }, { Date: 1992, Population: 199021, Felony: 1649, Misdemeanor: 20805, DWI: 1289, "Traffic Tickets": 34002, "Traffic Warnings": 44973, "All Reportable": 7539, "Property Damage": 5416, Injury: 2120, Fatality: 3, Homicide: 9, "Rape and Attempted Rape": 114, Robbery: 137, "Aggravated Assault": 982, "Burglary (Residential)": 1652, "Burglary (Non-Residential)": 553, "Auto Theft": 401, "All Thefts": 10993, "Stolen Bikes": 1221, "Theft From Vehicles": 0, Shoplifting: 0, Vandalism: 5779, Fraud: 1500, Forgery: 978, Arson: 0, }, { Date: 1993, Population: 202500, Felony: 1472, Misdemeanor: 18937, DWI: 1098, "Traffic Tickets": 33991, "Traffic Warnings": 53069, "All Reportable": 7940, "Property Damage": 5902, Injury: 2034, Fatality: 4, Homicide: 3, "Rape and Attempted Rape": 82, Robbery: 122, "Aggravated Assault": 892, "Burglary (Residential)": 1472, "Burglary (Non-Residential)": 492, "Auto Theft": 424, "All Thefts": 9933, "Stolen Bikes": 994, "Theft From Vehicles": 0, Shoplifting: 0, Vandalism: 4653, Fraud: 1270, Forgery: 1112, Arson: 0, }, { Date: 1994, Population: 204493, Felony: 1595, Misdemeanor: 20407, DWI: 1234, "Traffic Tickets": 38876, "Traffic Warnings": 44145, "All Reportable": 8161, "Property Damage": 5952, Injury: 2201, Fatality: 8, Homicide: 4, "Rape and Attempted Rape": 110, Robbery: 178, "Aggravated Assault": 963, "Burglary (Residential)": 1482, "Burglary (Non-Residential)": 519, "Auto Theft": 520, "All Thefts": 10258, "Stolen Bikes": 1056, "Theft From Vehicles": 0, Shoplifting: 0, Vandalism: 5557, Fraud: 1258, Forgery: 1317, Arson: 0, }, { Date: 1995, Population: 207154, Felony: 1754, Misdemeanor: 21133, DWI: 977, "Traffic Tickets": 43778, "Traffic Warnings": 36270, "All Reportable": 8373, "Property Damage": 6091, Injury: 2279, Fatality: 3, Homicide: 2, "Rape and Attempted Rape": 88, Robbery: 123, "Aggravated Assault": 1084, "Burglary (Residential)": 1401, "Burglary (Non-Residential)": 456, "Auto Theft": 468, "All Thefts": 10573, "Stolen Bikes": 993, "Theft From Vehicles": 0, Shoplifting: 0, Vandalism: 5600, Fraud: 998, Forgery: 1614, Arson: 0, }, { Date: 1996, Population: 209192, Felony: 1945, Misdemeanor: 21361, DWI: 1124, "Traffic Tickets": 45239, "Traffic Warnings": 38947, "All Reportable": 8766, "Property Damage": 6422, Injury: 2339, Fatality: 5, Homicide: 4, "Rape and Attempted Rape": 90, Robbery: 140, "Aggravated Assault": 964, "Burglary (Residential)": 1370, "Burglary (Non-Residential)": 486, "Auto Theft": 523, "All Thefts": 10557, "Stolen Bikes": 877, "Theft From Vehicles": 0, Shoplifting: 0, Vandalism: 5803, Fraud: 924, Forgery: 1641, Arson: 0, }, { Date: 1997, Population: 211552, Felony: 2088, Misdemeanor: 20516, DWI: 1140, "Traffic Tickets": 42663, "Traffic Warnings": 38603, "All Reportable": 8650, "Property Damage": 6384, Injury: 2257, Fatality: 9, Homicide: 6, "Rape and Attempted Rape": 102, Robbery: 147, "Aggravated Assault": 855, "Burglary (Residential)": 1278, "Burglary (Non-Residential)": 470, "Auto Theft": 542, "All Thefts": 10580, "Stolen Bikes": 830, "Theft From Vehicles": 4181, Shoplifting: 1680, Vandalism: 5435, Fraud: 957, Forgery: 1363, Arson: 0, }, { Date: 1998, Population: 213836, Felony: 2063, Misdemeanor: 21181, DWI: 1425, "Traffic Tickets": 47663, "Traffic Warnings": 40018, "All Reportable": 8860, "Property Damage": 6585, Injury: 2262, Fatality: 13, Homicide: 9, "Rape and Attempted Rape": 103, Robbery: 172, "Aggravated Assault": 871, "Burglary (Residential)": 1499, "Burglary (Non-Residential)": 453, "Auto Theft": 465, "All Thefts": 10349, "Stolen Bikes": 768, "Theft From Vehicles": 4335, Shoplifting: 1587, Vandalism: 5288, Fraud: 922, Forgery: 1525, Arson: 0, }, { Date: 1999, Population: 215928, Felony: 2123, Misdemeanor: 21609, DWI: 1596, "Traffic Tickets": 44824, "Traffic Warnings": 39467, "All Reportable": 8825, "Property Damage": 6593, Injury: 2226, Fatality: 6, Homicide: 8, "Rape and Attempted Rape": 80, Robbery: 161, "Aggravated Assault": 925, "Burglary (Residential)": 1284, "Burglary (Non-Residential)": 551, "Auto Theft": 488, "All Thefts": 9641, "Stolen Bikes": 658, "Theft From Vehicles": 3850, Shoplifting: 1519, Vandalism: 5431, Fraud: 809, Forgery: 1694, Arson: 0, }, { Date: 2000, Population: 225581, Felony: 2100, Misdemeanor: 22871, DWI: 1387, "Traffic Tickets": 43467, "Traffic Warnings": 36913, "All Reportable": 9053, "Property Damage": 6834, Injury: 2209, Fatality: 10, Homicide: 3, "Rape and Attempted Rape": 100, Robbery: 141, "Aggravated Assault": 903, "Burglary (Residential)": 1405, "Burglary (Non-Residential)": 509, "Auto Theft": 483, "All Thefts": 10260, "Stolen Bikes": 680, "Theft From Vehicles": 4114, Shoplifting: 1476, Vandalism: 5774, Fraud: 921, Forgery: 1268, Arson: 0, }, { Date: 2001, Population: 230400, Felony: 2317, Misdemeanor: 23510, DWI: 1497, "Traffic Tickets": 49470, "Traffic Warnings": 44646, "All Reportable": 9253, "Property Damage": 7048, Injury: 2193, Fatality: 12, Homicide: 6, "Rape and Attempted Rape": 86, Robbery: 151, "Aggravated Assault": 1010, "Burglary (Residential)": 1395, "Burglary (Non-Residential)": 510, "Auto Theft": 563, "All Thefts": 11061, "Stolen Bikes": 773, "Theft From Vehicles": 4546, Shoplifting: 1654, Vandalism: 5747, Fraud: 1114, Forgery: 1687, Arson: 0, }, { Date: 2002, Population: 233737, Felony: 2442, Misdemeanor: 23241, DWI: 1518, "Traffic Tickets": 52843, "Traffic Warnings": 41741, "All Reportable": 8957, "Property Damage": 6732, Injury: 2215, Fatality: 10, Homicide: 7, "Rape and Attempted Rape": 97, Robbery: 177, "Aggravated Assault": 947, "Burglary (Residential)": 1380, "Burglary (Non-Residential)": 584, "Auto Theft": 513, "All Thefts": 11005, "Stolen Bikes": 711, "Theft From Vehicles": 4617, Shoplifting: 1574, Vandalism: 5994, Fraud: 1080, Forgery: 2198, Arson: 0, }, { Date: 2003, Population: 237356, Felony: 2189, Misdemeanor: 22054, DWI: 1340, "Traffic Tickets": 48205, "Traffic Warnings": 30340, "All Reportable": 9290, "Property Damage": 7209, Injury: 2061, Fatality: 20, Homicide: 4, "Rape and Attempted Rape": 96, Robbery: 146, "Aggravated Assault": 837, "Burglary (Residential)": 1286, "Burglary (Non-Residential)": 626, "Auto Theft": 469, "All Thefts": 10795, "Stolen Bikes": 539, "Theft From Vehicles": 4412, Shoplifting: 1513, Vandalism: 6229, Fraud: 1092, Forgery: 2569, Arson: 0, }, { Date: 2004, Population: 239417, Felony: 2196, Misdemeanor: 22861, DWI: 1645, "Traffic Tickets": 52458, "Traffic Warnings": 45735, "All Reportable": 8251, "Property Damage": 6181, Injury: 2064, Fatality: 6, Homicide: 7, "Rape and Attempted Rape": 126, Robbery: 191, "Aggravated Assault": 866, "Burglary (Residential)": 1312, "Burglary (Non-Residential)": 538, "Auto Theft": 405, "All Thefts": 10596, "Stolen Bikes": 566, "Theft From Vehicles": 3902, Shoplifting: 1523, Vandalism: 5346, Fraud: 1147, Forgery: 1577, Arson: 0, }, { Date: 2005, Population: 242009, Felony: 2428, Misdemeanor: 24083, DWI: 1600, "Traffic Tickets": 57732, "Traffic Warnings": 55896, "All Reportable": 9585, "Property Damage": 7719, Injury: 1857, Fatality: 9, Homicide: 4, "Rape and Attempted Rape": 110, Robbery: 225, "Aggravated Assault": 989, "Burglary (Residential)": 1272, "Burglary (Non-Residential)": 559, "Auto Theft": 404, "All Thefts": 10108, "Stolen Bikes": 595, "Theft From Vehicles": 3520, Shoplifting: 1491, Vandalism: 5744, Fraud: 1000, Forgery: 1588, Arson: 0, }, { Date: 2006, Population: 244653, Felony: 2535, Misdemeanor: 25988, DWI: 1864, "Traffic Tickets": 54572, "Traffic Warnings": 51071, "All Reportable": 8495, "Property Damage": 6601, Injury: 1886, Fatality: 8, Homicide: 5, "Rape and Attempted Rape": 108, Robbery: 154, "Aggravated Assault": 937, "Burglary (Residential)": 1310, "Burglary (Non-Residential)": 559, "Auto Theft": 404, "All Thefts": 9649, "Stolen Bikes": 642, "Theft From Vehicles": 3064, Shoplifting: 1455, Vandalism: 6181, Fraud: 1082, Forgery: 1691, Arson: 0, }, { Date: 2007, Population: 247789, Felony: 2687, Misdemeanor: 26717, DWI: 1750, "Traffic Tickets": 47997, "Traffic Warnings": 44089, "All Reportable": 9713, "Property Damage": 7805, Injury: 1898, Fatality: 12, Homicide: 6, "Rape and Attempted Rape": 114, Robbery: 167, "Aggravated Assault": 1029, "Burglary (Residential)": 1456, "Burglary (Non-Residential)": 460, "Auto Theft": 410, "All Thefts": 9421, "Stolen Bikes": 598, "Theft From Vehicles": 3187, Shoplifting: 1674, Vandalism: 5241, Fraud: 1199, Forgery: 988, Arson: 0, }, { Date: 2008, Population: 250939, Felony: 2543, Misdemeanor: 28483, DWI: 2253, "Traffic Tickets": 53862, "Traffic Warnings": 47615, "All Reportable": 8918, "Property Damage": 7114, Injury: 1798, Fatality: 6, Homicide: 4, "Rape and Attempted Rape": 111, Robbery: 217, "Aggravated Assault": 946, "Burglary (Residential)": 1218, "Burglary (Non-Residential)": 331, "Auto Theft": 351, "All Thefts": 8203, "Stolen Bikes": 556, "Theft From Vehicles": 2794, Shoplifting: 1635, Vandalism: 4970, Fraud: 1182, Forgery: 719, Arson: 0, }, { Date: 2009, Population: 254001, Felony: 2394, Misdemeanor: 25789, DWI: 2330, "Traffic Tickets": 48290, "Traffic Warnings": 42524, "All Reportable": 8777, "Property Damage": 7031, Injury: 1740, Fatality: 6, Homicide: 6, "Rape and Attempted Rape": 126, Robbery: 190, "Aggravated Assault": 836, "Burglary (Residential)": 1231, "Burglary (Non-Residential)": 355, "Auto Theft": 271, "All Thefts": 7912, "Stolen Bikes": 485, "Theft From Vehicles": 2811, Shoplifting: 1773, Vandalism: 4488, Fraud: 1253, Forgery: 591, Arson: 0, }, { Date: 2010, Population: 258379, Felony: 2363, Misdemeanor: 24609, DWI: 1990, "Traffic Tickets": 48580, "Traffic Warnings": 45945, "All Reportable": 8722, "Property Damage": 6925, Injury: 1790, Fatality: 7, Homicide: 3, "Rape and Attempted Rape": 144, Robbery: 178, "Aggravated Assault": 927, "Burglary (Residential)": 1116, "Burglary (Non-Residential)": 315, "Auto Theft": 340, "All Thefts": 8367, "Stolen Bikes": 535, "Theft From Vehicles": 2937, Shoplifting: 1738, Vandalism: 4369, Fraud: 1973, Forgery: 549, Arson: 0, }, { Date: 2011, Population: 262466, Felony: 2388, Misdemeanor: 23249, DWI: 1906, "Traffic Tickets": 50872, "Traffic Warnings": 50116, "All Reportable": 8597, "Property Damage": 6783, Injury: 1807, Fatality: 7, Homicide: 4, "Rape and Attempted Rape": 170, Robbery: 176, "Aggravated Assault": 603, "Burglary (Residential)": 1069, "Burglary (Non-Residential)": 305, "Auto Theft": 346, "All Thefts": 8365, "Stolen Bikes": 505, "Theft From Vehicles": 2761, Shoplifting: 1994, Vandalism: 4050, Fraud: 1511, Forgery: 369, Arson: 0, }, { Date: 2012, Population: 265663, Felony: 2671, Misdemeanor: 22197, DWI: 1640, "Traffic Tickets": 50059, "Traffic Warnings": 50523, "All Reportable": 8085, "Property Damage": 6277, Injury: 1802, Fatality: 6, Homicide: 4, "Rape and Attempted Rape": 180, Robbery: 198, "Aggravated Assault": 642, "Burglary (Residential)": 1251, "Burglary (Non-Residential)": 342, "Auto Theft": 291, "All Thefts": 8202, "Stolen Bikes": 510, "Theft From Vehicles": 2769, Shoplifting: 1813, Vandalism: 3825, Fraud: 1690, Forgery: 612, Arson: 0, }, { Date: 2013, Population: 268937, Felony: 2977, Misdemeanor: 21058, DWI: 1379, "Traffic Tickets": 49515, "Traffic Warnings": 50197, "All Reportable": 8307, "Property Damage": 6457, Injury: 1845, Fatality: 5, Homicide: 5, "Rape and Attempted Rape": 148, Robbery: 208, "Aggravated Assault": 613, "Burglary (Residential)": 1116, "Burglary (Non-Residential)": 287, "Auto Theft": 288, "All Thefts": 7577, "Stolen Bikes": 447, "Theft From Vehicles": 2403, Shoplifting: 1757, Vandalism: 3386, Fraud: 1783, Forgery: 522, Arson: 70, }, { Date: 2014, Population: 273945, Felony: 3167, Misdemeanor: 20888, DWI: 1369, "Traffic Tickets": 51854, "Traffic Warnings": 47212, "All Reportable": 8297, "Property Damage": 6468, Injury: 1814, Fatality: 15, Homicide: 7, "Rape and Attempted Rape": 152, Robbery: 205, "Aggravated Assault": 557, "Burglary (Residential)": 1037, "Burglary (Non-Residential)": 249, "Auto Theft": 308, "All Thefts": 7424, "Stolen Bikes": 470, "Theft From Vehicles": 2388, Shoplifting: 1783, Vandalism: 3332, Fraud: 1840, Forgery: 400, Arson: 65, }, { Date: 2015, Population: 277178, Felony: 3471, Misdemeanor: 18866, DWI: 1206, "Traffic Tickets": 44064, "Traffic Warnings": 39086, "All Reportable": 8840, "Property Damage": 6958, Injury: 1868, Fatality: 14, Homicide: 1, "Rape and Attempted Rape": 196, Robbery: 213, "Aggravated Assault": 616, "Burglary (Residential)": 1085, "Burglary (Non-Residential)": 235, "Auto Theft": 339, "All Thefts": 7313, "Stolen Bikes": 450, "Theft From Vehicles": 2613, Shoplifting: 1821, Vandalism: 3276, Fraud: 2014, Forgery: 451, Arson: 97, }, { Date: 2016, Population: 281254, Felony: 3721, Misdemeanor: 18318, DWI: 1037, "Traffic Tickets": 42888, "Traffic Warnings": 38619, "All Reportable": 8972, "Property Damage": 7057, Injury: 1909, Fatality: 6, Homicide: 11, "Rape and Attempted Rape": 223, Robbery: 191, "Aggravated Assault": 587, "Burglary (Residential)": 1006, "Burglary (Non-Residential)": 252, "Auto Theft": 330, "All Thefts": 7070, "Stolen Bikes": 413, "Theft From Vehicles": 2438, Shoplifting: 1987, Vandalism: 3023, Fraud: 2030, Forgery: 276, Arson: 75, }, { Date: 2017, Population: 284506, Felony: 3707, Misdemeanor: 18101, DWI: 1003, "Traffic Tickets": 41214, "Traffic Warnings": 41811, "All Reportable": 8997, "Property Damage": 7073, Injury: 1915, Fatality: 7, Homicide: 0, "Rape and Attempted Rape": 260, Robbery: 191, "Aggravated Assault": 617, "Burglary (Residential)": 986, "Burglary (Non-Residential)": 267, "Auto Theft": 357, "All Thefts": 7209, "Stolen Bikes": 506, "Theft From Vehicles": 2382, Shoplifting: 1926, Vandalism: 3007, Fraud: 1920, Forgery: 194, Arson: 56, }, { Date: 2018, Population: 287401, Felony: 3945, Misdemeanor: 17367, DWI: 1078, "Traffic Tickets": 38968, "Traffic Warnings": 44981, "All Reportable": 9212, "Property Damage": 7259, Injury: 1942, Fatality: 8, Homicide: 6, "Rape and Attempted Rape": 284, Robbery: 160, "Aggravated Assault": 590, "Burglary (Residential)": 933, "Burglary (Non-Residential)": 251, "Auto Theft": 408, "All Thefts": 6673, "Stolen Bikes": 464, "Theft From Vehicles": 2044, Shoplifting: 1995, Vandalism: 2646, Fraud: 1958, Forgery: 214, Arson: 47, }, { Date: 2019, Population: 287401, Felony: 3776, Misdemeanor: 15086, DWI: 854, "Traffic Tickets": 34047, "Traffic Warnings": 36595, "All Reportable": 8669, "Property Damage": 6895, Injury: 1757, Fatality: 17, Homicide: 5, "Rape and Attempted Rape": 324, Robbery: 163, "Aggravated Assault": 622, "Burglary (Residential)": 714, "Burglary (Non-Residential)": 287, "Auto Theft": 432, "All Thefts": 6545, "Stolen Bikes": 378, "Theft From Vehicles": 2282, Shoplifting: 1779, Vandalism: 2603, Fraud: 2121, Forgery: 270, Arson: 54, }, { Date: 2020, Population: 289548, Felony: 3609, Misdemeanor: 12189, DWI: 825, "Traffic Tickets": 26000, "Traffic Warnings": 18595, "All Reportable": 7104, "Property Damage": 5660, Injury: 1433, Fatality: 11, Homicide: 5, "Rape and Attempted Rape": 288, Robbery: 165, "Aggravated Assault": 831, "Burglary (Residential)": 725, "Burglary (Non-Residential)": 331, "Auto Theft": 593, "All Thefts": 3899, "Stolen Bikes": 337, "Theft From Vehicles": 3126, Shoplifting: 1512, Vandalism: 2833, Fraud: 2395, Forgery: 283, Arson: 77, }, { Date: 2021, Population: 289548, Felony: 3863, Misdemeanor: 11654, DWI: 1152, "Traffic Tickets": 21048, "Traffic Warnings": 10626, "All Reportable": 7645, "Property Damage": 5889, Injury: 1744, Fatality: 12, Homicide: 8, "Rape and Attempted Rape": 243, Robbery: 132, "Aggravated Assault": 708, "Burglary (Residential)": 663, "Burglary (Non-Residential)": 261, "Auto Theft": 692, "All Thefts": 6532, "Stolen Bikes": 9, "Theft From Vehicles": 2881, Shoplifting: 1311, Vandalism: 3839, Fraud: 2369, Forgery: 330, Arson: 59, }, ];